Browse Source

优化

master
ltlzx 4 years ago
parent
commit
bc878b3343
  1. 2
      src/components/page/Purchaser/wkPurchaser.vue
  2. 21
      src/components/page/Purchaser/wkThird.vue
  3. 22
      src/components/page/Purchaser/wkTrusteeship.vue

2
src/components/page/Purchaser/wkPurchaser.vue

@ -146,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>

21
src/components/page/Purchaser/wkThird.vue

@ -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>

22
src/components/page/Purchaser/wkTrusteeship.vue

@ -136,7 +136,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>
@ -146,7 +147,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>
@ -420,9 +421,17 @@ export default {
}
</script>
<style scoped>
.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;
@ -537,4 +546,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>

Loading…
Cancel
Save