|
|
@ -27,7 +27,7 @@
|
|
|
|
<el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button-group style="margin-left: 10px;display:flex;">
|
|
|
|
<el-button-group style="margin-left: 10px;display:flex;">
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="onSubmit">查询</el-button>
|
|
|
|
<el-button type="primary" @click.native="handleForm(null, null,'addTop')"
|
|
|
|
<el-button type="primary" @click.native="handleForm(null, null,'addTop')"
|
|
|
|
:disabled="!configParms.basicInv"
|
|
|
|
:disabled="!configParms.basicInv"
|
|
|
|
>添加仓库
|
|
|
|
>添加仓库
|
|
|
@ -56,6 +56,7 @@
|
|
|
|
style="width: 100%;margin-bottom: 20px;"
|
|
|
|
style="width: 100%;margin-bottom: 20px;"
|
|
|
|
row-key="id"
|
|
|
|
row-key="id"
|
|
|
|
border
|
|
|
|
border
|
|
|
|
|
|
|
|
ref="mergeTable"
|
|
|
|
highlight-current-row
|
|
|
|
highlight-current-row
|
|
|
|
@current-change="handInvCurrentChange">
|
|
|
|
@current-change="handInvCurrentChange">
|
|
|
|
<el-table-column label width="45">
|
|
|
|
<el-table-column label width="45">
|
|
|
@ -907,7 +908,12 @@ export default {
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
onSubmit() {
|
|
|
|
onSubmit() {
|
|
|
|
|
|
|
|
this.radioCheck=null;
|
|
|
|
|
|
|
|
this.subRadioCheck=null;
|
|
|
|
|
|
|
|
this.userQuery.page = 1;
|
|
|
|
|
|
|
|
this.busQuery.page = 1;
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
this.$refs.mergeTable.setCurrentRow();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
getList() {
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
this.loading = true;
|
|
|
@ -916,6 +922,9 @@ export default {
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
this.mergeList = response.data.list || [];
|
|
|
|
this.mergeList = response.data.list || [];
|
|
|
|
this.subList = [];
|
|
|
|
this.subList = [];
|
|
|
|
|
|
|
|
this.userData = [];
|
|
|
|
|
|
|
|
this.bussinessTypeData = [];
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|