2023-09-20 17:00:55 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view>
|
|
|
|
|
<view class="payment" :class="pay_close ? 'on' : ''">
|
|
|
|
|
<view class="title acea-row row-center-wrapper">
|
|
|
|
|
选择付款方式<text class="iconfont icon-guanbi" @click='close'></text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item acea-row row-between-wrapper" @click='goPay(item.number || 0 , item.value)'
|
2024-03-22 16:02:41 +08:00
|
|
|
|
v-for="(item,index) in payMode" v-if="item.payStatus==1" :key="index">
|
2023-09-20 17:00:55 +08:00
|
|
|
|
<view class="left acea-row row-between-wrapper">
|
|
|
|
|
<view class="iconfont" :class="item.icon"></view>
|
|
|
|
|
<view class="text">
|
|
|
|
|
<view class="name">{{item.name}}</view>
|
|
|
|
|
<view class="info" v-if="item.number">
|
|
|
|
|
{{item.title}} <span class="money">¥{{ item.number }}</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="info" v-else>{{item.title}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="iconfont icon-xiangyou"></view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="mask" ref="close" @click='close' v-if="pay_close"></view>
|
2024-03-22 16:02:41 +08:00
|
|
|
|
|
|
|
|
|
<!-- 支付密码 键盘 -->
|
|
|
|
|
<popups ref="popups" :isPay="true" @confirm="handleConfirm" @clear="handleClear" @change="handleChange" />
|
|
|
|
|
|
|
|
|
|
<!-- 密码错误事件处理 -->
|
|
|
|
|
<payPwd ref="payPwd" @left="handleLeft" @right="handleRight"></payPwd>
|
2023-09-20 17:00:55 +08:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
|
|
|
// +----------------------------------------------------------------------
|
2024-03-22 16:02:41 +08:00
|
|
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
2023-09-20 17:00:55 +08:00
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
import {
|
|
|
|
|
orderPay,
|
2024-03-22 16:02:41 +08:00
|
|
|
|
integralOrderPay,
|
|
|
|
|
presellOrderPay,
|
|
|
|
|
verifyPwd
|
2023-09-20 17:00:55 +08:00
|
|
|
|
} from '@/api/order.js';
|
2024-03-22 16:02:41 +08:00
|
|
|
|
import payPwd from "@/components/payPwd/index.vue";
|
|
|
|
|
import popups from "@/components/popups/index.vue";
|
2023-09-20 17:00:55 +08:00
|
|
|
|
export default {
|
2024-03-22 16:02:41 +08:00
|
|
|
|
components: {
|
|
|
|
|
payPwd,
|
|
|
|
|
popups
|
|
|
|
|
},
|
2023-09-20 17:00:55 +08:00
|
|
|
|
props: {
|
|
|
|
|
payMode: {
|
|
|
|
|
type: Array,
|
|
|
|
|
default: function() {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
pay_close: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
order_id: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: ''
|
|
|
|
|
},
|
|
|
|
|
totalPrice: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: '0'
|
|
|
|
|
},
|
|
|
|
|
order_type: {
|
|
|
|
|
type: Number,
|
|
|
|
|
default: 0,
|
|
|
|
|
},
|
|
|
|
|
isCall: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false
|
2024-03-22 16:02:41 +08:00
|
|
|
|
},
|
|
|
|
|
returnUrl: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: ''
|
2023-09-20 17:00:55 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2024-03-22 16:02:41 +08:00
|
|
|
|
type: ''
|
2023-09-20 17:00:55 +08:00
|
|
|
|
};
|
|
|
|
|
},
|
2024-03-22 16:02:41 +08:00
|
|
|
|
|
2023-09-20 17:00:55 +08:00
|
|
|
|
methods: {
|
|
|
|
|
close: function() {
|
|
|
|
|
this.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
goPay: function(number, paytype) {
|
|
|
|
|
if (this.isCall) {
|
|
|
|
|
return this.$emit('onChangeFun', {
|
|
|
|
|
action: 'payCheck',
|
|
|
|
|
value: paytype
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
let that = this;
|
|
|
|
|
let type = ''
|
|
|
|
|
if (paytype == 'wechat') {
|
|
|
|
|
// #ifdef H5
|
|
|
|
|
type = this.$wechat.isWeixin() ? 'weixin' : 'h5';
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
type = 'weixin';
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef MP
|
|
|
|
|
type = 'routine';
|
|
|
|
|
// #endif
|
|
|
|
|
} else if (paytype == 'balance') {
|
|
|
|
|
type = 'balance';
|
|
|
|
|
} else if (paytype == 'alipay') {
|
|
|
|
|
// #ifndef MP
|
|
|
|
|
type = 'alipay';
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef MP
|
|
|
|
|
type = 'alipayQr';
|
|
|
|
|
// #endif
|
2024-03-22 16:02:41 +08:00
|
|
|
|
} else if (paytype == 'public') {
|
|
|
|
|
type = 'public';
|
2023-09-20 17:00:55 +08:00
|
|
|
|
}
|
|
|
|
|
if (!that.order_id) return that.$util.Tips({
|
|
|
|
|
title: '请选择要支付的订单'
|
|
|
|
|
});
|
|
|
|
|
if (paytype == 'balance' && parseFloat(number) < parseFloat(that.totalPrice)) return that.$util.Tips({
|
|
|
|
|
title: '余额不足!'
|
|
|
|
|
});
|
|
|
|
|
|
2024-03-22 16:02:41 +08:00
|
|
|
|
this.type = type;
|
|
|
|
|
|
|
|
|
|
if (paytype == 'balance' || paytype == 'merBalance') {
|
|
|
|
|
this.$refs.popups.handleOpen();
|
|
|
|
|
} else {
|
|
|
|
|
uni.showLoading({
|
|
|
|
|
title: '订单支付中'
|
|
|
|
|
});
|
|
|
|
|
this.trueOrderPay();
|
|
|
|
|
}
|
|
|
|
|
},
|
2023-09-20 17:00:55 +08:00
|
|
|
|
|
2024-03-22 16:02:41 +08:00
|
|
|
|
// 输入密码回调
|
|
|
|
|
handleConfirm(e) {
|
|
|
|
|
// 验证密码是否正确
|
|
|
|
|
verifyPwd({
|
|
|
|
|
withdrawal_pwd: e
|
|
|
|
|
}).then(res => {
|
|
|
|
|
// 密码是否有效 状态码判断
|
|
|
|
|
const code = res.data.code;
|
2023-09-20 17:00:55 +08:00
|
|
|
|
|
2024-03-22 16:02:41 +08:00
|
|
|
|
if (code == 100) { //密码正确
|
|
|
|
|
uni.showLoading({
|
|
|
|
|
title: '订单支付中',
|
|
|
|
|
mask: true
|
|
|
|
|
});
|
|
|
|
|
this.trueOrderPay();
|
|
|
|
|
} else {
|
|
|
|
|
this.$refs.payPwd.handleOpen(code);
|
|
|
|
|
}
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
console.log(err)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleClear() {},
|
|
|
|
|
handleChange() {},
|
|
|
|
|
|
|
|
|
|
// 弹框左边按钮 101 未设置密码 102 忘记密码 都去设置密码
|
|
|
|
|
handleLeft(code) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: "/pages/users/user_modify_pwd/index?type=payPwd"
|
|
|
|
|
});
|
|
|
|
|
this.$refs.payPwd.handleClose();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 弹框右边按钮 取消 重试
|
|
|
|
|
handleRight(code) {
|
|
|
|
|
if (code == 101) { //取消
|
|
|
|
|
this.$refs.payPwd.handleClose(code);
|
|
|
|
|
} else {
|
|
|
|
|
this.$refs.payPwd.handleClose();
|
|
|
|
|
this.$refs.popups.handleOpen();
|
|
|
|
|
}
|
|
|
|
|
},
|
2023-09-20 17:00:55 +08:00
|
|
|
|
|
2024-03-22 16:02:41 +08:00
|
|
|
|
trueOrderPay() {
|
|
|
|
|
let that = this;
|
|
|
|
|
let orderApi = that.order_type === 1 ? presellOrderPay : that.order_type === 2 ? integralOrderPay :
|
|
|
|
|
orderPay
|
|
|
|
|
orderApi(that.order_id, {
|
|
|
|
|
type: that.type,
|
|
|
|
|
// #ifdef H5
|
|
|
|
|
return_url: that.returnUrl !== '' ? 'http://' + window.location.host + that.returnUrl :
|
|
|
|
|
'http://' + window.location.host + '/pages/users/order_list/index',
|
|
|
|
|
// #endif
|
2023-09-20 17:00:55 +08:00
|
|
|
|
}).then(res => {
|
|
|
|
|
let status = res.data.status,
|
|
|
|
|
orderId = res.data.result.order_id,
|
|
|
|
|
jsConfig = res.data.result.config,
|
|
|
|
|
callback_key = res.data.result.pay_key,
|
2024-03-22 16:02:41 +08:00
|
|
|
|
goPages = that.returnUrl ? that.returnUrl : '/pages/users/order_list/index';
|
2023-09-20 17:00:55 +08:00
|
|
|
|
switch (status) {
|
|
|
|
|
case 'ORDER_EXIST':
|
|
|
|
|
case 'EXTEND_ORDER':
|
|
|
|
|
case 'PAY_ERROR':
|
|
|
|
|
case 'error':
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
this.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: res.message
|
|
|
|
|
});
|
|
|
|
|
break;
|
|
|
|
|
case 'success':
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
this.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '支付成功',
|
|
|
|
|
icon: 'success'
|
|
|
|
|
}, {
|
|
|
|
|
tab: 5,
|
2024-03-22 16:02:41 +08:00
|
|
|
|
url: goPages + '?status=1'
|
2023-09-20 17:00:55 +08:00
|
|
|
|
});
|
|
|
|
|
break;
|
|
|
|
|
case 'alipay':
|
|
|
|
|
case 'alipayQr':
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
this.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/order_pay_back/index?keyCode=' + callback_key + '&url=' +
|
|
|
|
|
jsConfig,
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
break;
|
|
|
|
|
// #ifndef MP
|
|
|
|
|
case "wechat":
|
|
|
|
|
case "weixin":
|
|
|
|
|
case "weixinApp":
|
|
|
|
|
jsConfig.timeStamp = jsConfig.timestamp;
|
|
|
|
|
// #ifndef APP-PLUS
|
|
|
|
|
that.$wechat.pay(jsConfig).then(res => {
|
2024-03-22 16:02:41 +08:00
|
|
|
|
console.log('测试支付数据无效的success:' + res.data)
|
2023-09-20 17:00:55 +08:00
|
|
|
|
this.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '支付成功',
|
|
|
|
|
icon: 'success'
|
|
|
|
|
}, {
|
|
|
|
|
tab: 5,
|
2024-03-22 16:02:41 +08:00
|
|
|
|
url: goPages + 'status=1'
|
2023-09-20 17:00:55 +08:00
|
|
|
|
});
|
|
|
|
|
}).catch(res => {
|
2024-03-22 16:02:41 +08:00
|
|
|
|
console.log('测试支付数据无效的catch:' + res.data)
|
2023-09-20 17:00:55 +08:00
|
|
|
|
if (res.errMsg == 'chooseWXPay:cancel') {
|
|
|
|
|
if (that.isCall) {
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '取消支付'
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '取消支付'
|
|
|
|
|
}, {
|
|
|
|
|
tab: 5,
|
2024-03-22 16:02:41 +08:00
|
|
|
|
url: goPages + '?status=0'
|
2023-09-20 17:00:55 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
let mp_pay_name = ''
|
|
|
|
|
if (uni.requestOrderPayment) {
|
|
|
|
|
mp_pay_name = 'requestOrderPayment'
|
|
|
|
|
} else {
|
|
|
|
|
mp_pay_name = 'requestPayment'
|
|
|
|
|
}
|
|
|
|
|
uni[mp_pay_name]({
|
|
|
|
|
provider: 'wxpay',
|
|
|
|
|
orderInfo: jsConfig,
|
|
|
|
|
success: (e) => {
|
|
|
|
|
this.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '支付成功',
|
|
|
|
|
icon: 'success'
|
|
|
|
|
}, {
|
|
|
|
|
tab: 5,
|
2024-03-22 16:02:41 +08:00
|
|
|
|
url: goPages + 'status=1'
|
2023-09-20 17:00:55 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
fail: (e) => {
|
|
|
|
|
if (that.isCall) {
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '取消支付'
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '取消支付'
|
|
|
|
|
}, {
|
|
|
|
|
tab: 5,
|
2024-03-22 16:02:41 +08:00
|
|
|
|
url: goPages + '?status=0'
|
2023-09-20 17:00:55 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
complete: () => {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
// #endif
|
|
|
|
|
break;
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef MP
|
|
|
|
|
case "routine":
|
|
|
|
|
jsConfig.timeStamp = jsConfig.timestamp;
|
|
|
|
|
that.toPay = true;
|
|
|
|
|
let mp_pay_name = ''
|
|
|
|
|
if (uni.requestOrderPayment) {
|
|
|
|
|
mp_pay_name = 'requestOrderPayment'
|
|
|
|
|
} else {
|
|
|
|
|
mp_pay_name = 'requestPayment'
|
|
|
|
|
}
|
|
|
|
|
uni[mp_pay_name]({
|
|
|
|
|
...jsConfig,
|
|
|
|
|
success: function(res) {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
that.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
if (that.BargainId || that.combinationId || that.pinkId || that
|
|
|
|
|
.seckillId)
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '支付成功',
|
|
|
|
|
icon: 'success'
|
|
|
|
|
}, {
|
|
|
|
|
tab: 5,
|
2024-03-22 16:02:41 +08:00
|
|
|
|
url: goPages + '?status=1'
|
2023-09-20 17:00:55 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '支付成功',
|
|
|
|
|
icon: 'success'
|
|
|
|
|
}, {
|
|
|
|
|
tab: 5,
|
2024-03-22 16:02:41 +08:00
|
|
|
|
url: goPages + '?status=1'
|
2023-09-20 17:00:55 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
fail: function(e) {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
that.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '取消支付'
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
complete: function(e) {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
//关闭当前页面跳转至订单状态
|
2024-03-22 16:02:41 +08:00
|
|
|
|
if (res.errMsg == 'requestPayment:cancel') return that.$util.Tips({
|
|
|
|
|
title: '取消支付'
|
|
|
|
|
});
|
2023-09-20 17:00:55 +08:00
|
|
|
|
that.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
break;
|
|
|
|
|
// #endif
|
|
|
|
|
case "balance":
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
that.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
//余额不足
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: res.message
|
|
|
|
|
});
|
|
|
|
|
break;
|
|
|
|
|
// #ifdef H5
|
2024-03-22 16:02:41 +08:00
|
|
|
|
case "public":
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
that.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
//余额不足
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: "下单成功,请上传付款凭证!"
|
|
|
|
|
});
|
|
|
|
|
break;
|
2023-09-20 17:00:55 +08:00
|
|
|
|
case 'h5':
|
|
|
|
|
let host = window.location.protocol + "//" + window.location.host;
|
|
|
|
|
let url = `${host}/pages/order_pay_status/index?order_id=${orderId}`
|
|
|
|
|
let eUrl = encodeURIComponent(url)
|
|
|
|
|
let jsurl = jsConfig.mweb_url || jsConfig.h5_url
|
|
|
|
|
let locations = `${jsurl}&redirect_url=${eUrl}`
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
location.href = locations;
|
|
|
|
|
}, 100);
|
|
|
|
|
break;
|
|
|
|
|
// #endif
|
|
|
|
|
|
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
case 'alipayApp':
|
|
|
|
|
uni.requestPayment({
|
|
|
|
|
provider: 'alipay',
|
|
|
|
|
orderInfo: jsConfig,
|
|
|
|
|
success: (e) => {
|
|
|
|
|
that.$emit('onChangeFun', {
|
|
|
|
|
action: 'payClose'
|
|
|
|
|
});
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '支付成功',
|
|
|
|
|
icon: 'success'
|
|
|
|
|
}, {
|
|
|
|
|
tab: 5,
|
2024-03-22 16:02:41 +08:00
|
|
|
|
url: goPages + 'status=1'
|
2023-09-20 17:00:55 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
fail: (e) => {
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: '取消支付'
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
complete: () => {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
break;
|
|
|
|
|
// #endif
|
|
|
|
|
}
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
return that.$util.Tips({
|
|
|
|
|
title: err
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.payment {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-height: 600rpx;
|
|
|
|
|
border-radius: 16rpx 16rpx 0 0;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding-bottom: 60rpx;
|
2024-03-22 16:02:41 +08:00
|
|
|
|
z-index: 99;
|
2023-09-20 17:00:55 +08:00
|
|
|
|
transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
|
|
|
|
|
transform: translate3d(0, 100%, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment.on {
|
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .title {
|
|
|
|
|
text-align: center;
|
|
|
|
|
height: 123rpx;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
padding-right: 30rpx;
|
|
|
|
|
margin-left: 30rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .title .iconfont {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 30rpx;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
font-size: 43rpx;
|
|
|
|
|
color: #8a8a8a;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item {
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
height: 130rpx;
|
|
|
|
|
margin-left: 30rpx;
|
|
|
|
|
padding-right: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item .left {
|
|
|
|
|
width: 610rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item .left .text {
|
|
|
|
|
width: 540rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item .left .text .name {
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #282828;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item .left .text .info {
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item .left .text .info .money {
|
|
|
|
|
color: #ff9900;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item .left .iconfont {
|
|
|
|
|
font-size: 45rpx;
|
|
|
|
|
color: #09bb07;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item .left .iconfont.icon-zhifubao {
|
|
|
|
|
color: #00aaea;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item .left .iconfont.icon-yuezhifu {
|
|
|
|
|
color: #ff9900;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item .left .iconfont.icon-yuezhifu1 {
|
|
|
|
|
color: #eb6623;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment .item .iconfont {
|
|
|
|
|
font-size: 0.3rpx;
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
</style>
|