lilishop-uniapp/pages/mine/help/tips.vue

57 lines
1.1 KiB
Vue
Raw Normal View History

2021-05-13 11:03:32 +08:00
<template>
<div class="wrapper">
2022-10-28 10:46:51 +08:00
<u-parse :show-with-animation="true" :lazy-load="true" :selectable="true" :html="res.content" v-if="res"></u-parse>
2021-05-13 11:03:32 +08:00
</div>
</template>
<script>
2022-10-28 10:46:51 +08:00
import { getArticleDetailByType } from "@/api/article";
2021-05-13 11:03:32 +08:00
export default {
data() {
return {
res: "",
way: {
user: {
2022-10-28 11:28:26 +08:00
title: "服务协议",
2021-05-13 11:03:32 +08:00
type: "USER_AGREEMENT",
},
privacy: {
title: "隐私政策",
type: "PRIVACY_POLICY",
},
message: {
title: "证照信息",
type: "LICENSE_INFORMATION",
},
about: {
title: "关于我们",
type: "ABOUT",
},
},
};
},
mounted() {},
onLoad(option) {
uni.setNavigationBarTitle({
title: this.way[option.type].title,
});
this.init(option);
},
methods: {
init(option) {
2022-10-28 10:46:51 +08:00
getArticleDetailByType(this.way[option.type].type).then((res) => {
2021-05-13 11:03:32 +08:00
if (res.data.success) {
this.res = res.data.result;
2022-10-28 10:46:51 +08:00
console.log(res)
2021-05-13 11:03:32 +08:00
}
});
},
},
};
</script>
<style lang="scss" scoped>
.wrapper {
padding: 16rpx;
}
</style>