红绿项目
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.
 
 
 
 

56 lines
805 B

<template>
<view class="content">
<navigation>Rules</navigation>
<view class="p1" v-html="dse">
</view>
</view>
</template>
<script>
import api from '@/utils/api'
import cont from "@/components/navigation/navigation.vue"
export default {
data() {
return {
betting_rule:'',
dse:null,
}
},
onLoad(des){
this.dse=des.des
const post2 = api.bettingConfig({
"ticket": uni.getStorageSync('logInfo').data,
})
post2.then(res => {
this.betting_rule=res.data.tips;
})
.catch(e => {
uni.showToast({
title: e,
icon: 'none',
duration: 2500
})
})
},
methods: {
}
}
</script>
<style>
.p1{
padding: 70rpx 36rpx;
}
.v-card__text p{
margin-left: 0 !important;
line-height: 60rpx !important;
}
</style>