|
|
@ -43,7 +43,8 @@
|
|
|
|
<!--<el-table-column label="所属仓库" prop="warehouseName"></el-table-column>-->
|
|
|
|
<!--<el-table-column label="所属仓库" prop="warehouseName"></el-table-column>-->
|
|
|
|
<el-table-column label="状态">
|
|
|
|
<el-table-column label="状态">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag :type="scope.row.userFlag | statusFilterType">{{
|
|
|
|
<el-tag :type="scope.row.userFlag | statusFilterType">
|
|
|
|
|
|
|
|
{{
|
|
|
|
scope.row.userFlag | statusFilterName
|
|
|
|
scope.row.userFlag | statusFilterName
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
</el-tag>
|
|
|
|
</el-tag>
|
|
|
@ -66,7 +67,7 @@
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
type="text"
|
|
|
|
type="text"
|
|
|
|
@click.native="handleForm(scope.$index, scope.row)"
|
|
|
|
@click.native="handleForm(scope.$index, scope.row)"
|
|
|
|
|
|
|
|
|
|
|
|
>编辑
|
|
|
|
>编辑
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
@ -170,7 +171,7 @@
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
<el-form-item label="状态" prop="userFlag">
|
|
|
|
<el-form-item label="状态" prop="userFlag">
|
|
|
|
<el-radio-group v-model="formData.userFlag"
|
|
|
|
<el-radio-group v-model="formData.userFlag"
|
|
|
|
:disabled="formData.userName === 'admin'? true : false">
|
|
|
|
:disabled="formData.userName === 'admin'? true : false">
|
|
|
|
<el-radio :label="1">正常</el-radio>
|
|
|
|
<el-radio :label="1">正常</el-radio>
|
|
|
|
<el-radio :label="0">禁用</el-radio>
|
|
|
|
<el-radio :label="0">禁用</el-radio>
|
|
|
@ -210,7 +211,7 @@
|
|
|
|
<el-row :gutter="20" type="flex">
|
|
|
|
<el-row :gutter="20" type="flex">
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
<el-form-item label="角色">
|
|
|
|
<el-form-item label="角色">
|
|
|
|
<el-checkbox-group v-model="formData.roles"
|
|
|
|
<el-checkbox-group v-model="formData.roles"
|
|
|
|
:disabled="formData.userName === 'admin'? true : false" >
|
|
|
|
:disabled="formData.userName === 'admin'? true : false" >
|
|
|
|
<el-checkbox
|
|
|
|
<el-checkbox
|
|
|
|
v-for="item in roles"
|
|
|
|
v-for="item in roles"
|
|
|
@ -388,7 +389,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
findInv(val) {
|
|
|
|
findInv(val) {
|
|
|
|
// 获取仓库列表
|
|
|
|
// 获取仓库列表
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
this.query.page = val;
|
|
|
|
this.query.page = val;
|
|
|
@ -613,7 +614,7 @@ export default {
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
// 加载角色列表
|
|
|
|
// 加载角色列表
|
|
|
|
this.getRoleList();
|
|
|
|
this.getRoleList();
|
|
|
|
|
|
|
|
|
|
|
|
this.findDeptMethod();
|
|
|
|
this.findDeptMethod();
|
|
|
|
|
|
|
|
|
|
|
|
//查询是否启用多级仓库,判断是否启用部门
|
|
|
|
//查询是否启用多级仓库,判断是否启用部门
|
|
|
|