|
@@ -10,8 +10,9 @@
|
|
|
</div>
|
|
|
<!-- 表单 -->
|
|
|
<div class="CtFormClass" :style="{width: isMobile ? '' : '600px'}">
|
|
|
- <div v-if="showFailureReason" class="mb-8" style="color: red; font-size: 14px;">
|
|
|
- <span>审核不通过原因:{{ showFailureReason }}</span>
|
|
|
+ <div v-if="failureReason" class="mb-8" style="color: red;">
|
|
|
+ <span class="mr-5">《审核不通过》</span>
|
|
|
+ <span>原因:{{ failureReason }}</span>
|
|
|
</div>
|
|
|
<CtForm ref="CtFormRef" :items="formItems" style="width: 100%;">
|
|
|
<template #prepare>
|
|
@@ -173,11 +174,11 @@ const handleCommit = async () => {
|
|
|
}
|
|
|
|
|
|
// 不通过的企业注册申请 重新发起
|
|
|
-const showFailureReason = ref('')
|
|
|
+const failureReason = ref('')
|
|
|
const info = JSON.parse(localStorage.getItem('userApplyInfo'))
|
|
|
// 审核不通过的数据回显
|
|
|
if (info && Object.keys(info).length && info.status === '2') {
|
|
|
- showFailureReason.value = info?.reason || ''
|
|
|
+ failureReason.value = info?.reason || ''
|
|
|
licenseUrl.value = info?.businessLicenseUrl
|
|
|
isPrepare.value = info?.prepare || false
|
|
|
isPrepareChange()
|