diff --git a/page_user/about.vue b/page_user/about.vue index 27033f8..67fe4b4 100644 --- a/page_user/about.vue +++ b/page_user/about.vue @@ -27,7 +27,14 @@ }, methods: { getabout(){ - let type = 'about' + let type = '' + if(this.tit == '用户协议'){ + type = 'user' + }else if(this.tit == '隐私政策'){ + type = 'privacy' + }else if(this.tit == '关于我们'){ + type = 'about' + } this.$u.get(`/app/article/licence/${type}`).then((res) => { if (res.code == 200) { this.obj= res.data @@ -40,7 +47,7 @@