增加无忧保

This commit is contained in:
TOP糯米 2023-03-18 18:02:41 +08:00
parent 0cf7e715a1
commit 95209fc4b4
4 changed files with 45 additions and 1 deletions

View File

@ -9,6 +9,10 @@ const apis = {
showLoading: true,
auth: true,
},
carefree: {
url: "/user/workerinfo/carefree",
auth: true,
}
},
user: {
sendCode: {

View File

@ -61,6 +61,12 @@
"navigationBarTitleText": "我的"
}
},
{
"path": "pages/member/carefree",
"style": {
"navigationBarTitleText": "无忧保"
}
},
{
"path": "pages/member/password",
"style": {

View File

@ -0,0 +1,34 @@
<template>
<app-layout title="无忧保">
<rich-text :nodes="content"></rich-text>
</app-layout>
</template>
<script>
import AppLayout from "@/components/layout/layout";
export default {
name: "member-carefree",
data() {
return {
content: "",
};
},
components: {
AppLayout,
},
onLoad() {
this.$request({
api: "system.carefree",
}).then((response) => {
this.content = response.data.content;
});
},
onShow() {},
onReady() {},
onReachBottom() {},
onPullDownRefresh() {},
methods: {},
};
</script>
<style lang="less" scoped></style>

View File

@ -68,7 +68,7 @@
<text class="title limit-line clamp-1">我要提现</text>
<text class="iconfont icon-jinru"></text>
</view>
<view class="widget-item">
<view class="widget-item" @click="toPage('/pages/member/carefree')">
<text class="title limit-line clamp-1">服务无忧保</text>
<text class="iconfont icon-jinru"></text>
</view>