This commit is contained in:
Vinjor 2025-04-11 15:15:00 +08:00
parent ddcc1d4012
commit 28b2dafa5a

View File

@ -216,6 +216,11 @@
</view>
</view>
</view>
<view class="line-row-bottom">
<uni-data-checkbox @change="chooseBoxFun($event,'isRead')" multiple :localdata="readBookList" />
<text @click="handleUserAgrement(globalConfig.appInfo.agreements[1])"
class="text-red">{{globalConfig.appInfo.agreements[1].title}}</text>
</view>
</view>
</view>
<view class="dl-bottom-box">
@ -258,6 +263,7 @@
return {
//
showNum: 4,
globalConfig: getApp().globalData.config,
//
bloggerTypeList: [],
//
@ -280,6 +286,7 @@
sort: 2
}],
dataObj: {
isRead: false,
title: "",
brand: "",
platformCode: "",
@ -313,6 +320,10 @@
text: '不公开联系方式,我会自己联系博主',
value: true
}],
readBookList: [{
text: '我已阅读并同意',
value: true
}],
//
ifHasRange: [{
value: false,
@ -341,6 +352,10 @@
this.initData("dl_blogger_type", "bloggerTypeList")
},
methods: {
//
handleUserAgrement(site) {
this.$tab.navigateTo(`/pages/common/richview/index?title=${site.title}&code=${site.code}`)
},
/**
* 添加字段
*/
@ -803,5 +818,21 @@
justify-content: center;
}
}
.line-row-bottom {
width: 100%;
margin-top: 20rpx;
display: flex;
align-items: center;
justify-content: center;
.text-red {
color: #FC1F3E;
}
}
}
.checklist-box {
margin-right: 0 !important;
}
</style>