修复:关于我们里面的三个协议点开详情都是用户协议

修复:典藏室编号生成失败
优化:帮助中心,下面的常用工具改为常见问题,三个图标下面有一个灰色的小横线,去除一下
This commit is contained in:
wuhui_zzw 2023-10-31 10:23:00 +08:00
parent a4a32247e0
commit 34d12dd4f9
3 changed files with 13 additions and 7 deletions

View File

@ -287,6 +287,12 @@ export default {
.show-text { .show-text {
text-align: left; text-align: left;
width: 100%;
overflow: hidden;
::v-deep *{
max-width: 100%;
}
} }
} }
</style> </style>

View File

@ -27,7 +27,7 @@
</div> </div>
<!--问题列表--> <!--问题列表-->
<div class="question-content" v-if="Object.values(question_list).length > 0"> <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"> <div class="question-list">
<van-cell <van-cell
v-for="(item,index) in Object.values(question_list)" v-for="(item,index) in Object.values(question_list)"
@ -182,6 +182,7 @@ export default {
text-align: center; text-align: center;
font-size: 14px; font-size: 14px;
font-weight: 500; font-weight: 500;
border-bottom: none!important;
} }
} }
} }
@ -197,7 +198,6 @@ export default {
height: 50px; height: 50px;
border-bottom: none!important; border-bottom: none!important;
} }
.list-cell{ .list-cell{
border-top: 1px solid #ebedf0; border-top: 1px solid #ebedf0;
padding: 6px 15px; padding: 6px 15px;

View File

@ -58,13 +58,13 @@ export default {
this.show_title = this.set.user_title || ''; this.show_title = this.set.user_title || '';
this.show_content = this.set.user_agreement || ''; this.show_content = this.set.user_agreement || '';
} else if (type === 'policy') { } else if (type === 'policy') {
this.policy_title = this.set.policy_title || ''; this.show_title = this.set.policy_title || '';
this.policy_content = this.set.user_agreement || ''; this.show_content = this.set.policy_agreement || '';
} else if (type === 'platform') { } else if (type === 'platform') {
this.platform_title = this.set.platform_title || ''; this.show_title = this.set.platform_title || '';
this.platform_content = this.set.user_agreement || ''; 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; if(this.show_title.length > 0 && this.show_content.length > 0) this.show = true;
}, },