2024-05-10 17:37:36 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view>
|
2024-09-23 18:01:24 +08:00
|
|
|
|
<u-navbar :custom-back="btnback" title="余额提现" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff"
|
2024-09-05 18:00:53 +08:00
|
|
|
|
title-size='36' height='50'></u-navbar>
|
2025-01-10 17:53:52 +08:00
|
|
|
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uJxwFMgIAGCxPboDkuhh" mode="" class="imgbj"></image>
|
|
|
|
|
<view class="top_box">
|
|
|
|
|
<view class="tip">账户余额(元)</view>
|
|
|
|
|
<view class="txt">
|
2025-03-05 17:41:42 +08:00
|
|
|
|
¥{{userinfo.balance == undefined ? '' : userinfo.balance}} <text style="margin-left: 20rpx;">{{'待结算(¥' + waitBonusAmount + ')'}}</text>
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</view>
|
2025-03-12 17:04:47 +08:00
|
|
|
|
<!-- <view class="tip">{{'待结算订单(' + waitBonusAmount + '笔)'}}</view> -->
|
2025-01-10 17:53:52 +08:00
|
|
|
|
<view class="tip" style="display: flex;justify-content: space-between;align-items: center;">
|
|
|
|
|
<text>累计提现:¥{{userinfo.withDrawlAmount == undefined ? '' : userinfo.withDrawlAmount}}</text>
|
|
|
|
|
<view class="jl" style="color: #8883f0;" @click="btntxrecord">
|
2024-07-29 18:03:40 +08:00
|
|
|
|
提现记录
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-01-10 17:53:52 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="cont">
|
|
|
|
|
<view class="cont_box">
|
|
|
|
|
<view class="tit">
|
|
|
|
|
<view class="" style="display: flex;">
|
|
|
|
|
<view class="tit_line" style="margin-top: 4rpx;"></view>
|
|
|
|
|
余额提现
|
|
|
|
|
</view>
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</view>
|
2025-01-10 17:53:52 +08:00
|
|
|
|
<view class="input_box">
|
|
|
|
|
<view class="yuan">
|
|
|
|
|
¥
|
|
|
|
|
</view>
|
|
|
|
|
<view class="ipt">
|
|
|
|
|
<u-input v-model="money" type="number" @input="change" placeholder='输入自定义金额'
|
|
|
|
|
placeholder-style='font-size: 24rpx;' />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="altx" @click="all()">
|
|
|
|
|
全部提现
|
2024-07-27 18:43:42 +08:00
|
|
|
|
</view>
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</view>
|
2025-01-10 17:53:52 +08:00
|
|
|
|
<view class="" style="color: red;font-size: 24rpx;padding-top: 30rpx;box-sizing: border-box;">
|
|
|
|
|
提现服务费为 ¥{{roundToTwoDecimalsTraditional(this.serviceRates)}} 最低提现金额为¥20
|
|
|
|
|
</view>
|
|
|
|
|
<view class="tit">
|
|
|
|
|
<view class="" style="display: flex;">
|
|
|
|
|
<view class="tit_line" style="margin-top: 4rpx;">
|
|
|
|
|
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</view>
|
2025-01-10 17:53:52 +08:00
|
|
|
|
提现方式
|
2024-07-30 18:02:27 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-01-10 17:53:52 +08:00
|
|
|
|
<view class="pay_type" style="width: 100%;">
|
|
|
|
|
<view class="type_box" v-if="listflag" v-for="(item,index) in txlist" :key="index"
|
|
|
|
|
@click="pay(index,item.channelId)">
|
|
|
|
|
<view class="box_left">
|
|
|
|
|
<image :src="item.picture" mode="aspectFit"></image>
|
|
|
|
|
<view class="text">
|
|
|
|
|
{{item.name}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="box_right" :class="currentindex==index?'act1':''">
|
|
|
|
|
<span v-if="currentindex==index" style="color: #fff;"> <u-icon style="margin-top: 22rpx;"
|
2025-03-12 17:04:47 +08:00
|
|
|
|
name="checkbox-mark" color="#fff" size="28"></u-icon> </span>
|
2025-01-10 17:53:52 +08:00
|
|
|
|
</view>
|
2024-07-30 18:02:27 +08:00
|
|
|
|
</view>
|
2025-01-10 17:53:52 +08:00
|
|
|
|
<view v-if="!listflag" class="wutx" style="width: 100%;margin-top: 230rpx;text-align: center;">
|
|
|
|
|
<view class="" style="font-size: 32rpx;">
|
|
|
|
|
当前暂无提现方式
|
|
|
|
|
</view>
|
|
|
|
|
<view class="addtj" @click="btnadd">
|
|
|
|
|
去添加
|
|
|
|
|
</view>
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-07-30 18:02:27 +08:00
|
|
|
|
<view class="btn" v-if="listflag" @click="sub()">
|
2024-05-10 17:37:36 +08:00
|
|
|
|
确认提现
|
|
|
|
|
</view>
|
2024-09-05 18:00:53 +08:00
|
|
|
|
<view v-if="btnmsk"
|
|
|
|
|
style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;">
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-11-26 18:02:13 +08:00
|
|
|
|
<view class="mask" v-if="tiflag"></view>
|
|
|
|
|
<view class="fengk" v-if="tiflag">
|
|
|
|
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uwaWpz06GLKG44AicEtV" mode=""></image>
|
|
|
|
|
<view class="yuany">
|
|
|
|
|
{{xzyuany}}
|
|
|
|
|
</view>
|
|
|
|
|
<view class="jief">
|
|
|
|
|
若您需要提现的话,需<span style="color: #4C97E7;">提供解除封控的材料</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="tijiao" @click="btntijiao">
|
|
|
|
|
去提交
|
|
|
|
|
</view>
|
|
|
|
|
<view class="motijiao" @click="btnnotj">
|
|
|
|
|
暂不提交
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2024-09-05 18:00:53 +08:00
|
|
|
|
btnmsk: false,
|
2024-05-10 17:37:36 +08:00
|
|
|
|
bgc: {
|
2025-01-10 17:53:52 +08:00
|
|
|
|
backgroundColor: "",
|
2024-05-10 17:37:36 +08:00
|
|
|
|
},
|
2024-09-05 18:00:53 +08:00
|
|
|
|
name: '',
|
|
|
|
|
idnum: '',
|
|
|
|
|
money: '',
|
|
|
|
|
infoList: {},
|
|
|
|
|
currentindex: -1,
|
|
|
|
|
payType: 1,
|
|
|
|
|
accountNo: '',
|
|
|
|
|
userinfo: {},
|
|
|
|
|
serviceType: '',
|
|
|
|
|
serviceRate: '',
|
|
|
|
|
serviceRates: '',
|
|
|
|
|
sjmeoey: '',
|
|
|
|
|
txlist: '',
|
|
|
|
|
channelId: '',
|
2024-11-04 18:03:49 +08:00
|
|
|
|
listflag: true,
|
2024-11-26 18:02:13 +08:00
|
|
|
|
waitBonusAmount:0,
|
|
|
|
|
tiflag:false,
|
|
|
|
|
riskId:'',
|
|
|
|
|
xzyuany:''
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
2024-07-30 18:02:27 +08:00
|
|
|
|
this.gettxlist()
|
2024-08-05 18:00:54 +08:00
|
|
|
|
// this.getfuwu()
|
2024-05-10 17:37:36 +08:00
|
|
|
|
this.getinfo()
|
|
|
|
|
this.getuserinfo()
|
|
|
|
|
},
|
2024-07-17 17:59:51 +08:00
|
|
|
|
// 分享到好友(会话)
|
2024-09-05 18:00:53 +08:00
|
|
|
|
onShareAppMessage: function() {
|
|
|
|
|
return {
|
|
|
|
|
title: '创想物联',
|
|
|
|
|
path: '/pages/shouye/index'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 分享到朋友圈
|
|
|
|
|
onShareTimeline: function() {
|
|
|
|
|
return {
|
|
|
|
|
title: '创想物联',
|
|
|
|
|
query: '',
|
|
|
|
|
path: '/pages/shouye/index'
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-05-10 17:37:36 +08:00
|
|
|
|
methods: {
|
2024-11-26 18:02:13 +08:00
|
|
|
|
// 点击去提交
|
|
|
|
|
btntijiao(){
|
|
|
|
|
this.tiflag = false
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url:'/page_fenbao/fengkong?riskid=' + this.riskId
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 点击暂不提交
|
|
|
|
|
btnnotj(){
|
|
|
|
|
this.tiflag = false
|
|
|
|
|
},
|
|
|
|
|
|
2024-07-30 18:02:27 +08:00
|
|
|
|
// 添加提现方式
|
2024-09-05 18:00:53 +08:00
|
|
|
|
btnadd() {
|
2024-07-30 18:02:27 +08:00
|
|
|
|
uni.navigateTo({
|
2024-09-05 18:00:53 +08:00
|
|
|
|
url: '/page_user/skzh'
|
2024-07-30 18:02:27 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 获取提现渠道列表
|
2024-09-05 18:00:53 +08:00
|
|
|
|
gettxlist() {
|
2024-08-02 18:00:50 +08:00
|
|
|
|
this.$u.get('/app/channel/withdraw/enabledList').then(res => {
|
2024-09-05 18:00:53 +08:00
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
if (res.data.length > 0) {
|
2024-07-30 18:02:27 +08:00
|
|
|
|
this.listflag = true
|
|
|
|
|
this.txlist = res.data
|
2024-09-05 18:00:53 +08:00
|
|
|
|
} else {
|
2024-07-30 18:02:27 +08:00
|
|
|
|
this.listflag = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-09-23 18:01:24 +08:00
|
|
|
|
btnback(){
|
|
|
|
|
uni.switchTab({
|
|
|
|
|
url:'/pages/my'
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-09-05 18:00:53 +08:00
|
|
|
|
|
|
|
|
|
change() {
|
|
|
|
|
if (this.serviceType == 2) {
|
2024-07-29 18:03:40 +08:00
|
|
|
|
this.serviceRates = this.serviceRate
|
|
|
|
|
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
|
2024-09-05 18:00:53 +08:00
|
|
|
|
} else {
|
2024-07-29 18:03:40 +08:00
|
|
|
|
let qian = this.money * this.serviceRate / 100
|
2024-09-05 18:00:53 +08:00
|
|
|
|
this.serviceRates = qian
|
2024-07-29 18:03:40 +08:00
|
|
|
|
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-07-30 18:02:27 +08:00
|
|
|
|
// 计算小数
|
2024-09-05 18:00:53 +08:00
|
|
|
|
roundToTwoDecimalsTraditional(num) {
|
|
|
|
|
return Math.round(num * 100) / 100;
|
2024-07-30 18:02:27 +08:00
|
|
|
|
},
|
2024-07-27 18:43:42 +08:00
|
|
|
|
// 跳转到提现记录
|
2024-09-05 18:00:53 +08:00
|
|
|
|
btntxrecord() {
|
2024-07-27 18:43:42 +08:00
|
|
|
|
uni.navigateTo({
|
2024-09-05 18:00:53 +08:00
|
|
|
|
url: '/page_user/txrecord'
|
2024-07-27 18:43:42 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
2024-09-05 18:00:53 +08:00
|
|
|
|
getinfo() {
|
|
|
|
|
this.$u.get('/app/account').then((res) => {
|
2024-05-10 17:37:36 +08:00
|
|
|
|
if (res.code == 200) {
|
2024-08-02 18:00:50 +08:00
|
|
|
|
this.infoList = res.data
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-09-05 18:00:53 +08:00
|
|
|
|
pay(index, id) {
|
2024-07-30 18:02:27 +08:00
|
|
|
|
this.channelId = id
|
2024-08-05 18:00:54 +08:00
|
|
|
|
this.getfuwu()
|
2024-09-05 18:00:53 +08:00
|
|
|
|
this.currentindex = index
|
2024-05-10 17:37:36 +08:00
|
|
|
|
},
|
2024-09-05 18:00:53 +08:00
|
|
|
|
all() {
|
|
|
|
|
this.money = this.userinfo.balance
|
|
|
|
|
if (this.serviceType == 2) {
|
2024-07-29 18:03:40 +08:00
|
|
|
|
this.serviceRates = this.serviceRate
|
|
|
|
|
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
|
2024-09-05 18:00:53 +08:00
|
|
|
|
} else {
|
2024-07-29 18:03:40 +08:00
|
|
|
|
let qian = this.money * this.serviceRate / 100
|
|
|
|
|
this.serviceRates = qian
|
|
|
|
|
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 获取提现服务费
|
2024-09-05 18:00:53 +08:00
|
|
|
|
getfuwu() {
|
2024-08-05 18:00:54 +08:00
|
|
|
|
this.$u.get(`/app/bill/getWithdrawService?channelId=${this.channelId}`).then((res) => {
|
2024-07-29 18:03:40 +08:00
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.serviceType = res.data.serviceType
|
|
|
|
|
this.serviceRate = res.data.serviceRate
|
2024-09-05 18:00:53 +08:00
|
|
|
|
if (this.serviceType == 2) {
|
2024-07-29 18:03:40 +08:00
|
|
|
|
this.serviceRates = this.serviceRate
|
2024-09-05 18:00:53 +08:00
|
|
|
|
} else {
|
2024-08-31 17:41:21 +08:00
|
|
|
|
// this.serviceRates = 0
|
|
|
|
|
this.serviceRates = this.serviceRate * this.money / 100
|
2024-07-29 18:03:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
2024-05-10 17:37:36 +08:00
|
|
|
|
},
|
2024-09-05 18:00:53 +08:00
|
|
|
|
sub() {
|
2024-09-13 18:02:54 +08:00
|
|
|
|
if (this.userinfo.limitWithdraw == true) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: this.userinfo.limitWithdrawReason,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
2024-09-23 18:01:24 +08:00
|
|
|
|
setTimeout(()=>{
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/page_components/shiming'
|
|
|
|
|
})
|
|
|
|
|
},1000)
|
2024-09-13 18:02:54 +08:00
|
|
|
|
}else{
|
|
|
|
|
if (this.userinfo.isReal == true) {
|
|
|
|
|
if (this.money > this.userinfo.balance) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '提现金额不能大于余额',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
2024-11-04 18:03:49 +08:00
|
|
|
|
})
|
2024-09-13 18:02:54 +08:00
|
|
|
|
} else if (this.currentindex == -1) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '请选择提现方式',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
this.btnmsk = true
|
|
|
|
|
let data = {
|
|
|
|
|
money: this.money,
|
|
|
|
|
arrivalAmount: this.roundToTwoDecimalsTraditional(Number(this.money) - Number(this
|
|
|
|
|
.roundToTwoDecimalsTraditional(this.serviceRates))),
|
|
|
|
|
serviceCharge: this.roundToTwoDecimalsTraditional(this.serviceRates),
|
|
|
|
|
channelId: this.channelId,
|
|
|
|
|
serviceRate: this.serviceRate, //服务费
|
|
|
|
|
serviceType: this.serviceType //服务费收取方式
|
2024-09-05 18:00:53 +08:00
|
|
|
|
}
|
2024-09-13 18:02:54 +08:00
|
|
|
|
this.$u.post('/app/bill/withdraw', data).then((res) => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.getuserinfo()
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '申请提现成功',
|
|
|
|
|
icon: 'success',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
this.serviceRates = 0
|
|
|
|
|
this.btnmsk = false
|
2024-09-23 18:01:24 +08:00
|
|
|
|
}else if(res.code == 10001){
|
2024-11-26 18:02:13 +08:00
|
|
|
|
this.btnmsk = false
|
2024-09-23 18:01:24 +08:00
|
|
|
|
uni.navigateTo({
|
2024-10-21 18:02:41 +08:00
|
|
|
|
url: '/page_components/shiming?type=' + 1
|
2024-09-23 18:01:24 +08:00
|
|
|
|
})
|
2024-10-21 18:02:41 +08:00
|
|
|
|
}else if(res.code == 102001){
|
2024-11-26 18:02:13 +08:00
|
|
|
|
this.tiflag = true
|
|
|
|
|
this.btnmsk = false
|
|
|
|
|
this.riskId = res.data
|
|
|
|
|
this.xzyuany = res.msg
|
2024-09-23 18:01:24 +08:00
|
|
|
|
}else {
|
2024-09-13 18:02:54 +08:00
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
this.btnmsk = false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/page_components/shiming'
|
2024-09-05 18:00:53 +08:00
|
|
|
|
})
|
|
|
|
|
}
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getuserinfo() {
|
|
|
|
|
this.$u.get("/app/user/userInfo").then((res) => {
|
|
|
|
|
if (res.code == 200) {
|
2024-09-05 18:00:53 +08:00
|
|
|
|
this.userinfo = res.data
|
2024-11-04 18:03:49 +08:00
|
|
|
|
this.waitBonusAmount = this.userinfo.waitBonusAmount
|
2024-05-24 16:48:42 +08:00
|
|
|
|
this.money = ''
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
2024-08-06 18:04:09 +08:00
|
|
|
|
})
|
2024-05-10 17:37:36 +08:00
|
|
|
|
},
|
2024-09-05 18:00:53 +08:00
|
|
|
|
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
2024-09-05 18:00:53 +08:00
|
|
|
|
<style lang="scss">
|
|
|
|
|
/deep/ .u-flex {
|
2024-08-02 18:00:50 +08:00
|
|
|
|
padding-top: 20rpx !important;
|
|
|
|
|
}
|
2024-09-05 18:00:53 +08:00
|
|
|
|
/deep/ .u-title {
|
2024-06-03 16:47:25 +08:00
|
|
|
|
padding-bottom: 22rpx;
|
2024-05-24 16:48:42 +08:00
|
|
|
|
}
|
2025-01-10 17:53:52 +08:00
|
|
|
|
|
2024-09-05 18:00:53 +08:00
|
|
|
|
/deep/ .u-icon__icon {
|
2024-06-03 16:47:25 +08:00
|
|
|
|
padding-bottom: 22rpx;
|
2024-05-24 16:48:42 +08:00
|
|
|
|
}
|
2025-01-10 17:53:52 +08:00
|
|
|
|
.imgbj{
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 552rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
}
|
2024-11-26 18:02:13 +08:00
|
|
|
|
.mask{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
opacity: .5;
|
|
|
|
|
}
|
|
|
|
|
.fengk{
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
padding: 40rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
image{
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 782rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.yuany{
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
margin-bottom: 34rpx;
|
|
|
|
|
}
|
|
|
|
|
.jief{
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
width: 670rpx;
|
|
|
|
|
margin-bottom: 82rpx;
|
|
|
|
|
}
|
|
|
|
|
.tijiao{
|
|
|
|
|
width: 670rpx;
|
|
|
|
|
height: 108rpx;
|
|
|
|
|
background: #4C97E7;
|
|
|
|
|
border-radius: 59rpx 59rpx 59rpx 59rpx;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 40rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
margin-bottom: 72rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 108rpx;
|
|
|
|
|
}
|
|
|
|
|
.motijiao{
|
|
|
|
|
width: 670rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 44rpx;
|
|
|
|
|
color: #4C97E7;
|
|
|
|
|
margin-bottom: 40rpx;
|
|
|
|
|
}
|
|
|
|
|
.yuany,
|
|
|
|
|
.jief,
|
|
|
|
|
.motijiao,
|
|
|
|
|
.tijiao{
|
|
|
|
|
z-index: 99 !important;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-05 18:00:53 +08:00
|
|
|
|
page {
|
2025-01-10 17:53:52 +08:00
|
|
|
|
background: #fff;
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
2024-09-05 18:00:53 +08:00
|
|
|
|
.addtj {
|
|
|
|
|
margin-top: 44rpx;
|
|
|
|
|
width: 646rpx;
|
|
|
|
|
height: 88rpx;
|
|
|
|
|
background: #E4E3FB;
|
|
|
|
|
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
|
|
|
|
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 88rpx;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #8883F0;
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
2025-01-10 17:53:52 +08:00
|
|
|
|
.top_box {
|
2025-03-12 17:04:47 +08:00
|
|
|
|
padding: 28rpx 32rpx;
|
|
|
|
|
margin: auto;
|
|
|
|
|
margin-top: 38rpx;
|
|
|
|
|
width: 634rpx;
|
|
|
|
|
height: 246rpx;
|
|
|
|
|
border-radius: 28rpx 28rpx 28rpx 28rpx;
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
.tip {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
line-height: 38rpx;
|
|
|
|
|
.jl{
|
|
|
|
|
width: 190rpx;
|
|
|
|
|
height: 62rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 31rpx 31rpx 31rpx 31rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 62rpx;
|
|
|
|
|
color: #8883F0;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
}
|
2025-03-12 17:04:47 +08:00
|
|
|
|
}
|
|
|
|
|
.txt {
|
|
|
|
|
margin-top: 14rpx;
|
|
|
|
|
margin-bottom: 14rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 40rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
line-height: 54rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-01-10 17:53:52 +08:00
|
|
|
|
.cont {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
margin-top: 26rpx;
|
|
|
|
|
border-radius: 50rpx 50rpx 0 0;
|
|
|
|
|
padding: 54rpx 56rpx;
|
|
|
|
|
box-sizing: border-box;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
.tit {
|
|
|
|
|
margin-top: 38rpx;
|
2024-05-10 17:37:36 +08:00
|
|
|
|
display: flex;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
flex-wrap: nowrap;
|
2024-05-10 17:37:36 +08:00
|
|
|
|
align-items: center;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
font-weight: 500;
|
2024-05-10 17:37:36 +08:00
|
|
|
|
font-size: 28rpx;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
color: #3D3D3D;
|
2024-05-10 17:37:36 +08:00
|
|
|
|
line-height: 38rpx;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2024-05-10 17:37:36 +08:00
|
|
|
|
width: 100%;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
.tit_line {
|
|
|
|
|
margin-right: 12rpx;
|
2025-01-10 17:53:52 +08:00
|
|
|
|
width: 8rpx;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
height: 32rpx;
|
|
|
|
|
background: #8883F0;
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
.input_box {
|
2024-05-10 17:37:36 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
align-items: center;
|
|
|
|
|
margin-top: 36rpx;
|
2024-05-10 17:37:36 +08:00
|
|
|
|
width: 634rpx;
|
|
|
|
|
height: 86rpx;
|
2025-01-10 17:53:52 +08:00
|
|
|
|
background: #F4F4F4;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
2024-05-10 17:37:36 +08:00
|
|
|
|
border-radius: 20rpx;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
.yuan {
|
|
|
|
|
margin-left: 36rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 52rpx;
|
|
|
|
|
color: #8883F0;
|
|
|
|
|
line-height: 72rpx;
|
|
|
|
|
}
|
|
|
|
|
.ipt {
|
|
|
|
|
width: 60%;
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
2024-09-05 18:00:53 +08:00
|
|
|
|
.altx {
|
2024-05-10 17:37:36 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2024-09-05 18:00:53 +08:00
|
|
|
|
width: 158rpx;
|
|
|
|
|
height: 56rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0, 0, 0, 0.2);
|
|
|
|
|
border-radius: 12rpx 12rpx 12rpx 12rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #8883F0;
|
|
|
|
|
line-height: 38rpx;
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
2024-09-05 18:00:53 +08:00
|
|
|
|
}
|
|
|
|
|
.pay_type {
|
|
|
|
|
.type_box {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-top: 26rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
width: 634rpx;
|
|
|
|
|
height: 86rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
.box_left {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
margin-left: 22rpx;
|
|
|
|
|
image {
|
|
|
|
|
width: 50rpx;
|
|
|
|
|
height: 50rpx;
|
|
|
|
|
}
|
|
|
|
|
.text {
|
|
|
|
|
margin-left: 30rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
line-height: 44rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.box_right {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: 34rpx;
|
|
|
|
|
width: 44rpx;
|
|
|
|
|
height: 44rpx;
|
|
|
|
|
border: 2rpx solid #444444;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
.act1 {
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
background-color: #8883F0;
|
|
|
|
|
}
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-05 18:00:53 +08:00
|
|
|
|
.btn {
|
|
|
|
|
margin-left: 20rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-top: 218rpx;
|
|
|
|
|
width: 590rpx;
|
|
|
|
|
height: 84rpx;
|
|
|
|
|
background: #8883f0;
|
|
|
|
|
border-radius: 40rpx;
|
|
|
|
|
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
2024-05-10 17:37:36 +08:00
|
|
|
|
}
|
2024-11-04 18:03:49 +08:00
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|