diff --git a/src/views/standardsAssociation/CertificateManagement.vue b/src/views/standardsAssociation/CertificateManagement.vue index 964a9d1..1cf28d4 100644 --- a/src/views/standardsAssociation/CertificateManagement.vue +++ b/src/views/standardsAssociation/CertificateManagement.vue @@ -162,6 +162,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -179,7 +216,17 @@ import JDictSelectTag from '../../components/standardsAssociation/JDictSelectTag // eslint-disable-next-line no-unused-vars import { downloadFile, getAction, getFileAccessHttpUrl } from '@/api/memberManage' import { CertificateModalityEnums, CertificateStatusEnums, ChargeTypeEnums } from '../../enums/memberEnums' - +import CheckCertificateModel from '@views/standardsAssociation/model/CheckCertificateModel' +import BindMemberModel from '@views/standardsAssociation/model/BindMemberModel' +import RenewChargeModel from '@views/standardsAssociation/model/RenewChargeModel' +import ReplaceMentModel from '@views/standardsAssociation/model/ReplaceMentModel' +import ReplaceMentAffirmModel from '@views/standardsAssociation/model/ReplaceMentAffirmModel' +import FreeCertificateModel from '@views/standardsAssociation/model/FreeCertificateModel' +import ChargeCertificateModel from '@views/standardsAssociation/model/ChargeCertificateModel' +import FreeCertificateEditModel from '@views/standardsAssociation/model/FreeCertificateEditModel' +import ChargeCertificateEditModel from '@views/standardsAssociation/model/ChargeCertificateEditModel' +import RenewChargeEditModel from '@views/standardsAssociation/model/RenewChargeEditModel' +import FreeCertificateReplaceEditModel from '@views/standardsAssociation/model/FreeCertificateReplaceEditModel' export default { name: 'CertificateManagement', mixins: [JeroListMixin, mixinDevice, RangeDateMixin, StandardListMixin], @@ -187,7 +234,18 @@ export default { JMultiSelectTag, JDate, VinCertificateModal, - JDictSelectTag + JDictSelectTag, + CheckCertificateModel, + BindMemberModel, + RenewChargeModel, + ReplaceMentModel, + ReplaceMentAffirmModel, + FreeCertificateModel, + ChargeCertificateModel, + FreeCertificateEditModel, + ChargeCertificateEditModel, + RenewChargeEditModel, + FreeCertificateReplaceEditModel }, data() { return { @@ -341,6 +399,11 @@ export default { } }, methods: { + // 显示换证确认 窗口 + handleAffirm() { + this.$refs.replaceMentAffirmModelForm.title = '提交成功' + this.$refs.replaceMentAffirmModelForm.show() + }, initDictConfig() { }, // 授权 @@ -369,19 +432,26 @@ export default { // 可申请的免费证书的个数 let freeCount getAction('/vinCertificate/vinCertificate/getFreeCount').then(res => { + console.log(res) if (res.success) { freeCount = res.result - that.$refs.modalForm.title = '新增申请' - that.$refs.modalForm.disableSubmit = false - that.$refs.modalForm.freeCount = freeCount + // that.$refs.modalForm.title = '新增申请' + // that.$refs.modalForm.disableSubmit = false + // that.$refs.modalForm.freeCount = freeCount // freeCount 为0 打开收费证书申请窗口 if (freeCount === 0) { - that.$refs.modalForm.pageType = 6 + // 弹出新增收费窗口操作 + that.$refs.addChargeModalForm.title = '新增申请' + that.$refs.addChargeModalForm.add() } else { - that.$refs.modalForm.pageType = 5 + // 弹出新增免费窗口操作 + // that.$refs.modalForm.pageType = 5 + that.$refs.addFreeModalForm.add() + that.$refs.addFreeModalForm.title = '新增申请' + that.$refs.addFreeModalForm.freeCount = freeCount } - // 弹窗口操作 - that.$refs.modalForm.add() + // // 弹窗口操作 + // that.$refs.modalForm.add() } else { that.$message.warning(res.message) } @@ -389,43 +459,55 @@ export default { }, // 查看证书 handleDetail: function(record) { - this.$refs.modalForm.title = '查看证书' - this.$refs.modalForm.disableSubmit = true - this.$refs.modalForm.pageType = 1 - this.$refs.modalForm.remainingTime = this.remainingTimeCount(record.certificateValidDate) - this.$refs.modalForm.edit(record) + this.$refs.checkModalForm.remainingTime = this.remainingTimeCount(record.certificateValidDate) + this.$refs.checkModalForm.check(record) + + // this.$refs.modalForm.title = '查看证书' + // this.$refs.modalForm.disableSubmit = true + // this.$refs.modalForm.pageType = 1 + // this.$refs.modalForm.remainingTime = this.remainingTimeCount(record.certificateValidDate) + // this.$refs.modalForm.edit(record) }, // 绑定会员 bindMember: function(record) { - this.$refs.modalForm.title = '绑定会员' - this.$refs.modalForm.disableSubmit = true - // 绑定会员时使用4号窗口 - this.$refs.modalForm.pageType = 4 // 证书id - this.$refs.modalForm.vinId = record.id - this.$refs.modalForm.edit(record) + this.$refs.bindMemberModelForm.vinId = record.id + this.$refs.bindMemberModelForm.edit(record) + + // this.$refs.modalForm.title = '绑定会员' + // this.$refs.modalForm.disableSubmit = true + // // 绑定会员时使用4号窗口 + // this.$refs.modalForm.pageType = 4 + // // 证书id + // this.$refs.modalForm.vinId = record.id + // this.$refs.modalForm.edit(record) }, // 续费 renewCharge: function(record) { // if(!(record.chargeType != 1 && record.certificateModality == 3 && record.certificateStatus == 5)){ // return; // } - this.$refs.modalForm.title = '续费' - this.$refs.modalForm.disableSubmit = true - // 换证显示 1是世界证书 - this.$refs.modalForm.isChangeCer = record.certificateType - // 证书续费时使用7号窗口 - this.$refs.modalForm.pageType = 7 - this.$refs.modalForm.edit2(record) + this.$refs.renewChargeModelForm.isChangeCer = record.certificateType + this.$refs.renewChargeModelForm.edit(record) + + // this.$refs.modalForm.title = '续费' + // this.$refs.modalForm.disableSubmit = true + // // 换证显示 1是世界证书 + // this.$refs.modalForm.isChangeCer = record.certificateType + // // 证书续费时使用7号窗口 + // this.$refs.modalForm.pageType = 7 + // this.$refs.modalForm.edit2(record) }, // 换证 replacement: function(record) { - this.$refs.modalForm.title = '换证' - this.$refs.modalForm.disableSubmit = true - // 换证的时候使用8号窗口 - this.$refs.modalForm.pageType = 8 - this.$refs.modalForm.edit3(record) + this.$refs.replaceMentModelForm.edit(record) + + // this.$refs.modalForm.title = '换证' + // this.$refs.modalForm.disableSubmit = true + // // 换证的时候使用8号窗口 + // this.$refs.modalForm.pageType = 8 + // this.$refs.modalForm.edit3(record) }, // 编辑: 包括免费证书,收费证书,续费,换证 handleEditRenew: function(record) { @@ -435,8 +517,8 @@ export default { // 证书是否免费 1-免费 2-付费 record.chargeType = Number(record.chargeType) // 分为续证驳回和 非免费证书申请驳回 chargeType 1是免费证书 2是收费证书 - this.$refs.modalForm.title = '' - this.$refs.modalForm.disableSubmit = true + // this.$refs.modalForm.title = '' + // this.$refs.modalForm.disableSubmit = true // certificateStatus --证书状态-待支付 if (record.certificateStatus === CertificateStatusEnums.toPay.index) { // 免费证书 @@ -447,55 +529,71 @@ export default { let freeCount getAction('/vinCertificate/vinCertificate/getFreeCount').then((res) => { freeCount = res.result - this.$refs.modalForm.freeCountVin = freeCount + 1 - this.$refs.modalForm.title = '新增申请' - this.$refs.modalForm.disableSubmit = false - this.$refs.modalForm.pageType = 10 - this.$refs.modalForm.edit5(record) + this.$refs.freeCertificateEditModel.freeCountVin = freeCount + 1 + this.$refs.freeCertificateEditModel.edit(record) + + // this.$refs.modalForm.freeCountVin = freeCount + 1 + // this.$refs.modalForm.title = '新增申请' + // this.$refs.modalForm.disableSubmit = false + // this.$refs.modalForm.pageType = 10 + // this.$refs.modalForm.edit5(record) }) return } else if (record.certificateModality === 1) { // 免费证书换证编辑 - this.$refs.modalForm.title = '换证' - this.$refs.modalForm.disableSubmit = true - // 换证的时候使用13号窗口 - this.$refs.modalForm.pageType = 13 - this.$refs.modalForm.edit8(record) + this.$refs.FreeCertificateReplaceEditModel.edit(record) + + // this.$refs.modalForm.title = '换证' + // this.$refs.modalForm.disableSubmit = true + // // 换证的时候使用13号窗口 + // this.$refs.modalForm.pageType = 13 + // this.$refs.modalForm.edit8(record) } } else if (record.chargeType === 2 && record.certificateModality === 4) { // 收费证书编辑 - this.$refs.modalForm.title = '新增申请' - this.$refs.modalForm.disableSubmit = false - this.$refs.modalForm.pageType = 11 - this.$refs.modalForm.edit6(record) + this.$refs.ChargeCertificateEditModel.edit(record) + + // this.$refs.modalForm.title = '新增申请' + // this.$refs.modalForm.disableSubmit = false + // this.$refs.modalForm.pageType = 11 + // this.$refs.modalForm.edit6(record) } else if (record.chargeType === 2 && record.certificateModality === 2) { // 续费编辑 - this.$refs.modalForm.title = '续费' - this.$refs.modalForm.disableSubmit = true - // 证书续费编辑时使用12号窗口 - this.$refs.modalForm.pageType = 12 - this.$refs.modalForm.edit7(record) + this.$refs.RenewChargeEditModel.edit(record) + + // this.$refs.modalForm.title = '续费' + // this.$refs.modalForm.disableSubmit = true + // // 证书续费编辑时使用12号窗口 + // this.$refs.modalForm.pageType = 12 + // this.$refs.modalForm.edit7(record) } else if (record.chargeType === 2 && record.certificateModality === 1) { - // 换证编辑 - this.$refs.modalForm.title = '换证' - this.$refs.modalForm.disableSubmit = true - // 换证的时候使用13号窗口 - this.$refs.modalForm.pageType = 13 - this.$refs.modalForm.edit8(record) + // // 换证编辑 + this.$refs.FreeCertificateReplaceEditModel.edit(record) + + // this.$refs.modalForm.title = '换证' + // this.$refs.modalForm.disableSubmit = true + // // 换证的时候使用13号窗口 + // this.$refs.modalForm.pageType = 13 + // this.$refs.modalForm.edit8(record) } } else { // 新增证书缴费编辑窗口 if (record.chargeType === 2 && record.certificateModality === 4 && record.certificateStatus === 6) { - this.$refs.modalForm.title = '新增申请' - this.$refs.modalForm.disableSubmit = false - this.$refs.modalForm.pageType = 11 - this.$refs.modalForm.edit6(record) + this.$refs.ChargeCertificateEditModel.edit(record) + + // this.$refs.modalForm.title = '新增申请' + // this.$refs.modalForm.disableSubmit = false + // this.$refs.modalForm.pageType = 11 + // this.$refs.modalForm.edit6(record) } else if (record.chargeType === 2 && record.certificateModality === 2 && record.certificateStatus === 6) { - this.$refs.modalForm.title = '续费' - this.$refs.modalForm.disableSubmit = true - // 证书续费编辑时使用12号窗口 - this.$refs.modalForm.pageType = 12 - this.$refs.modalForm.edit7(record) + // 续费编辑 + this.$refs.RenewChargeEditModel.edit(record) + + // this.$refs.modalForm.title = '续费' + // this.$refs.modalForm.disableSubmit = true + // // 证书续费编辑时使用12号窗口 + // this.$refs.modalForm.pageType = 12 + // this.$refs.modalForm.edit7(record) } } }, diff --git a/src/views/standardsAssociation/memberManagementModule/VinCertificateModal.vue b/src/views/standardsAssociation/memberManagementModule/VinCertificateModal.vue index 728daed..534aaa6 100644 --- a/src/views/standardsAssociation/memberManagementModule/VinCertificateModal.vue +++ b/src/views/standardsAssociation/memberManagementModule/VinCertificateModal.vue @@ -3423,7 +3423,7 @@ export default { // 默认选择增值税发票 let defaultInvoiceRequirements = 2 this.model = Object.assign({}, this.currentMemberInfo, {invoiceRequirements: defaultInvoiceRequirements}) - // console.log(this.model, '**********') + console.log(this.model, '**********') this.visible = true this.$nextTick(() => { this.form.setFieldsValue(pick(this.model, 'address', 'postcode', 'companyName', 'liaisonMan', 'mobile', 'invoiceRequirements')) diff --git a/src/views/standardsAssociation/model/BindMemberModel.vue b/src/views/standardsAssociation/model/BindMemberModel.vue new file mode 100644 index 0000000..d448338 --- /dev/null +++ b/src/views/standardsAssociation/model/BindMemberModel.vue @@ -0,0 +1,233 @@ + + + + + + + + + + + {{ item.certificate }}({{ item.certificate_code }}) + + + + + + + + 确定绑定该世界制造厂识别代号(WMI)证书到用户会员吗?绑定后,原绑定证书将解绑。 + + + 确定绑定该企业名称代号证书到用户会员吗?绑定后,原绑定证书将解绑。 + + + + + + + + 取消 + 提交 + + + + + + + diff --git a/src/views/standardsAssociation/model/ChargeCertificateEditModel.vue b/src/views/standardsAssociation/model/ChargeCertificateEditModel.vue new file mode 100644 index 0000000..81eccb3 --- /dev/null +++ b/src/views/standardsAssociation/model/ChargeCertificateEditModel.vue @@ -0,0 +1,895 @@ + + + + + + 当前用户已使用免费制作证书权益。可付费制作其他证书。 + + 申请信息 + + + + + + + + + + + + 一次申请仅能输入一个证书代码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 生效日期与上一周期证书的失效日期保持一致,失效日期顺延五年 + + + + + + + + + + 缴费信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 请上传pdf文件 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['invoiceAddress',{ ...validatorRules.invoiceAddress, initialValue:currentMemberInfo.invoiceAddress}]" + placeholder="请输入单位地址" + :maxLength="50"> + + + + + {e.target.value = e.target.value.replace(/[^0-9|-]/g,'')}" + placeholder="请输入电话号码" + :maxLength="50"> + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['depositBank',{ ...validatorRules.depositBank, initialValue:currentMemberInfo.depositBank}]" + placeholder="请输入开户银行" + :maxLength="50"> + + + + + {e.target.value = e.target.value.trim()}" + v-decorator="['bankAccount',{ ...validatorRules.bankAccount, initialValue:currentMemberInfo.bankAccount}]" + placeholder="请输入银行账户" + :maxLength="50"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['invoiceAddress',{ ...validatorRules.invoiceAddress, initialValue:currentMemberInfo.invoiceAddress}]" + placeholder="请输入单位地址" + :maxLength="50"> + + + + + {e.target.value = e.target.value.replace(/[^0-9|-]/g,'')}" + placeholder="请输入电话号码" + :maxLength="50"> + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['depositBank',{ ...validatorRules.depositBank, initialValue:currentMemberInfo.depositBank}]" + placeholder="请输入开户银行" + :maxLength="50"> + + + + + {e.target.value = e.target.value.trim()}" + v-decorator="['bankAccount',{ ...validatorRules.bankAccount, initialValue:currentMemberInfo.bankAccount}]" + placeholder="请输入银行账户" + :maxLength="50"> + + + + + + + + + + 关闭 + 暂存 + 提交 + + + + + + + diff --git a/src/views/standardsAssociation/model/ChargeCertificateModel.vue b/src/views/standardsAssociation/model/ChargeCertificateModel.vue new file mode 100644 index 0000000..7be978e --- /dev/null +++ b/src/views/standardsAssociation/model/ChargeCertificateModel.vue @@ -0,0 +1,897 @@ + + + + + + + *申请提示* 尊敬的会员您好!您已完成2张证书的办理业务,第3张证书起,将执行付费办理,费用标准:5000元/张。请在本页提交“新增申请”后,前往“证书缴费”办理相关费用。 + + 申请信息 + + + + + + + + + + + + 一次申请仅能输入一个证书代码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 生效日期与上一周期证书的失效日期保持一致,失效日期顺延五年 + + + + + + + + + + 缴费信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 请上传pdf文件 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['invoiceAddress',{ ...validatorRules.invoiceAddress, initialValue:currentMemberInfo.invoiceAddress}]" + placeholder="请输入单位地址" + :maxLength="50"> + + + + + {e.target.value = e.target.value.replace(/[^0-9|-]/g,'')}" + placeholder="请输入电话号码" + :maxLength="50"> + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['depositBank',{ ...validatorRules.depositBank, initialValue:currentMemberInfo.depositBank}]" + placeholder="请输入开户银行" + :maxLength="50"> + + + + + {e.target.value = e.target.value.trim()}" + v-decorator="['bankAccount',{ ...validatorRules.bankAccount, initialValue:currentMemberInfo.bankAccount}]" + placeholder="请输入银行账户" + :maxLength="50"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['invoiceAddress',{ ...validatorRules.invoiceAddress, initialValue:currentMemberInfo.invoiceAddress}]" + placeholder="请输入单位地址" + :maxLength="50"> + + + + + {e.target.value = e.target.value.replace(/[^0-9|-]/g,'')}" + placeholder="请输入电话号码" + :maxLength="50"> + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['depositBank',{ ...validatorRules.depositBank, initialValue:currentMemberInfo.depositBank}]" + placeholder="请输入开户银行" + :maxLength="50"> + + + + + {e.target.value = e.target.value.trim()}" + v-decorator="['bankAccount',{ ...validatorRules.bankAccount, initialValue:currentMemberInfo.bankAccount}]" + placeholder="请输入银行账户" + :maxLength="50"> + + + + + + + + + + 关闭 + 暂存 + 提交 + + + + + + + diff --git a/src/views/standardsAssociation/model/CheckCertificateModel.vue b/src/views/standardsAssociation/model/CheckCertificateModel.vue new file mode 100644 index 0000000..c9a2d5b --- /dev/null +++ b/src/views/standardsAssociation/model/CheckCertificateModel.vue @@ -0,0 +1,349 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 待支付 + 已绑定 + 已支付 + 支付已审核 + 正常使用 + 已失效 + 已驳回 + 绑定已失效 + + + + + + + + + + + + + 天后 + + + + + + + + + + + + + + + + 证书历史信息 + -------------------------------------------------- + + + + + + + + + + + + + + + + + + + 返回 + + + + + + \ No newline at end of file diff --git a/src/views/standardsAssociation/model/FreeCertificateEditModel.vue b/src/views/standardsAssociation/model/FreeCertificateEditModel.vue new file mode 100644 index 0000000..44995ef --- /dev/null +++ b/src/views/standardsAssociation/model/FreeCertificateEditModel.vue @@ -0,0 +1,405 @@ + + + + + + 当前用户可享{{ freeCountVin }}次免费制作证书的机会 + + 申请信息 + + + + + + + + + + + + 一次申请仅能输入一个证书代码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 关闭 + 暂存 + 提交 + + + + + + + + +FreeCertificateEditModel diff --git a/src/views/standardsAssociation/model/FreeCertificateModel.vue b/src/views/standardsAssociation/model/FreeCertificateModel.vue new file mode 100644 index 0000000..502d18c --- /dev/null +++ b/src/views/standardsAssociation/model/FreeCertificateModel.vue @@ -0,0 +1,474 @@ + + + + + + 当前用户可享{{ freeCount }}次免费制作证书的机会 + + 申请信息 + + + + + + + + + + + + 一次申请仅能输入一个证书代码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 关闭 + 暂存 + 提交 + + + + + + + diff --git a/src/views/standardsAssociation/model/FreeCertificateReplaceEditModel.vue b/src/views/standardsAssociation/model/FreeCertificateReplaceEditModel.vue new file mode 100644 index 0000000..2d87282 --- /dev/null +++ b/src/views/standardsAssociation/model/FreeCertificateReplaceEditModel.vue @@ -0,0 +1,507 @@ + + + + + + + + + + + + + + + + 一次申请仅能输入一个证书代码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ checkboxValue }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 关闭 + 暂存 + 提交 + + + + + + + diff --git a/src/views/standardsAssociation/model/RenewChargeEditModel.vue b/src/views/standardsAssociation/model/RenewChargeEditModel.vue new file mode 100644 index 0000000..7628e2d --- /dev/null +++ b/src/views/standardsAssociation/model/RenewChargeEditModel.vue @@ -0,0 +1,699 @@ + + + + + + + 申请信息 + + + + + + + + + + + + 一次申请仅能输入一个证书代码 + + + + + + + + + + + + + + + + + + + 缴费信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 请上传pdf文件 + + + + + + + + + + + + + + + + + + + + + 本选项不提供任何形式的发票凭证 + + + + + + + + + + + + + + + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['invoiceAddress',{ ...validatorRules.invoiceAddress, initialValue:currentMemberInfo.invoiceAddress}]" + placeholder="请输入单位地址" + :maxLength="50"> + + + + + {e.target.value = e.target.value.replace(/[^0-9|-]/g,'')}" + placeholder="请输入电话号码" + :maxLength="50"> + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['depositBank',{ ...validatorRules.depositBank, initialValue:currentMemberInfo.depositBank}]" + placeholder="请输入开户银行" + :maxLength="50"> + + + + + {e.target.value = e.target.value.trim()}" + v-decorator="['bankAccount',{ ...validatorRules.bankAccount, initialValue:currentMemberInfo.bankAccount}]" + placeholder="请输入银行账户" + :maxLength="50"> + + + + + + + + + + + + + 一个缴费单可在多个缴费处上传 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 关闭 + 暂存 + 提交 + + + + + + + diff --git a/src/views/standardsAssociation/model/RenewChargeModel.vue b/src/views/standardsAssociation/model/RenewChargeModel.vue new file mode 100644 index 0000000..21f9e75 --- /dev/null +++ b/src/views/standardsAssociation/model/RenewChargeModel.vue @@ -0,0 +1,792 @@ + + + + + + + 申请信息 + + + + + + + + + + + + 一次申请仅能输入一个证书代码 + + + + + + + + + + + + + + + + + + + 缴费信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 请上传pdf文件 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['invoiceAddress',{ ...validatorRules.invoiceAddress, initialValue:currentMemberInfo.invoiceAddress}]" + placeholder="请输入单位地址" + :maxLength="50"> + + + + + {e.target.value = e.target.value.replace(/[^0-9|-]/g,'')}" + placeholder="请输入电话号码" + :maxLength="50"> + + + + + + + event.target.value = event.target.value.trim()" + v-decorator="['depositBank',{ ...validatorRules.depositBank, initialValue:currentMemberInfo.depositBank}]" + placeholder="请输入开户银行" + :maxLength="50"> + + + + + {e.target.value = e.target.value.trim()}" + v-decorator="['bankAccount',{ ...validatorRules.bankAccount, initialValue:currentMemberInfo.bankAccount}]" + placeholder="请输入银行账户" + :maxLength="50"> + + + + + + + + + + + + 一个缴费单可在多个缴费处上传 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 关闭 + 暂存 + 提交 + + + + + + + \ No newline at end of file diff --git a/src/views/standardsAssociation/model/ReplaceMentAffirmModel.vue b/src/views/standardsAssociation/model/ReplaceMentAffirmModel.vue new file mode 100644 index 0000000..f33f7d8 --- /dev/null +++ b/src/views/standardsAssociation/model/ReplaceMentAffirmModel.vue @@ -0,0 +1,64 @@ + + + + + + + 您的证书申请已收到!请确认您的换证纸质材料已经 + 邮寄签收并符合换证要求后,自会员资格生效日起, + 10个工作日内,您将收到换发的纸质证书。 + + + + + + 确定 + + + + + + + diff --git a/src/views/standardsAssociation/model/ReplaceMentModel.vue b/src/views/standardsAssociation/model/ReplaceMentModel.vue new file mode 100644 index 0000000..08c79fa --- /dev/null +++ b/src/views/standardsAssociation/model/ReplaceMentModel.vue @@ -0,0 +1,442 @@ + + + + + + + + + + + + + + + + + 一次申请仅能输入一个证书代码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 关闭 + 暂存 + 提交 + + + + + + +
证书历史信息
--------------------------------------------------