Merge branch 'ww'

prod
wangwei 2 years ago
commit b410bd6970

@ -200,10 +200,11 @@ export default {
// //
onUserReset() { onUserReset() {
this.userQuery = { this.userQuery = {
code: null, code: this.inputQuery.code,
page: 1, page: 1,
limit: 10 limit: 10
}; };
this.loadUserList();
}, },
loadUserList() { // loadUserList() { //
// if (val != null) { // if (val != null) {

@ -135,6 +135,7 @@
:disabled="isShow" :disabled="isShow"
style="width: 80%" style="width: 80%"
placeholder="选择上级仓库"/> placeholder="选择上级仓库"/>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
@ -335,7 +336,12 @@ import {findConfig} from "@/api/thrsys/spsSyncStatus";
import {selectSysParamByKey} from "@/api/system/param/systemParamConfig"; import {selectSysParamByKey} from "@/api/system/param/systemParamConfig";
import invSpaceManage from "@/views/inventory/InvSpaceManage"; import invSpaceManage from "@/views/inventory/InvSpaceManage";
import { import {
addWarehouseUser, deleteWarehouseBussinessType, deleteWarehouseUser, filterList, filterThridSubByInv, addWarehouseUser,
deleteWarehouseBussinessType,
deleteWarehouseUser,
filterInvWarehouse,
filterList,
filterThridSubByInv,
warehouseBussinessTypeList, warehouseBussinessTypeList,
warehouseUserList warehouseUserList
} from "@/api/system/invWarehouse"; } from "@/api/system/invWarehouse";
@ -453,7 +459,7 @@ export default {
this.getSubThrsysDetailData(); this.getSubThrsysDetailData();
filterSubAll(this.query) filterSubAll(this.query)
.then((response) => { .then((response) => {
let invList = response.data.list || []; let invList = response.data || [];
this.invOptions = this.handleTree(invList, "code", "parentCode"); this.invOptions = this.handleTree(invList, "code", "parentCode");
}) })
.catch(() => { .catch(() => {
@ -508,6 +514,7 @@ export default {
this.loading = false; this.loading = false;
this.fromDeptOptions = []; this.fromDeptOptions = [];
}); });
}, },
normalizer(node) { normalizer(node) {
if (node.children && !node.children.length) { if (node.children && !node.children.length) {
@ -745,6 +752,7 @@ export default {
this.getList(); this.getList();
this.getSyncConfig(); this.getSyncConfig();
this.findDeptMethod(); this.findDeptMethod();
} }
}; };
</script> </script>

Loading…
Cancel
Save