|
|
|
@ -135,7 +135,8 @@ |
|
|
|
<p class="title">第三方服务机构开户信息完善</p> |
|
|
|
<p class="title_info">第三方服务机构开户用于服务平台中资产托管时的资产价格评估或资产价值评估,需有相关资质机构方能注册成功。</p> |
|
|
|
<div class="examine_content"> |
|
|
|
<img src="../../../assets/img/examine_img.png" alt="" class="examine_img"> |
|
|
|
<img src="../../../assets/img/examine_img.png" alt="" class="examine_img" v-if="check_status==0"> |
|
|
|
<img src="../../../assets/img/examine_img1.png" alt="" class="examine_img" v-else-if="check_status==2"> |
|
|
|
<p class="examine_tips"> |
|
|
|
<template v-if="check_status==0"> |
|
|
|
<span >资料已经提交,请耐心等待审核</span> |
|
|
|
@ -145,7 +146,7 @@ |
|
|
|
<span class="examine_tips_span" @click="checkStatus">重新提交</span> |
|
|
|
</template> |
|
|
|
</p> |
|
|
|
<div class="error_msg" v-if="check_status==2"> |
|
|
|
<div class="error_msg" v-if="check_status==2 && ruleForm.check_message!=''"> |
|
|
|
<p>失败原因:</p> |
|
|
|
<p v-html="ruleForm.check_message"></p> |
|
|
|
</div> |
|
|
|
@ -409,6 +410,13 @@ export default { |
|
|
|
.body{ |
|
|
|
margin-top: 20px; |
|
|
|
} |
|
|
|
.examine_tips_span{ |
|
|
|
display: inline-block; |
|
|
|
color: #C94C4C; |
|
|
|
text-decoration: underline; |
|
|
|
margin-left: 10px; |
|
|
|
cursor: pointer; |
|
|
|
} |
|
|
|
.title{ |
|
|
|
font-size: 18px; |
|
|
|
margin-bottom: 10px; |
|
|
|
@ -523,4 +531,13 @@ export default { |
|
|
|
color: rgb(201, 76, 76); |
|
|
|
text-decoration: underline; |
|
|
|
} |
|
|
|
.examine_content{ |
|
|
|
width: 100%; |
|
|
|
text-align: center; |
|
|
|
padding-top: 40px; |
|
|
|
color: #C3CBD6; |
|
|
|
font-size: 14px; |
|
|
|
height: 700px; |
|
|
|
box-sizing: border-box; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|