fix 79937
This commit is contained in:
-22
@@ -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))
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user