Fix:5778 【商城小程序】【商户入驻-入驻申请须知】香道滇小程序展示的“入驻申请须知”段落格式,与香道滇后台管理系统中配置的内容格式不一致

This commit is contained in:
linxi
2026-08-17 16:18:47 +08:00
parent f20e73e859
commit f4539ccf4a
7 changed files with 79 additions and 10 deletions
+22 -2
View File
@@ -376,7 +376,8 @@ import {getCity, registerVerify} from '@/api/user'
import {
chooseImage,
uploadVideo,
uploadImage
uploadImage,
formatRichText
} from '@/utils'
import {
getShopData,
@@ -471,7 +472,7 @@ export default {
this.promoterUid = opts.promoterUid || ''
this.queryCity()
getShopData({partnerId: this.partnerId, promoterUid: this.promoterUid}).then(({data}) => {
this.notice = data.merchantApplyNotice
this.notice = formatRichText(data.merchantApplyNotice)
this.initInfo()
})
},
@@ -860,6 +861,25 @@ export default {
height: 52vh;
overflow-y: auto;
margin: 30rpx 0;
// 小程序rich-text内块级标签无默认段间距,补充与后台富文本编辑器一致的段落格式
::v-deep rich-text {
display: block;
width: 100%;
p, div, ul, ol {
display: block;
margin: 0 0 16rpx;
&:last-child {
margin-bottom: 0;
}
}
li {
margin: 0 0 8rpx;
}
}
}
.popup-body .agree-box {
margin: 60rpx 0;