| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <div class="wrapper">
- <div v-html="res.content"></div>
- </div>
- </template>
- <script>
- import { getArticleDetail } from "@/api/article";
- export default {
- data() {
- return {
- res: "",
- way: {
- user: {
- title: "用户协议",
- 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) {
- getArticleDetail(this.way[option.type].type).then((res) => {
- if (res.data.success) {
- this.res = res.data.result;
- }
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .wrapper {
- padding: 16rpx;
- }
- </style>
|