|
|
|
@ -129,9 +129,9 @@ export default { |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '班组ID', |
|
|
|
|
title: '部门名称', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'groupxId' |
|
|
|
|
dataIndex: 'departName' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '班组名称', |
|
|
|
@ -139,7 +139,7 @@ export default { |
|
|
|
|
dataIndex: 'groupName' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '成员ID', |
|
|
|
|
title: '成员名称', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'userId' |
|
|
|
|
}, |
|
|
|
@ -166,6 +166,7 @@ export default { |
|
|
|
|
loadRouteType: false, |
|
|
|
|
groupxId: "", |
|
|
|
|
groupName: "", |
|
|
|
|
departName: "", |
|
|
|
|
dictOptions: {}, |
|
|
|
|
// superFieldList: [], |
|
|
|
|
} |
|
|
|
@ -192,8 +193,9 @@ export default { |
|
|
|
|
if (this.loadRouteType === false) { |
|
|
|
|
this.groupxId = this.$route.query.groupxId; |
|
|
|
|
this.groupName = this.$route.query.groupName; |
|
|
|
|
this.departName = this.$route.query.departName; |
|
|
|
|
// this.biaoTi = this.$route.query.styleNames+"款式面料管理"; |
|
|
|
|
// console.log("*******传递的groupxId:" + this.groupxId) |
|
|
|
|
console.log("*******departName:" + this.departName) |
|
|
|
|
this.loadRouteType = true; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
@ -224,6 +226,7 @@ export default { |
|
|
|
|
}).finally(() => { |
|
|
|
|
this.dataSource.forEach(item => { |
|
|
|
|
item['groupName'] = this.groupName; |
|
|
|
|
item['departName'] = this.departName; |
|
|
|
|
}) |
|
|
|
|
this.loading = false |
|
|
|
|
}) |
|
|
|
|