Merge remote-tracking branch 'origin/master'

This commit is contained in:
fengachen
2021-09-03 09:20:02 +08:00
2 changed files with 20 additions and 6 deletions
@@ -123,7 +123,7 @@
import { JeroListMixin } from '@/mixins/JeroListMixin'
import JYearDate from '@comp/jero/JYearDate'
import PageHeaderTitle from '@comp/layouts/PageHeaderTitle'
import { getWorkingGroupById } from '@api/incomePaymentsApi'
import { getWorkingGroupById, getChargeNotice } from '@api/incomePaymentsApi'
import StatusSlot from '../../components/tools/StatusSlot'
import ProjectDetailModal from '../../components/ProjectDetailModal'
import WorkingGroupMemberUnitModule from './modules/WorkingGroupMemberUnitModule'
@@ -353,10 +353,21 @@ export default {
this.$message.warn('请先选择成员')
return
}
this.getChargeNoticeList()
this.$refs.setChargeNotic.chargeNoticeList = this.chargeNoticeList
this.$refs.setChargeNotic.selectedRowKeys = this.selectedRowKeys
this.$refs.setChargeNotic.handleOpen()
let param = {
ids: this.selectedRowKeys.join(',')
}
// 判断选中的成员是否存在来款方式非收费通知的
getChargeNotice(param).then(res => {
if (res.success) {
this.getChargeNoticeList()
this.$refs.setChargeNotic.chargeNoticeList = this.chargeNoticeList
this.$refs.setChargeNotic.selectedRowKeys = this.selectedRowKeys
this.$refs.setChargeNotic.handleOpen()
} else {
this.$message.warn(res.message)
}
})
}
}
}