功能修改
This commit is contained in:
parent
2749a7df70
commit
72cf172b19
|
|
@ -734,7 +734,7 @@ export default {
|
|||
this.isBatchMode = false
|
||||
this.dialogTitle = '新增授权'
|
||||
this.resetAuthForm()
|
||||
this.getTeamList()
|
||||
this.getTeamList(row.externalId)
|
||||
|
||||
// 初始化领料人数据
|
||||
this.materialReceivers = [
|
||||
|
|
@ -819,9 +819,9 @@ export default {
|
|||
}
|
||||
},
|
||||
// 获取班组列表
|
||||
getTeamList() {
|
||||
getTeamList(externalId) {
|
||||
const params = {
|
||||
externalId: null
|
||||
externalId: externalId
|
||||
}
|
||||
getTeamList(params).then(response => {
|
||||
this.teamList = response.data
|
||||
|
|
@ -1007,7 +1007,7 @@ export default {
|
|||
this.isEditMode = true
|
||||
this.isBatchMode = false
|
||||
this.dialogTitle = '编辑授权'
|
||||
this.getTeamList()
|
||||
this.getTeamList(row.externalId)
|
||||
|
||||
// 重置表单状态
|
||||
this.resetAuthForm()
|
||||
|
|
|
|||
Loading…
Reference in New Issue