|
@@ -4,7 +4,7 @@
|
|
|
<div style="width: 600px;margin: 80px auto;">
|
|
|
|
|
|
<!-- 提交企业注册以后跳转显示页面 -->
|
|
|
- <div v-if="!info || !Object.keys(info).length">
|
|
|
+ <div v-if="!info || !(Object.keys(info).length)">
|
|
|
<span>提交成功,审核时间在1~3个工作日内,申请结果会以短信方式通知到您的手机上,请注意查收</span>
|
|
|
</div>
|
|
|
|
|
@@ -36,7 +36,7 @@
|
|
|
|
|
|
<div class="text-center">
|
|
|
<v-btn class="mt-16" color="warning" to="/">{{ $t('common.toHome') }}</v-btn>
|
|
|
- <v-btn class="mt-16 ml-12" color="success" to="/enterprise/register">{{ $t('common.resubmit') }}</v-btn>
|
|
|
+ <v-btn class="mt-16 ml-12" color="primary" to="/enterprise/register">{{ $t('common.resubmit') }}</v-btn>
|
|
|
</div>
|
|
|
</div>
|
|
|
</v-card>
|
|
@@ -50,7 +50,6 @@ defineOptions({name: 'enterprise-enterpriseRegister-inReview'})
|
|
|
|
|
|
|
|
|
const info = JSON.parse(localStorage.getItem('userApplyInfo'))
|
|
|
-console.log('info', info)
|
|
|
const commitTime = ref(info?.createTime ? timesTampChange(info.createTime) : null) // 创建时间
|
|
|
const updateTime = ref(info?.createTime ? timesTampChange(info.updateTime) : null) // 更新时间
|
|
|
const status = ref(info?.status) // 帐号状态(0正常 1停用 2 等待审核 3不通过) // 审核状态
|