diff --git a/pages/notice/public-notice.vue b/pages/notice/public-notice.vue
index 0d5ab6f..08321de 100644
--- a/pages/notice/public-notice.vue
+++ b/pages/notice/public-notice.vue
@@ -216,6 +216,11 @@
+
+
+ 《{{globalConfig.appInfo.agreements[1].title}}》
+
@@ -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;
}
\ No newline at end of file