修改相关人员名单

This commit is contained in:
qq787203167
2022-04-22 09:30:32 +08:00
parent af6d365b95
commit 9e9759bc6d
@@ -321,7 +321,7 @@
this.loading = true
postAction(this.url.page, query).then((res) => {
if (res.success) {
this.dataSource = res.result.records || []
this.dataSource = res.result || []
// this.total = res.result.total
this.loading = false
} else {
@@ -333,7 +333,7 @@
let selectedRowKeys = JSON.parse(JSON.stringify(this.selectedRowKeys))
let query = {
id: selectedRowKeys.join(','),
// projectId: this.$route.query.id
projectId: this.$route.query.id
}
downloadFile(this.url.exportData, this.$t('ListOfRelevantPersonnel') + '.xls', query, this.Deselect)
},