diff --git a/api/business/notice.js b/api/business/notice.js index 5c33a36..655feb5 100644 --- a/api/business/notice.js +++ b/api/business/notice.js @@ -10,6 +10,24 @@ export function getNoticeList(params) { }) } + +// 订阅查询通告列表 +export function getSubscribeList(params) { + return request({ + url: '/busi/notice/subscribeList', + method: 'get', + params: params + }) +} +// 关注查询通告列表 +export function getLoveList(params) { + return request({ + url: '/busi/notice/loveList', + method: 'get', + params: params + }) +} + // 查通告详情 export function getNoticeDetail(params) { return request({ @@ -35,4 +53,4 @@ export function closeNotice(params) { method: 'post', params: params }) -} \ No newline at end of file +} diff --git a/api/business/signCard.js b/api/business/signCard.js new file mode 100644 index 0000000..da0ea27 --- /dev/null +++ b/api/business/signCard.js @@ -0,0 +1,10 @@ +import request from '@/utils/request' + +// 关注取消关注 +export function getSignCard(params) { + return request({ + url: '/member/busiCard/getSignCard', + method: '', + params: params + }) +} diff --git a/config.js b/config.js index 990cf51..d6bf89e 100644 --- a/config.js +++ b/config.js @@ -21,7 +21,10 @@ module.exports = { }, { title: "会员协议", code: "member_agreement" - }, + }, { + title: "新人手册", + code: "new_people_text" + } ] } } \ No newline at end of file diff --git a/pages.json b/pages.json index b06a109..107721c 100644 --- a/pages.json +++ b/pages.json @@ -125,6 +125,30 @@ "navigationBarTitleText": "会员中心", "navigationStyle": "custom" } + }, + { + "path": "set/suggest", + "style": { + "navigationBarTitleText": "" + } + }, + { + "path": "set/my-suggest", + "style": { + "navigationBarTitleText": "" + } + }, + { + "path": "set/black-list", + "style": { + "navigationBarTitleText": "" + } + }, + { + "path": "set/my-info", + "style": { + "navigationBarTitleText": "" + } } ] }], diff --git a/pages/common/richview/index.vue b/pages/common/richview/index.vue index f2aa81c..93a5489 100644 --- a/pages/common/richview/index.vue +++ b/pages/common/richview/index.vue @@ -1,62 +1,74 @@ + .container { + padding-top: calc(90rpx + var(--status-bar-height)); + height: 100%; + padding-left: 20rpx; + padding-right: 20rpx; + background: white; + display: flex; + flex-direction: column; + + .body { + height: calc(100vh - var(--status-bar-height) - var(--window-bottom) - 95rpx); + overflow-y: scroll; + overflow: auto; + } + } + \ No newline at end of file diff --git a/pages/components/notice-index.vue b/pages/components/notice-index.vue index 6914a20..d386b68 100644 --- a/pages/components/notice-index.vue +++ b/pages/components/notice-index.vue @@ -70,10 +70,6 @@ - - - - @@ -189,7 +185,7 @@ pageSize: 10, //排序方式:new-最新;money-高奖励; sortBy: "", - //品牌置换--只要有值代表查品牌置换 + //品牌置换--只要有值代表查品牌置换 gift: "", platformCode: "", platformName: "平台", @@ -427,6 +423,7 @@ } else { this.dataList = this.dataList.concat(res.data.records) } + this.total = res.data.total } }).catch((e) => { this.isTriggered = false @@ -712,4 +709,4 @@ margin: 10rpx; } } - \ No newline at end of file + diff --git a/pages/components/subscribe.vue b/pages/components/subscribe.vue index af9fc23..f0631b5 100644 --- a/pages/components/subscribe.vue +++ b/pages/components/subscribe.vue @@ -32,6 +32,18 @@ - - diff --git a/pages/mine/addr/addr-detail.vue b/pages/mine/addr/addr-detail.vue index 5bdd503..896d645 100644 --- a/pages/mine/addr/addr-detail.vue +++ b/pages/mine/addr/addr-detail.vue @@ -1,5 +1,7 @@