【bug】 bug修改
This commit is contained in:
@@ -926,7 +926,7 @@ export default {
|
|||||||
let codeObj = this.form.getFieldsValue(['cooperativeInvitationCode', 'vipInvitationCode', 'speakerInvitationCode', 'guestInvitationCode'])
|
let codeObj = this.form.getFieldsValue(['cooperativeInvitationCode', 'vipInvitationCode', 'speakerInvitationCode', 'guestInvitationCode'])
|
||||||
let codeArr = Object.values(codeObj)
|
let codeArr = Object.values(codeObj)
|
||||||
codeArr = codeArr.filter(item => {
|
codeArr = codeArr.filter(item => {
|
||||||
return (item !== undefined && item !== '')
|
return (item !== undefined && item !== '' && item !== null)
|
||||||
})
|
})
|
||||||
console.log('codearr', codeArr)
|
console.log('codearr', codeArr)
|
||||||
// 校验是否重复
|
// 校验是否重复
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
<label>预计参加人数:</label><span>{{ currentMeetingInfo.estimatedNumber }}</span>
|
<label>预计参加人数:</label><span>{{ currentMeetingInfo.estimatedNumber }}</span>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :xxl="8" :xl="12" :sm="24">
|
<a-col :xxl="8" :xl="12" :sm="24">
|
||||||
<label>酒店名称</label><span>{{ currentMeetingInfo.hotelName }}</span>
|
<label>酒店名称:</label><span>{{ currentMeetingInfo.hotelName }}</span>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :xxl="8" :xl="12" :sm="24">
|
<a-col :xxl="8" :xl="12" :sm="24">
|
||||||
<label>酒店地址:</label><span>{{ currentMeetingInfo.hotelAddress }}</span>
|
<label>酒店地址:</label><span>{{ currentMeetingInfo.hotelAddress }}</span>
|
||||||
|
|||||||
@@ -21,9 +21,9 @@
|
|||||||
<template >
|
<template >
|
||||||
<a-col :xl="10" :lg="11" :md="12" :sm="24">
|
<a-col :xl="10" :lg="11" :md="12" :sm="24">
|
||||||
<a-form-item label="缴费时间">
|
<a-form-item label="缴费时间">
|
||||||
<j-date date-format="YYYY-MM-DD 00:00:00" placeholder="请选择开始日期" class="query-group-cust" v-model="queryParam.submissionTimeBegin" :disabled-date="disabledStartDate"></j-date>
|
<j-date date-format="YYYY-MM-DD 00:00:00" placeholder="请选择开始日期" class="query-group-cust" v-model="queryParam.submissionTime_begin" :disabled-date="disabledStartDate"></j-date>
|
||||||
<span class="query-group-split-cust"></span>
|
<span class="query-group-split-cust"></span>
|
||||||
<j-date date-format="YYYY-MM-DD 23:59:59" placeholder="请选择结束日期" class="query-group-cust" v-model="queryParam.submissionTimeEnd" :disabled-date="disabledEndDate"></j-date>
|
<j-date date-format="YYYY-MM-DD 23:59:59" placeholder="请选择结束日期" class="query-group-cust" v-model="queryParam.submissionTime_end" :disabled-date="disabledEndDate"></j-date>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
</template>
|
</template>
|
||||||
@@ -83,10 +83,6 @@
|
|||||||
:dataSource="dataSource"
|
:dataSource="dataSource"
|
||||||
:pagination="ipagination"
|
:pagination="ipagination"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
:rowSelection="{
|
|
||||||
selectedRowKeys: selectedRowKeys,
|
|
||||||
onChange: onSelectChange,
|
|
||||||
}"
|
|
||||||
class="j-table-force-nowrap"
|
class="j-table-force-nowrap"
|
||||||
@change="handleTableChange"
|
@change="handleTableChange"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -313,6 +313,7 @@ export default {
|
|||||||
// 如果是标协会议 用标协会议权限
|
// 如果是标协会议 用标协会议权限
|
||||||
if (this.meetingType === '2') {
|
if (this.meetingType === '2') {
|
||||||
this.authorCode = Object.assign({}, this.standardsMeetingAuthorCode)
|
this.authorCode = Object.assign({}, this.standardsMeetingAuthorCode)
|
||||||
|
this.filters.standardsId = this.$route.query.id
|
||||||
}
|
}
|
||||||
// 不是分标委会议去掉提醒字段
|
// 不是分标委会议去掉提醒字段
|
||||||
if (this.meetingType !== '5') {
|
if (this.meetingType !== '5') {
|
||||||
|
|||||||
Reference in New Issue
Block a user