功能修改

This commit is contained in:
hayu 2025-08-01 10:31:59 +08:00
parent 2749a7df70
commit 72cf172b19
1 changed files with 4 additions and 4 deletions

View File

@ -734,7 +734,7 @@ export default {
this.isBatchMode = false this.isBatchMode = false
this.dialogTitle = '新增授权' this.dialogTitle = '新增授权'
this.resetAuthForm() this.resetAuthForm()
this.getTeamList() this.getTeamList(row.externalId)
// //
this.materialReceivers = [ this.materialReceivers = [
@ -819,9 +819,9 @@ export default {
} }
}, },
// //
getTeamList() { getTeamList(externalId) {
const params = { const params = {
externalId: null externalId: externalId
} }
getTeamList(params).then(response => { getTeamList(params).then(response => {
this.teamList = response.data this.teamList = response.data
@ -1007,7 +1007,7 @@ export default {
this.isEditMode = true this.isEditMode = true
this.isBatchMode = false this.isBatchMode = false
this.dialogTitle = '编辑授权' this.dialogTitle = '编辑授权'
this.getTeamList() this.getTeamList(row.externalId)
// //
this.resetAuthForm() this.resetAuthForm()