[update] 标准统计联调
This commit is contained in:
@@ -336,6 +336,7 @@ export default {
|
||||
setGuestsUploadFileFlag(record) {
|
||||
// 参会人员不是嘉宾,直接返回
|
||||
if(record.identity !== 1 || record.registerCheckResult === 0) return
|
||||
this.meetingId = record.meetingId
|
||||
this.$refs.setGuessUploadFlagModal.show(record)
|
||||
},
|
||||
// 批量设置嘉宾是否可上传文件,只有参会方式是嘉宾的可以设置
|
||||
@@ -352,6 +353,7 @@ export default {
|
||||
this.$message.warn('只有身份为嘉宾且报名信息审核通过的数据才可设置资料状态')
|
||||
return
|
||||
}
|
||||
this.meetingId = ''
|
||||
this.$refs.setGuessUploadFlagModal.showBatch(this.selectedRowKeys)
|
||||
},
|
||||
/*
|
||||
|
||||
@@ -12,10 +12,6 @@
|
||||
:dataSource="dataSource"
|
||||
:pagination="ipagination"
|
||||
:loading="loading"
|
||||
:rowSelection="{
|
||||
selectedRowKeys: selectedRowKeys,
|
||||
onChange: onSelectChange,
|
||||
}"
|
||||
class="j-table-force-nowrap"
|
||||
@change="handleTableChange"
|
||||
>
|
||||
@@ -51,6 +47,16 @@ export default {
|
||||
return {
|
||||
IconImg,
|
||||
columns: [
|
||||
{
|
||||
title: '序号',
|
||||
dataIndex: '',
|
||||
key: 'rowIndex',
|
||||
width: 60,
|
||||
align: 'center',
|
||||
customRender: function (t, r, index) {
|
||||
return parseInt(index) + 1
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '会议名称',
|
||||
align: 'center',
|
||||
|
||||
@@ -335,7 +335,7 @@ export default {
|
||||
validateTrigger: 'blur'
|
||||
},
|
||||
contractNum: {
|
||||
rules: [{ required: true, message: '请选择合同号' }],
|
||||
rules: [{ required: false, message: '请选择合同号' }],
|
||||
validateTrigger: 'change'
|
||||
},
|
||||
liaisonManId: {
|
||||
@@ -367,7 +367,7 @@ export default {
|
||||
validateTrigger: 'change',initialValue:'0.06'
|
||||
},
|
||||
chargeNoticeNo: {
|
||||
rules: [{ required: true, message: '请输入收费通知号' }],
|
||||
rules: [{ required: false, message: '请输入收费通知号' }],
|
||||
validateTrigger: 'blur'
|
||||
},
|
||||
invoiceRequirements: {
|
||||
|
||||
@@ -121,7 +121,7 @@ export default {
|
||||
title: '会员单位',
|
||||
align: 'center',
|
||||
dataIndex: 'companyName',
|
||||
scopedSlots: { customRender: 'detail' },
|
||||
scopedSlots: { customRender: 'text' },
|
||||
},
|
||||
{
|
||||
title: '会员联系人',
|
||||
|
||||
Reference in New Issue
Block a user