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
760 B
56 lines
760 B
<template>
|
|
<view class="content">
|
|
<navigation>Rules</navigation>
|
|
<view class="p1" v-html="betting_rule">
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
betting_rule:'',
|
|
}
|
|
},
|
|
onLoad(){
|
|
|
|
|
|
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>
|
|
|