修改bug

prod
wangwei 2 years ago
parent 4d9adf0c6e
commit d5d1960427

@ -33,7 +33,7 @@
:default-expand-all="isExpandAll"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="序号" type="index" ref="dataForm"></el-table-column>
<el-table-column
prop="name"
label="仓库名称"
@ -131,7 +131,7 @@
<el-col :span="12" class="el-col">
<el-form-item label="上级仓库" prop="parentCode">
<treeselect v-model="subData.parentCode" :options="invOptions" :normalizer="normalizer"
<treeselect v-model="subData.parentInvName" :options="invOptions" :normalizer="normalizer"
:disabled="isShow"
style="width: 80%"
placeholder="选择上级仓库"/>
@ -458,13 +458,25 @@ export default {
})
.catch(() => {
});
this.sysSubList=null;
},
hideForm() { // ---
this.formVisible = false;
this.subFormVisible = false;
this.resetForm();
return true;
},
//
resetForm() {
if (this.$refs["dataForm"]) {
//
this.$refs["dataForm"].clearValidate();
//
this.$refs["dataForm"].resetFields();
this.getList();
}
},
forInvSubmit() { // ---
this.$refs["dataForm"].validate(valid => {
if (valid) {
@ -567,6 +579,8 @@ export default {
hideThrWarehouseTable() {
this.thrWareHouseVisible = false;
this.thrSubWareHouseVisible = false;
//
this.thirdSubQuery.name="";
},
//
bindSubThrWarehouse() {

@ -605,7 +605,8 @@ export default {
})
.catch(() => {
this.formLoading = false;
this.$refs["dataForm"].resetFields();
//
this.resetForm();
});
}
});

Loading…
Cancel
Save