You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
920 B
62 lines
920 B
<template>
|
|
<view class="content">
|
|
<navigation>
|
|
Risk Disclosure AGREEMENT
|
|
</navigation>
|
|
<view class="arcon" v-html="cont">
|
|
|
|
</view>
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import api from '@/utils/api'
|
|
import utils from '@/utils'
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
export default{
|
|
data(){
|
|
return{
|
|
cont:''
|
|
}
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
this.getText();
|
|
|
|
|
|
},
|
|
methods:{
|
|
getText(){
|
|
const post = api.article({
|
|
"mark":'agreement_betting_risk',
|
|
})
|
|
post.then(res => {
|
|
this.cont=res.data.content;
|
|
})
|
|
.catch(e => {
|
|
uni.showToast({
|
|
title: e,
|
|
icon: 'none',
|
|
duration: 2500
|
|
})
|
|
})
|
|
}
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.arcon{
|
|
padding: 0 36rpx;
|
|
padding-top: 70rpx;
|
|
}
|
|
.record_body{
|
|
color: #303133;
|
|
line-height: 48rpx;
|
|
font-size: 28rpx;
|
|
text-transform: capitalize;
|
|
}
|
|
</style>
|
|
|