|
@@ -10,7 +10,8 @@
|
|
|
v-model="model.interlockConditionData"
|
|
|
:options="tagDataOptions"
|
|
|
:fieldNames="customFieldNames"
|
|
|
- :show-search="{ filter }"
|
|
|
+ :show-search="true"
|
|
|
+ :filter-option="filter"
|
|
|
expand-trigger="hover"
|
|
|
placeholder="请选择点位"
|
|
|
@change="changeCascaderCondition"
|
|
@@ -52,7 +53,8 @@
|
|
|
v-model="model.inputStatusData"
|
|
|
:options="tagDataOptions"
|
|
|
:fieldNames="customFieldNames"
|
|
|
- :show-search="{ filter }"
|
|
|
+ :show-search="true"
|
|
|
+ :filter-option="filter"
|
|
|
expand-trigger="hover"
|
|
|
placeholder="请选择输入卡件状态"
|
|
|
@change="changeCascaderInput"
|
|
@@ -74,7 +76,8 @@
|
|
|
v-model="model.outputStatusData"
|
|
|
:options="tagDataOptions"
|
|
|
:fieldNames="customFieldNames"
|
|
|
- :show-search="{ filter }"
|
|
|
+ :show-search="true"
|
|
|
+ :filter-option="filter"
|
|
|
expand-trigger="hover"
|
|
|
placeholder="请选择输出卡件状态"
|
|
|
@change="changeCascaderOutput"
|
|
@@ -96,7 +99,8 @@
|
|
|
v-model="model.mpStatusData"
|
|
|
:options="tagDataOptions"
|
|
|
:fieldNames="customFieldNames"
|
|
|
- :show-search="{ filter }"
|
|
|
+ :show-search="true"
|
|
|
+ :filter-option="filter"
|
|
|
expand-trigger="hover"
|
|
|
placeholder="请选择MP状态"
|
|
|
@change="changeCascaderMp"
|
|
@@ -130,7 +134,8 @@
|
|
|
v-model="model.instrumentStatusData"
|
|
|
:options="tagDataOptions"
|
|
|
:fieldNames="customFieldNames"
|
|
|
- :show-search="{ filter }"
|
|
|
+ :show-search="true"
|
|
|
+ :filter-option="filter"
|
|
|
expand-trigger="hover"
|
|
|
placeholder="请选择仪表位号"
|
|
|
@change="changeCascaderInstrument"
|
|
@@ -145,7 +150,8 @@
|
|
|
v-model="model.ysmnlData"
|
|
|
:options="tagDataOptions"
|
|
|
:fieldNames="customFieldNames"
|
|
|
- :show-search="{ filter }"
|
|
|
+ :show-search="true"
|
|
|
+ :filter-option="filter"
|
|
|
expand-trigger="hover"
|
|
|
placeholder="请选择原始模拟量"
|
|
|
@change="changeCascaderYsmnl"
|
|
@@ -172,7 +178,8 @@
|
|
|
v-model="model.ysmnlData"
|
|
|
:options="tagDataOptions"
|
|
|
:fieldNames="customFieldNames"
|
|
|
- :show-search="{ filter }"
|
|
|
+ :show-search="true"
|
|
|
+ :filter-option="filter"
|
|
|
expand-trigger="hover"
|
|
|
placeholder="请选择原始模拟量"
|
|
|
@change="changeCascaderYsmnl"
|
|
@@ -237,7 +244,8 @@
|
|
|
v-model="model.bypassData"
|
|
|
:options="tagDataOptions"
|
|
|
:fieldNames="customFieldNames"
|
|
|
- :show-search="{ filter }"
|
|
|
+ :show-search="true"
|
|
|
+ :filter-option="filter"
|
|
|
expand-trigger="hover"
|
|
|
placeholder="请选择旁路"
|
|
|
@change="changeCascaderBypass"
|
|
@@ -492,7 +500,7 @@
|
|
|
},
|
|
|
// 级联选择过滤搜索
|
|
|
filter(inputValue, path) {
|
|
|
- return path.some(option => option.label.toLowerCase().indexOf(inputValue.toLowerCase()) > -1);
|
|
|
+ return path.some(option => (option.label).toLowerCase().indexOf(inputValue.toLowerCase()) > -1);
|
|
|
},
|
|
|
statusRadioChange(e){
|
|
|
// console.log(e)
|