修复:关于我们里面的三个协议点开详情都是用户协议
修复:典藏室编号生成失败 优化:帮助中心,下面的常用工具改为常见问题,三个图标下面有一个灰色的小横线,去除一下
This commit is contained in:
parent
a4a32247e0
commit
34d12dd4f9
|
|
@ -287,6 +287,12 @@ export default {
|
|||
|
||||
.show-text {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
|
||||
::v-deep *{
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
</div>
|
||||
<!--问题列表-->
|
||||
<div class="question-content" v-if="Object.values(question_list).length > 0">
|
||||
<div class="block-title">常用工具</div>
|
||||
<div class="block-title">常见问题</div>
|
||||
<div class="question-list">
|
||||
<van-cell
|
||||
v-for="(item,index) in Object.values(question_list)"
|
||||
|
|
@ -182,6 +182,7 @@ export default {
|
|||
text-align: center;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
border-bottom: none!important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -197,7 +198,6 @@ export default {
|
|||
height: 50px;
|
||||
border-bottom: none!important;
|
||||
}
|
||||
|
||||
.list-cell{
|
||||
border-top: 1px solid #ebedf0;
|
||||
padding: 6px 15px;
|
||||
|
|
|
|||
|
|
@ -58,13 +58,13 @@ export default {
|
|||
this.show_title = this.set.user_title || '';
|
||||
this.show_content = this.set.user_agreement || '';
|
||||
} else if (type === 'policy') {
|
||||
this.policy_title = this.set.policy_title || '';
|
||||
this.policy_content = this.set.user_agreement || '';
|
||||
this.show_title = this.set.policy_title || '';
|
||||
this.show_content = this.set.policy_agreement || '';
|
||||
} else if (type === 'platform') {
|
||||
this.platform_title = this.set.platform_title || '';
|
||||
this.platform_content = this.set.user_agreement || '';
|
||||
this.show_title = this.set.platform_title || '';
|
||||
this.show_content = this.set.platform_agreement || '';
|
||||
}
|
||||
|
||||
console.log(type,this.show_title);
|
||||
if(this.show_title.length > 0 && this.show_content.length > 0) this.show = true;
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue