增加无忧保
This commit is contained in:
parent
0cf7e715a1
commit
95209fc4b4
|
@ -9,6 +9,10 @@ const apis = {
|
||||||
showLoading: true,
|
showLoading: true,
|
||||||
auth: true,
|
auth: true,
|
||||||
},
|
},
|
||||||
|
carefree: {
|
||||||
|
url: "/user/workerinfo/carefree",
|
||||||
|
auth: true,
|
||||||
|
}
|
||||||
},
|
},
|
||||||
user: {
|
user: {
|
||||||
sendCode: {
|
sendCode: {
|
||||||
|
|
|
@ -61,6 +61,12 @@
|
||||||
"navigationBarTitleText": "我的"
|
"navigationBarTitleText": "我的"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/member/carefree",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "无忧保"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/member/password",
|
"path": "pages/member/password",
|
||||||
"style": {
|
"style": {
|
||||||
|
|
|
@ -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>
|
|
@ -68,7 +68,7 @@
|
||||||
<text class="title limit-line clamp-1">我要提现</text>
|
<text class="title limit-line clamp-1">我要提现</text>
|
||||||
<text class="iconfont icon-jinru"></text>
|
<text class="iconfont icon-jinru"></text>
|
||||||
</view>
|
</view>
|
||||||
<view class="widget-item">
|
<view class="widget-item" @click="toPage('/pages/member/carefree')">
|
||||||
<text class="title limit-line clamp-1">服务无忧保</text>
|
<text class="title limit-line clamp-1">服务无忧保</text>
|
||||||
<text class="iconfont icon-jinru"></text>
|
<text class="iconfont icon-jinru"></text>
|
||||||
</view>
|
</view>
|
||||||
|
|
Loading…
Reference in New Issue