|
|
|
@ -121,7 +121,11 @@
|
|
|
|
|
:command="item.value"
|
|
|
|
|
v-for="(item, index) in channelOption"
|
|
|
|
|
:key="index"
|
|
|
|
|
>{{ item.label }}</el-dropdown-item
|
|
|
|
|
>{{
|
|
|
|
|
item.alias !== null && item.alias !== ""
|
|
|
|
|
? item.alias
|
|
|
|
|
: item.label
|
|
|
|
|
}}</el-dropdown-item
|
|
|
|
|
>
|
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
</el-dropdown>
|
|
|
|
@ -138,7 +142,11 @@
|
|
|
|
|
:command="item.value"
|
|
|
|
|
v-for="(item, index) in channelOption"
|
|
|
|
|
:key="index"
|
|
|
|
|
>{{ item.label }}</el-dropdown-item
|
|
|
|
|
>{{
|
|
|
|
|
item.alias !== null && item.alias !== ""
|
|
|
|
|
? item.alias
|
|
|
|
|
: item.label
|
|
|
|
|
}}</el-dropdown-item
|
|
|
|
|
>
|
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
</el-dropdown>
|
|
|
|
@ -392,6 +400,7 @@ export default {
|
|
|
|
|
label: item.channelname,
|
|
|
|
|
value: item.channelid,
|
|
|
|
|
termid: item.termId,
|
|
|
|
|
alias: item.alias,
|
|
|
|
|
});
|
|
|
|
|
this.channelValue.push(item.channelid); //默认选中所有通道
|
|
|
|
|
}); // 选择通道一通道二select框
|
|
|
|
|