【update】-起草组弹框去掉金额相关字段

This commit is contained in:
fengchenchen
2024-01-25 11:04:24 +08:00
parent da42317911
commit 16b170bef6
3 changed files with 11 additions and 4 deletions
+7 -3
View File
@@ -7,7 +7,7 @@
@cancel="handleCancel" @cancel="handleCancel"
cancelText="关闭"> cancelText="关闭">
<!-- 基本信息begin--> <!-- 基本信息begin-->
<section class="base-info"> <section class="base-info" v-if="projectType !== ProjectTypeEnums.DRAFT_PRO.value">
<h3 class="title">基本信息</h3> <h3 class="title">基本信息</h3>
<a-row :gutter="24"> <a-row :gutter="24">
<a-col :span="12" class="detail-item"> <a-col :span="12" class="detail-item">
@@ -270,7 +270,7 @@
</section> </section>
<!-- 企业联系人信息end--> <!-- 企业联系人信息end-->
<!--到账信息begin--> <!--到账信息begin-->
<section class="payment-info"> <section class="payment-info" v-if="projectType !== ProjectTypeEnums.DRAFT_PRO.value">
<h3 class="title">到账信息</h3> <h3 class="title">到账信息</h3>
<div class="payment-info-box"> <div class="payment-info-box">
<section class="payment-info-title">到账信息</section> <section class="payment-info-title">到账信息</section>
@@ -284,7 +284,7 @@
</section> </section>
<!--到账信息end--> <!--到账信息end-->
<!--开票邮寄信息begin--> <!--开票邮寄信息begin-->
<section class="logistics-info"> <section class="logistics-info" v-if="projectType !== ProjectTypeEnums.DRAFT_PRO.value">
<h3 class="title">开票邮寄信息</h3> <h3 class="title">开票邮寄信息</h3>
<div class="wrap-table"> <div class="wrap-table">
<a-table <a-table
@@ -381,6 +381,10 @@ export default {
type: Boolean, type: Boolean,
required: false, required: false,
default: false default: false
},
projectType:{
type: Number,
required: false
} }
}, },
data() { data() {
+1
View File
@@ -7,6 +7,7 @@ export const ProjectTypeEnums = {
MEMBER_PRO: {name: '资料网员', value: 4}, MEMBER_PRO: {name: '资料网员', value: 4},
STANDARD_MEMBER_PRO: {name: '标协会员项目', value: 5}, STANDARD_MEMBER_PRO: {name: '标协会员项目', value: 5},
STANDARD_CERTIFICATE_PRO: {name: '标协证书项目', value: 6}, STANDARD_CERTIFICATE_PRO: {name: '标协证书项目', value: 6},
DRAFT_PRO: {name: '起草组项目', value: 7},
} }
// 参会人员身份类型 // 参会人员身份类型
@@ -165,7 +165,7 @@
</div> </div>
</a-card> </a-card>
<project-detail-modal ref="projectDetail"></project-detail-modal> <project-detail-modal :project-type="ProjectTypeEnums.DRAFT_PRO.value" ref="projectDetail"></project-detail-modal>
<drafting-group-member-unit-module ref="modalForm" @ok="modalFormOk"></drafting-group-member-unit-module> <drafting-group-member-unit-module ref="modalForm" @ok="modalFormOk"></drafting-group-member-unit-module>
<!-- 审核弹框 --> <!-- 审核弹框 -->
<drafting-group-member-unit-check-module ref="draftingGroupMemberUnitCheckModule" @ok="modalFormOk"/> <drafting-group-member-unit-check-module ref="draftingGroupMemberUnitCheckModule" @ok="modalFormOk"/>
@@ -184,6 +184,7 @@ import { ACCESS_TOKEN } from '../../store/mutation-types'
import PreviewFile from '../../components/jero/PreviewFile' import PreviewFile from '../../components/jero/PreviewFile'
import {createQcCode} from '@api/incomeMeetingApi' import {createQcCode} from '@api/incomeMeetingApi'
import DraftingGroupMemberUnitCheckModule from '@views/draftingGroup/modules/DraftingGroupMemberUnitCheckModule' import DraftingGroupMemberUnitCheckModule from '@views/draftingGroup/modules/DraftingGroupMemberUnitCheckModule'
import { ProjectTypeEnums } from '../../enums/commonEnums'
// eslint-disable-next-line no-undef,no-unused-vars // eslint-disable-next-line no-undef,no-unused-vars
const Base64 = require('js-base64').Base64 const Base64 = require('js-base64').Base64
@@ -218,6 +219,7 @@ export default {
}, },
data() { data() {
return { return {
ProjectTypeEnums,
signUpQRCode: '', signUpQRCode: '',
disableMixinCreated: true, disableMixinCreated: true,
draftingGroupProject: '', draftingGroupProject: '',