修改bug

prod
wangwei 2 years ago
parent 4d9adf0c6e
commit d5d1960427

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

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

Loading…
Cancel
Save