55 lines
1.1 KiB
Vue
55 lines
1.1 KiB
Vue
<template>
|
|
<view class="dics" >
|
|
<page-head text="免责声明" brF="true" navState="true" ></page-head>
|
|
<view class="title">
|
|
免责声明
|
|
</view>
|
|
<view class="text" v-html="aboutData.content">
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
aboutData:{}
|
|
}
|
|
},
|
|
created(){
|
|
this.getabout()
|
|
},
|
|
methods: {
|
|
getabout() {
|
|
this.requestToken({
|
|
url: this.host + "/api/index/statement",
|
|
type: "post",
|
|
data: {
|
|
is_gome: 0,
|
|
},
|
|
success: (res) => {
|
|
this.aboutData = res.data.data
|
|
}
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.title{
|
|
padding: 20rpx;
|
|
font-size: 32rpx;
|
|
text-align: center;
|
|
|
|
}
|
|
.text{
|
|
font-size: 30rpx;
|
|
color: #8c8c9b;
|
|
}
|
|
.dics{
|
|
padding: 0 40rpx;
|
|
}
|
|
</style>
|