parent
b3aea6dd9f
commit
9f7ad9a1cf
@ -1,60 +1,52 @@ |
||||
<template> |
||||
<view> |
||||
<view class="title">{{title}}</view> |
||||
<view class="con">用户服务协议用户服务协议用户服务协议用户服务协议用户服务协议用户服务协议用户服务协议用户服务协议用户服务协议用户服务协议用户服务协议用户服务协议用户服务协议用户服务协议</view> |
||||
<view> |
||||
<view class="con">{{ content }}</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script> |
||||
import * as feedback from '@/api/feedback' |
||||
import * as help from '@/api/help' |
||||
export default { |
||||
data() { |
||||
return { |
||||
title:'用户协议' |
||||
pageFlag: 1, |
||||
content: '' |
||||
}; |
||||
}, |
||||
onShow() { |
||||
this.getShopList() |
||||
this.getTextData() |
||||
}, |
||||
onLoad(params) { |
||||
|
||||
let that = this |
||||
that.pageFlag = params.pageFlag |
||||
uni.setNavigationBarTitle({ |
||||
title: that.pageFlag == 1 ? '用户服务协议' : that.pageFlag == 2 ? '隐私政策' : '关于我们' |
||||
}) |
||||
}, |
||||
methods: { |
||||
getShopList() { |
||||
|
||||
const that = this |
||||
// that.shopList = [] |
||||
// return new Promise((resolve, reject) => { |
||||
// feedback.shopList() |
||||
// .then(res => { |
||||
// if (res.data.length > 0) { |
||||
// for (var i = 0; i < res.data.length; i++) { |
||||
// let obj = { |
||||
// text: res.data[i].shop_name, |
||||
// id: res.data[i].shop_id |
||||
// } |
||||
// that.shopList.push(obj) |
||||
// } |
||||
// } |
||||
// }) |
||||
// .catch(reject) |
||||
// }) |
||||
async getTextData() { |
||||
uni.showLoading({ |
||||
title: "加载中" |
||||
}) |
||||
let typeVal = this.pageFlag == 1 ? 'user' : this.pageFlag == 2 ? 'policy' : 'about' |
||||
let { |
||||
status, |
||||
data |
||||
} = await help.getAgreement({ type: typeVal }); |
||||
if (status == 200) { |
||||
uni.hideLoading(); |
||||
this.content = data.detail.content |
||||
} |
||||
}, |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.title{ |
||||
font-size: 30rpxrpx; |
||||
font-weight: bold; |
||||
text-align: center; |
||||
margin: 10rpx 20rpx; |
||||
} |
||||
.con{ |
||||
<style scoped lang="scss"> |
||||
|
||||
.con { |
||||
font-size: 28rpx; |
||||
padding: 0 40rpx 40rpx; |
||||
padding: 20rpx 40rpx 40rpx; |
||||
line-height: 28px; |
||||
} |
||||
|
||||
} |
||||
</style> |
||||
|
Loading…
Reference in new issue