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