【fix:bug】-1、分标委分发不提示 2、报名时候 显示信息的错误
This commit is contained in:
@@ -79,7 +79,7 @@
|
||||
</template>
|
||||
|
||||
<!-- 发票信息=== 会议费用不为0 且需要发票 且 身份为参会人 且 缴费方式不是打包 -->
|
||||
<template v-if="!meetingCostBool && needInvoiceBool && identifyType === MeetIdentifyTypeEnums.attendee.index && !payModeBool">
|
||||
<template v-if="!meetingCostBool && selectedInvoiceType && identifyType === MeetIdentifyTypeEnums.attendee.index && !payModeBool">
|
||||
<div class="item-title">发票信息</div>
|
||||
<a-row :gutter="24">
|
||||
<a-col :xxl="8" :xl="12" :sm="24">
|
||||
@@ -154,7 +154,7 @@
|
||||
</template>
|
||||
<!-- 其他会议选择嘉宾和内部企业、缴费方式为打包也不显示-->
|
||||
<!-- 会议费用不为0 且需要发票 且 身份为参会人 且 缴费方式不是打包 -->
|
||||
<template v-if="!meetingCostBool && needInvoiceBool && identifyType === MeetIdentifyTypeEnums.attendee.index && !payModeBool ">
|
||||
<template v-if="!meetingCostBool && selectedInvoiceType && identifyType === MeetIdentifyTypeEnums.attendee.index && !payModeBool ">
|
||||
<div class="item-title">邮寄信息</div>
|
||||
<a-row :gutter="24">
|
||||
<a-col :xxl="8" :xl="12" :sm="24">
|
||||
@@ -506,7 +506,7 @@ export default {
|
||||
setFormVal(record) {
|
||||
// this.isEditBool = record.checkResult === 1
|
||||
this.isEditBool = false
|
||||
this.needInvoiceBool = record.needInvoice !== 0
|
||||
// this.needInvoiceBool = Number(record.needInvoice) !== 0
|
||||
this.changeInvoice(record.needInvoice)
|
||||
// this.selectedInvoiceType = Number(record.needInvoice)
|
||||
|
||||
@@ -549,9 +549,9 @@ export default {
|
||||
this.selectedInvoiceType = Number(val)
|
||||
if (this.selectedInvoiceType === 0) {
|
||||
// 不需要发票
|
||||
this.needInvoiceBool = false
|
||||
// this.needInvoiceBool = false
|
||||
} else {
|
||||
this.needInvoiceBool = true
|
||||
// this.needInvoiceBool = true
|
||||
}
|
||||
this.setInvoiceFormItem()
|
||||
},
|
||||
|
||||
@@ -286,6 +286,7 @@ export default {
|
||||
* 初始化数据
|
||||
*/
|
||||
initData() {
|
||||
console.log("-----------------")
|
||||
this.checkedKeys = []
|
||||
this.selectedRowKeys = []
|
||||
this.ipagination.current = 1
|
||||
@@ -459,7 +460,7 @@ export default {
|
||||
judgeEmailStatusFunc() {
|
||||
this.needMail = false
|
||||
// 非工作组项目的情况 不进行请求
|
||||
if(this.projectType !== 1) return
|
||||
// if(this.projectType !== 1) return
|
||||
const params = {
|
||||
code: 'QY_12_WJTZ_WORK_GROUP_SEND'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user