1.修复系统管理和基础数据的bug

prod
x_z 2 years ago
parent 57ccb59237
commit 471cbc3b50

@ -217,8 +217,7 @@ export default {
orderVisibleType: null,
advanceType: null,
preIn: null,
originAction: null,
comments: null,
originAction: null
},
enableMap: {
true: "是",
@ -405,8 +404,7 @@ export default {
orderVisibleType: null,
advanceType: null,
preIn: null,
originAction: null,
comments: null
originAction: null
}
this.addDialogVisible = true;
},

@ -136,9 +136,9 @@
<el-row type="flex">
<el-col :span="23" type="flex">
<el-form-item prop="comments">
<el-form-item prop="remark">
<label slot="label">&emsp;&emsp;</label>
<el-input v-model="inputQuery.comments" size="small" style="width: 90%" type="textarea"
<el-input v-model="inputQuery.remark" size="small" style="width: 90%" type="textarea"
row="3"></el-input>
</el-form-item>
</el-col>

@ -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();
},
},

@ -151,6 +151,7 @@
<el-form-item label="仓库名称" prop="name" class="query-form-item">
<el-input
v-model="subData.name" style="width: 80%"
placeholder="请输入仓库名称"
auto-complete="off"
></el-input>
</el-form-item>
@ -159,7 +160,7 @@
<el-row class="el-row" type="flex">
<el-col class="el-col">
<el-form-item label="备注" prop="name" class="query-form-item">
<el-form-item label="备注" prop="remark" class="query-form-item">
<el-input
v-model="subData.remark"
type="textarea"
@ -341,6 +342,7 @@ import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import Treeselect from "@riophae/vue-treeselect";
import InvRelBusType from "@/views/system/dept/invRelBusType";
import InvRelUsers from "@/views/system/dept/invRelUsers";
import {isBlank} from "@/utils/strUtil";
export default {
data() {
@ -372,7 +374,7 @@ export default {
{required: true, message: "请选择所属部门", trigger: "blur"}
],
name: [
{required: true, message: "请选择仓库名称", trigger: "blur"}
{required: true, message: "请输入仓库名称", trigger: "blur"}
]
},
subData: {},
@ -662,6 +664,7 @@ export default {
getSubThrsysDetailData() {
if (!isBlank(this.subData.code)) {
let params = {
id: this.subData.code,
};
@ -674,6 +677,7 @@ export default {
this.loading = false;
this.sysSubList = [];
});
}
},

@ -16,12 +16,8 @@
placeholder="请选择角色状态"
clearable
>
<el-option
v-for="dict in dict.type.sys_normal_disable"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
<el-option label="正常" :value="0"/>
<el-option label="禁用" :value="1"/>
</el-select>
</el-form-item>
<el-form-item>
@ -102,8 +98,8 @@
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
:page.sync="queryParams.page"
:limit.sync="queryParams.limit"
@pagination="getList"
/>
@ -279,8 +275,8 @@ export default {
deptOptions: [],
//
queryParams: {
pageNum: 1,
pageSize: 10,
page: 1,
limit: 10,
roleName: undefined,
roleKey: undefined,
status: undefined
@ -423,7 +419,7 @@ export default {
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.queryParams.page = 1;
this.getList();
},
/** 重置按钮操作 */

@ -139,7 +139,7 @@
<el-col :span="11" type="flex">
<el-form-item label="所属部门" prop="depts">
<el-select
v-model="selectDeptList"
v-model="formData.depts"
filterable
remote
clearable="true"
@ -417,9 +417,6 @@ export default {
depts: row.depts,
dept: row.dept,
};
this.selectDeptList = row.depts;
}else {
this.selectDeptList = [];
}
this.formName = "add";
this.formRules = this.addRules;
@ -443,7 +440,6 @@ export default {
this.$message.error("未指定角色!")
return;
}
this.formData.depts = this.selectDeptList;
this.$refs["dataForm"].validate(valid => {
if (valid) {
this.formLoading = true;

Loading…
Cancel
Save