修改设备下拉框
This commit is contained in:
parent
a03f1a8c97
commit
fed966910a
@ -79,6 +79,11 @@ export default {
|
||||
},
|
||||
created() {
|
||||
getEquipCascader().then(res=>{
|
||||
res.forEach(item=>{
|
||||
if (item.children == null){
|
||||
item.disabled = true;
|
||||
}
|
||||
})
|
||||
this.equipCascader = res;
|
||||
})
|
||||
},
|
||||
|
@ -127,6 +127,11 @@ export default {
|
||||
created() {
|
||||
this.getList();
|
||||
getEquipCascader().then(res=>{
|
||||
res.forEach(item=>{
|
||||
if (item.children == null){
|
||||
item.disabled = true;
|
||||
}
|
||||
})
|
||||
this.equipCascader = res;
|
||||
})
|
||||
},
|
||||
|
@ -93,6 +93,11 @@ export default {
|
||||
},
|
||||
created() {
|
||||
getEquipCascader().then(res=>{
|
||||
res.forEach(item=>{
|
||||
if (item.children == null){
|
||||
item.disabled = true;
|
||||
}
|
||||
})
|
||||
this.equipCascader = res;
|
||||
})
|
||||
},
|
||||
|
@ -131,6 +131,11 @@ export default {
|
||||
created() {
|
||||
this.getList();
|
||||
getEquipCascader().then(res=>{
|
||||
res.forEach(item=>{
|
||||
if (item.children == null){
|
||||
item.disabled = true;
|
||||
}
|
||||
})
|
||||
this.equipCascader = res;
|
||||
})
|
||||
},
|
||||
|
@ -153,6 +153,11 @@ export default {
|
||||
},
|
||||
initSelection(){
|
||||
getEquipCascader().then(res=>{
|
||||
res.forEach(item=>{
|
||||
if (item.children == null){
|
||||
item.disabled = true;
|
||||
}
|
||||
})
|
||||
this.equipCascader = res;
|
||||
});
|
||||
getComponentSelection().then(res=>{
|
||||
|
@ -8,7 +8,7 @@
|
||||
<el-cascader
|
||||
v-model="cascaderValue"
|
||||
:options="equipCascader"
|
||||
:props="{ value: 'id',label: 'name',children: 'children'}"
|
||||
:props="{ value: 'id',label: 'name',children: 'children',emitPath:false}"
|
||||
clearable
|
||||
@change="cascaderChange"></el-cascader>
|
||||
</el-form-item>
|
||||
@ -174,6 +174,11 @@ export default {
|
||||
},
|
||||
initSelection(){
|
||||
getEquipCascader().then(res=>{
|
||||
res.forEach(item=>{
|
||||
if (item.children == null){
|
||||
item.disabled = true;
|
||||
}
|
||||
})
|
||||
this.equipCascader = res;
|
||||
});
|
||||
getComponentSelection().then(res=>{
|
||||
|
@ -253,6 +253,11 @@ export default {
|
||||
},
|
||||
initSelection(){
|
||||
getEquipCascader().then(res=>{
|
||||
res.forEach(item=>{
|
||||
if (item.children == null){
|
||||
item.disabled = true;
|
||||
}
|
||||
})
|
||||
this.equipCascader = res;
|
||||
});
|
||||
getComponentSelection().then(res=>{
|
||||
|
@ -202,6 +202,11 @@ export default {
|
||||
},
|
||||
initSelection(){
|
||||
getEquipCascader().then(res=>{
|
||||
res.forEach(item=>{
|
||||
if (item.children == null){
|
||||
item.disabled = true;
|
||||
}
|
||||
})
|
||||
this.equipCascader = res;
|
||||
});
|
||||
getComponentSelection().then(res=>{
|
||||
|
@ -289,6 +289,11 @@ export default {
|
||||
},
|
||||
initSelection() {
|
||||
getEquipCascader().then(res => {
|
||||
res.forEach(item=>{
|
||||
if (item.children == null){
|
||||
item.disabled = true;
|
||||
}
|
||||
})
|
||||
this.equipCascader = res;
|
||||
});
|
||||
getComponentSelection().then(res => {
|
||||
|
Loading…
Reference in New Issue
Block a user