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

62 lines
1.3 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: {
2022-12-22 18:19:09 +08:00
USER_AGREEMENT: {
2022-10-28 11:28:26 +08:00
title: "服务协议",
2021-05-13 11:03:32 +08:00
type: "USER_AGREEMENT",
},
2022-12-22 18:19:09 +08:00
PRIVACY_POLICY: {
2021-05-13 11:03:32 +08:00
title: "隐私政策",
type: "PRIVACY_POLICY",
},
2022-12-22 18:19:09 +08:00
LICENSE_INFORMATION: {
2021-05-13 11:03:32 +08:00
title: "证照信息",
type: "LICENSE_INFORMATION",
},
2022-12-22 18:19:09 +08:00
ABOUT: {
2021-05-13 11:03:32 +08:00
title: "关于我们",
type: "ABOUT",
},
2023-02-16 10:53:14 +08:00
STORE_REGISTER: {
title: "店铺入驻协议",
type: "STORE_REGISTER",
},
2021-05-13 11:03:32 +08:00
},
};
},
mounted() {},
onLoad(option) {
2022-12-22 18:19:09 +08:00
console.log(this.way)
2021-05-13 11:03:32 +08:00
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>