fix 79937

This commit is contained in:
赵霄
2023-12-27 17:07:49 +08:00
parent 0488c24b0d
commit b55bdde9aa
3 changed files with 11 additions and 26 deletions
@@ -306,28 +306,6 @@ export default {
this.paymentDataSource = []
this.meetingDataSource = []
},
// 添加参会记录
handleAddMeeting () {
this.$refs.meetingModal.add()
},
// 删除参会记录
handleDeleteMeeting () {
this.$confirm({
title: this.$t('confirmDeletion'),
content: this.$t('areYouSure'),
onOk: () => {
const data = JSON.parse(JSON.stringify(this.meetingDataSource))
this.meetingSelectedRowKeys.forEach(index => {
data[index] = null
})
this.meetingSelectedRowKeys = []
this.meetingDataSource = data.filter(tt => !!tt)
}
})
},
onMeetingSelectChange (selectedRowKeys) {
this.meetingSelectedRowKeys = selectedRowKeys
},
contactModalOk (data) {
this.contactDataSource = JSON.parse(JSON.stringify(data))
},