-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ item.label }}
-
-
-
-
-
-
-
-
- 显示/隐藏搜索栏
- 重置
- 查询
- 选入工位
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
+
+
+ 显示/隐藏搜索栏
+ 重置
+ 查询
+ 选入工位
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ workplaceStatusMap[scope.row.workplaceStatus] }}
-
-
-
-
- {{ workplaceTypes[scope.row.workplaceType] }}
-
-
-
-
- {{ scope.row.categoryName }}
-
-
-
-
-
-
-
-
-
-
- 详情
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ workplaceStatusMap[scope.row.workplaceStatus] }}
+
+
+
+
+
+
+
+
+
+ {{ scope.row.categoryName }}
+
+
+
+
+
+
+
+
+
+
+ 详情
+
+
+
+
+
-
-
+
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -204,16 +174,6 @@
>
-
-
-
-
-
-
-->
-
-
-
+
+
{
})
},
+ getDeptList() {
+ this.deptList = []
+ let data =
+ {
+ enable: true
+ }
+ filterList(data).then(res => {
+ if (res.code == 20000) {
+ this.deptList = res.data.list || []
+ }
+ })
+ },
handleInvChange(invCode) {
this.invQuery.code = invCode
getUsers(this.invQuery).then(res => {
@@ -542,14 +514,14 @@ export default {
this.loading = false
})
},
- getLstTree(){
+ getLstTree() {
getTree(this.query)
.then((response) => {
- var invlist = response.data || [];
- this.treeList = this.handleTree(invlist, "code", "parentCode");
+ var invlist = response.data || []
+ this.treeList = this.handleTree(invlist, 'code', 'parentCode')
})
.catch(() => {
- });
+ })
},
getBusType() {
let query = {
@@ -575,38 +547,38 @@ export default {
.catch(() => {
})
},
- handCurrentChange(row){
+ handCurrentChange(row) {
this.rowList = row
// this.workQuery.workplaceId = row
// this.rowData = row
},
- handleNodeClick(row){
+ handleNodeClick(row) {
this.query.code = row.code
this.getList()
},
//选入工位
- addWork(){
+ addWork() {
let selectList = this.$refs.table.selection
let list = selectList.map(item => item.workplaceId)
this.workQuery.userId = this.userId
this.workQuery.workplaceId = list
- if (list.length == 0){
- // return this.closeDialog()
- return this.$message.error("未选择工位或该用户已没有可增加工位")
+ if (list.length == 0) {
+ // return this.closeDialog()
+ return this.$message.error('未选择工位或该用户已没有可增加工位')
}
userBindWork(this.workQuery).then(res => {
- if (res.code == 20000){
+ if (res.code == 20000) {
this.closeDialog()
- this.$message.success("成功!!")
- }else {
+ this.$message.success('成功!!')
+ } else {
this.$message.error(res.message)
}
}).catch(() => {
})
},
- checkDetail(row){
+ checkDetail(row) {
this.formData = row
this.WorkplaceDialogVisible = true
},
@@ -625,6 +597,7 @@ export default {
created() {
this.getList()
this.getInvList()
+ this.getDeptList()
// this.getBusType()
this.getTree()
this.getLstTree()
diff --git a/src/views/basic/collectPoint/userWorkplace.vue b/src/views/basic/collectPoint/userWorkplace.vue
index ac7ef30c..902ae569 100644
--- a/src/views/basic/collectPoint/userWorkplace.vue
+++ b/src/views/basic/collectPoint/userWorkplace.vue
@@ -12,13 +12,15 @@
-
+
-
-
-
+
+
+
@@ -45,7 +47,8 @@