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.
65 lines
1.1 KiB
65 lines
1.1 KiB
<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() {
|
|
|
|
uni.request({
|
|
url: '/start/api/recharge/rechargeConfig',
|
|
data: {
|
|
"ticket": uni.getStorageSync('logInfo').data,
|
|
},
|
|
header: {
|
|
'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8' //自定义请求头信息
|
|
},
|
|
method: 'POST', //请求方式 或GET,必须为大写
|
|
success: (res) => {
|
|
this.rechangeRule=res.data.data.tips;
|
|
|
|
|
|
},
|
|
fail: (res) => {
|
|
|
|
console.log(res.data);
|
|
}
|
|
});
|
|
|
|
|
|
},
|
|
methods:{
|
|
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.arcon{
|
|
padding: 0 36rpx;
|
|
padding-top: 70rpx;
|
|
}
|
|
.record_body{
|
|
color: #303133FF;
|
|
line-height: 48rpx;
|
|
font-size: 28rpx;
|
|
text-transform: capitalize;
|
|
}
|
|
</style>
|
|
|