|
|
|
@ -164,13 +164,6 @@
|
|
|
|
|
<el-button @click.native="cancelDialog" size="small">取消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-tabs type="border-card" style="margin: 15px">
|
|
|
|
|
|
|
|
|
@ -195,12 +188,13 @@
|
|
|
|
|
@click="onUserReset"
|
|
|
|
|
>重置
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" @click="onUserReset"
|
|
|
|
|
<el-button type="primary" @click="onUserSubmit"
|
|
|
|
|
icon="el-icon-search"
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-tooltip content="请移步至权限管理-用户管理-编辑界面选择所属部门信息" placement="top" style="margin-left: 20px">
|
|
|
|
|
<el-tooltip content="请移步至权限管理-用户管理-编辑界面选择所属部门信息" placement="top"
|
|
|
|
|
style="margin-left: 20px">
|
|
|
|
|
<i class="el-icon-question">帮助</i>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
</el-button-group>
|
|
|
|
@ -219,7 +213,7 @@
|
|
|
|
|
label="用户账号"
|
|
|
|
|
prop="userName"
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remark">
|
|
|
|
|
<el-table-column label="备注" prop="comments">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -249,7 +243,7 @@
|
|
|
|
|
<el-form :inline="true" :model="invQuery" class="query-form" size="mini">
|
|
|
|
|
<el-form-item class="query-form-item" label="仓库名称/编码:">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="userQuery.key"
|
|
|
|
|
v-model="invQuery.key"
|
|
|
|
|
placeholder="请输入仓库名称或仓库编码"
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
@ -260,7 +254,7 @@
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
|
@click="onUserReset"
|
|
|
|
|
@click="onInvReset"
|
|
|
|
|
>重置
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" @click="onInvSubmit"
|
|
|
|
@ -268,7 +262,8 @@
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-tooltip content="请移步至系统管理-组织管理-仓库信息管理界面绑定仓库信息" placement="top" style="margin-left: 20px">
|
|
|
|
|
<el-tooltip content="请移步至系统管理-组织管理-仓库信息管理界面绑定仓库信息" placement="top"
|
|
|
|
|
style="margin-left: 20px">
|
|
|
|
|
<i class="el-icon-question">帮助</i>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
</el-button-group>
|
|
|
|
@ -332,13 +327,10 @@ export default {
|
|
|
|
|
status: 1,
|
|
|
|
|
companyName: "",
|
|
|
|
|
checkType: "",
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
|
|
|
|
total: 0,
|
|
|
|
|
loading: false,
|
|
|
|
|
formVisible: false,
|
|
|
|
|
isExpandAll: true,
|
|
|
|
|
isExpandAll: false,
|
|
|
|
|
refreshTable: true,
|
|
|
|
|
userflag: {
|
|
|
|
|
0: "禁用",
|
|
|
|
@ -375,6 +367,7 @@ export default {
|
|
|
|
|
//部门用户
|
|
|
|
|
userQuery: {
|
|
|
|
|
key: null,
|
|
|
|
|
deptId: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
|
|
|
@ -426,9 +419,7 @@ export default {
|
|
|
|
|
path: "",
|
|
|
|
|
});
|
|
|
|
|
this.filterQuery = {
|
|
|
|
|
name: "",
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
name: ""
|
|
|
|
|
};
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
@ -488,6 +479,7 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
addDeptDialog() {
|
|
|
|
|
this.resetForm();
|
|
|
|
|
this.formName = "add";
|
|
|
|
|
this.formVisible = true;
|
|
|
|
|
this.formData = {
|
|
|
|
@ -513,7 +505,17 @@ export default {
|
|
|
|
|
this.deptOptions = this.handleTree(depList, "code", "pcode");
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 刷新表单
|
|
|
|
|
resetForm() {
|
|
|
|
|
if (this.$refs["dataForm"]) {
|
|
|
|
|
// 清空验证信息表单
|
|
|
|
|
this.$refs["dataForm"].clearValidate();
|
|
|
|
|
// 刷新表单
|
|
|
|
|
this.$refs["dataForm"].resetFields();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
updateDeptDialog(row) {
|
|
|
|
|
this.resetForm();
|
|
|
|
|
this.formName = "edit";
|
|
|
|
|
this.formVisible = true;
|
|
|
|
|
this.formData = row;
|
|
|
|
@ -530,25 +532,15 @@ export default {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
let depList = response.data.list || [];
|
|
|
|
|
this.list = this.handleTree(depList, "code", "pcode");
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
cancelDialog() {
|
|
|
|
|
this.formVisible = false;
|
|
|
|
|
},
|
|
|
|
|
handleSizeChange(val) {
|
|
|
|
|
this.filterQuery.limit = val;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
|
this.filterQuery.page = val;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
deleteDialog(row) {
|
|
|
|
|
this.$confirm("是否删除该部门?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
@ -635,19 +627,18 @@ export default {
|
|
|
|
|
onUserReset() {
|
|
|
|
|
this.userQuery = {
|
|
|
|
|
key: null,
|
|
|
|
|
deptId: this.currentRow.id,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
};
|
|
|
|
|
this.getUerList();
|
|
|
|
|
},
|
|
|
|
|
onUserSubmit() {
|
|
|
|
|
this.userQuery.deptId = this.currentRow.id;
|
|
|
|
|
this.getUerList();
|
|
|
|
|
},
|
|
|
|
|
getUerList() {
|
|
|
|
|
let query = {
|
|
|
|
|
deptId: this.currentRow.id,
|
|
|
|
|
};
|
|
|
|
|
listDeptUser(query)
|
|
|
|
|
listDeptUser(this.userQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.userlist = response.data.list || [];
|
|
|
|
@ -659,6 +650,15 @@ export default {
|
|
|
|
|
this.userTotal = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
onInvReset() {
|
|
|
|
|
this.invQuery = {
|
|
|
|
|
key: "",
|
|
|
|
|
parentId: this.currentRow.code,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20
|
|
|
|
|
};
|
|
|
|
|
this.onInvSubmit();
|
|
|
|
|
},
|
|
|
|
|
removeUserDialog(row) {
|
|
|
|
|
this.$confirm("是否确定移除该用户?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
@ -685,10 +685,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
//仓库相关
|
|
|
|
|
getInvList() {
|
|
|
|
|
let query = {
|
|
|
|
|
parentId: this.currentRow.code,
|
|
|
|
|
};
|
|
|
|
|
filterSubAll(query)
|
|
|
|
|
filterSubAll(this.invQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.invlist = response.data.list || [];
|
|
|
|
@ -700,6 +697,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
onInvSubmit() {
|
|
|
|
|
this.invQuery.parentId = this.currentRow.code;
|
|
|
|
|
this.getInvList();
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|