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.
61 lines
903 B
61 lines
903 B
<template>
|
|
<view class="content">
|
|
<navigation>
|
|
Recharge rules
|
|
</navigation>
|
|
<view class="arcon" v-html="rechangeRule">
|
|
</view>
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import api from '@/utils/api'
|
|
import utils from '@/utils'
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
export default{
|
|
data(){
|
|
return{
|
|
rechangeRule:''
|
|
}
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
const post2 = api.rechargeConfig({
|
|
"ticket": uni.getStorageSync('logInfo').data,
|
|
})
|
|
post2.then(res => {
|
|
this.rechangeRule=res.data.tips;
|
|
|
|
})
|
|
.catch(e => {
|
|
uni.showToast({
|
|
title: e,
|
|
icon: 'none',
|
|
duration: 2500
|
|
})
|
|
})
|
|
|
|
|
|
},
|
|
|
|
methods:{
|
|
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.arcon{
|
|
padding: 0 36rpx;
|
|
padding-top: 70rpx;
|
|
}
|
|
.record_body{
|
|
color: #303133;
|
|
line-height: 48rpx;
|
|
font-size: 28rpx;
|
|
text-transform: capitalize;
|
|
}
|
|
</style>
|
|
|