768 lines
18 KiB
Vue
768 lines
18 KiB
Vue
<template>
|
||
<view>
|
||
<!-- 公共组件-每个页面必须引入 -->
|
||
<public-module></public-module>
|
||
<z-nav-bar title="充值"></z-nav-bar>
|
||
<view class="cha_jine">
|
||
<view class="cj_title">充值金额</view>
|
||
<view class="cj_xiang">
|
||
<view v-for="(item, index) in cjList" @click="chosPric(item)"
|
||
:class="stepsCj.priceTypeId == item.priceTypeId?'Tab_cj cj_price':'cj_price'">
|
||
<view class="pr_jg">¥{{item.realMoney}}</view>
|
||
<view class="pr_yl">{{item.money}} 天医币</view>
|
||
<view class="pr_lj">限时特惠</view>
|
||
</view>
|
||
<br clear="both">
|
||
</view>
|
||
</view>
|
||
<view class="cha_fangsh">
|
||
<view class="cf_title">支付方式</view>
|
||
|
||
<view class="cf_radio">
|
||
<u-radio-group v-model="payType">
|
||
|
||
<view style="width: 100%;" v-if="isAndroid">
|
||
<view v-for="(item, index) in paylist" :key="index" @click="choseType(item.id)"
|
||
:class="payType == item.id?'Tab_xf cf_xuanx':'cf_xuanx'">
|
||
<image :src="item.img"></image>
|
||
{{item.title}}
|
||
<u-radio :key="index" activeColor="#fe6e09" :name='item.id'
|
||
style="float: right;margin-top: 5rpx;"></u-radio>
|
||
|
||
</view>
|
||
</view>
|
||
|
||
<view style="width: 100%;" v-else>
|
||
<view v-for="(item, index) in iosPaylist" @click="choseType(item.id)"
|
||
:class="payType == item.id?'Tab_xf cf_xuanx':'cf_xuanx'">
|
||
<image :src="item.img"></image>
|
||
{{item.title}}
|
||
<u-radio :key="index" activeColor="#fe6e09" :name='item.id'
|
||
style="float: right;margin-top: 5rpx;"></u-radio>
|
||
|
||
</view>
|
||
</view>
|
||
|
||
</u-radio-group>
|
||
</view>
|
||
</view>
|
||
<view class="agree_wo flexbox" style="float: left; display: flex;">
|
||
<radio-group class="agree">
|
||
<view v-for="(item, index) in argee" :key="index">
|
||
<radio class="agreeRadio" :value="item.id" :checked="item.id==radioValue"
|
||
@click="radioCheck(index)"></radio>
|
||
|
||
</view>
|
||
</radio-group>
|
||
<view>* 我已阅读并同意<span class="highlight" @click="showXieyi">《增值服务协议》</span></view>
|
||
</view>
|
||
<view class="char_btn">
|
||
|
||
<view @click="goToPay">立即充值</view>
|
||
|
||
<!-- <view @click="iosPay" >立即充值</view> -->
|
||
|
||
</view>
|
||
<!-- 充值协议 -->
|
||
<u-popup :show="xieyiShow" :round="10" @close="xieyiShow=false">
|
||
<view class="tanchu">
|
||
<view class="dp_title">{{xieyi.title}}</view>
|
||
<view style="max-height: 1000rpx;overflow-y: scroll;">
|
||
<view v-html="xieyi.content"></view>
|
||
</view>
|
||
</view>
|
||
</u-popup>
|
||
<music-play :playData="playData"></music-play>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import musicPlay from '@/components/music.vue'
|
||
import $http from '@/config/requestConfig.js';
|
||
import {
|
||
checkIapOrder
|
||
} from '@/store/modules/common.js';
|
||
// import { // 引入ios支付
|
||
// Iap,
|
||
// IapTransactionState
|
||
// } from "@/utils/iap.js"
|
||
import {
|
||
mapState,mapMutations
|
||
} from 'vuex';
|
||
import {
|
||
setPay,
|
||
setPayAssign,setWXPay
|
||
} from '@/config/utils';
|
||
// const IAPOrders = [ // 根据这些ids获取到苹果app内商品信息,这些ids就是你上面设置的产品id
|
||
// 'add69'
|
||
// ]
|
||
export default {
|
||
data() {
|
||
return {
|
||
playData:{},
|
||
xieyi: {
|
||
title: '',
|
||
content: ''
|
||
},
|
||
chargeOrderSn:'', // 通过query传过来的orderSN(二次支付情况)
|
||
xieyiShow: false,
|
||
stepsCj: {},
|
||
cjList: [],
|
||
argee: [{
|
||
value: false,
|
||
id: '1'
|
||
}
|
||
|
||
], // 同意权限
|
||
radioValue: '',
|
||
orderSn: '', // 订单sn
|
||
productid: '',
|
||
isAndroid: true, // 是否为安卓环境
|
||
|
||
payType: 2,
|
||
// #ifdef APP-IOS
|
||
payType: 3,
|
||
// #endif
|
||
paylist: [{
|
||
title: '支付宝',
|
||
id: 2,
|
||
img: '../../static/icon/pay_1.png'
|
||
},
|
||
{
|
||
title: '微信',
|
||
id: 1,
|
||
img: '../../static/icon/pay_2.png'
|
||
}
|
||
],
|
||
iosPaylist: [{
|
||
title: 'apple pay支付',
|
||
id: 3,
|
||
img: '../../static/icon/pay_2.png'
|
||
}],
|
||
transaction: { // 成功回调
|
||
|
||
},
|
||
};
|
||
},
|
||
//第一次加载
|
||
onLoad(e) {
|
||
// 隐藏原生的tabbar
|
||
uni.hideTabBar();
|
||
this.chargeOrderSn = e.orderSn
|
||
// console.log(e.orderSn,'orderSn')
|
||
},
|
||
//页面显示
|
||
onShow() {
|
||
// 隐藏原生的tabbar
|
||
// this.iphonepay()
|
||
uni.hideTabBar();
|
||
this.getDevName()
|
||
// setTimeout(()=>{
|
||
// uni.navigateTo({
|
||
// url:'/pages/user/persCount'
|
||
// })
|
||
// },2000)
|
||
},
|
||
computed: {
|
||
...mapState(['userInfo']),
|
||
},
|
||
components:{
|
||
musicPlay
|
||
},
|
||
//方法
|
||
methods: {
|
||
...mapMutations(['setUserInfo']),
|
||
// 关闭交易订单
|
||
finishTransaction(trans){
|
||
this.iapChannel.finishTransaction(trans, (success) => {
|
||
console.log('关闭订单成功');
|
||
this.setUserInfo({restoreFlag:false});
|
||
}, (fail) => {
|
||
console.log('关闭订单失败');
|
||
});
|
||
},
|
||
showXieyi() {
|
||
$http.request({
|
||
url: "/sys/agreement/getAgreement",
|
||
method: "POST", // POST、GET、PUT、DELETE,具体说明查看官方文档
|
||
data: {
|
||
"id": 106
|
||
},
|
||
header: { //默认 无 说明:请求头
|
||
'Content-Type': 'application/json'
|
||
},
|
||
}).then(res => {
|
||
if (res.code == 0) {
|
||
this.xieyi = res.agreement
|
||
this.xieyiShow = true
|
||
}
|
||
}).catch(e => {
|
||
console.log(e)
|
||
})
|
||
|
||
},
|
||
radioCheck(index) { // 勾选用户协议
|
||
this.argee.forEach((item => {
|
||
item.isCheck = false
|
||
}))
|
||
if (this.radioValue == this.argee[index].id) {
|
||
this.radioValue = null
|
||
} else {
|
||
this.radioValue = this.argee[index].id
|
||
}
|
||
// console.log(this.radioValue)
|
||
},
|
||
iphonepay() {
|
||
const that = this
|
||
// 如果ios已经绑定支付信息,就直接支付,如果没有绑定,就需要先绑定
|
||
console.log('检测支付环境...')
|
||
plus.payment.getChannels((channels) => {
|
||
console.log(channels, 'channels')
|
||
for (var i in channels) {
|
||
// 判断是否苹果支付1
|
||
if (channels[i].id === 'appleiap') {
|
||
that.iapChannel = channels[i]
|
||
that.requestOrder()
|
||
}
|
||
}
|
||
})
|
||
|
||
},
|
||
requestOrder() {
|
||
uni.showLoading({
|
||
title: '获取商品信息',
|
||
mask: true
|
||
})
|
||
const that = this
|
||
console.log(that.stepsCj.priceTypeId, 88888888)
|
||
// ['xxxxx'] 是平台申请拿到的内购商品的id
|
||
let IAPOrders = []
|
||
IAPOrders.push(that.stepsCj.priceTypeId+'')
|
||
console.log(IAPOrders, 'IAPOrders')
|
||
// 新建订单
|
||
that.iapChannel.requestOrder(IAPOrders, function(event) {
|
||
// uni.hideLoading()
|
||
console.log(event, 'event')
|
||
for (var index in event) {
|
||
var OrderItem = event[index]
|
||
// console.log(OrderItem, 'OrderItem')
|
||
console.log(OrderItem.productid,'OrderItem.productid')
|
||
that.topay(OrderItem.productid)
|
||
}
|
||
}, function(erroemsg) {
|
||
uni.showToast({
|
||
title: "商品获取失败",
|
||
icon: 'none'
|
||
})
|
||
})
|
||
},
|
||
topay(id) {
|
||
const that = this
|
||
uni.hideLoading()
|
||
// if(this.chargeOrderSn != '' || this.chargeOrderSn != undefined){ // 判断是不是二次支付的订单
|
||
// that.orderSn = this.chargeOrderSn
|
||
// console.log(that.orderSn,'二次支付的订单号')
|
||
// }
|
||
// var restoreFlag = true; // 调用支付接口时标记 restoreFlag = true , 实际应用请将标记存储在 storage 中
|
||
this.setUserInfo({restoreFlag:true});
|
||
console.log(this.userInfo,'更新后的用户信息')
|
||
plus.payment.request(that.iapChannel, {
|
||
productid: id,
|
||
username: that.orderSn, // 用户标识/订单标识
|
||
manualFinishTransaction: true // 3.5.1+ 支持,设置此参数后需要开发者主动关闭订单,参见下面的关闭订单方法 finishTransaction()
|
||
|
||
}, function(result) {
|
||
// restoreFlag = false; // 支付成功清除标记 restoreFlag = false
|
||
that.transaction = result
|
||
// 支付成功,result 为 IAP商品交易信息对象 IAPTransaction 需将返回的支付凭证传给后端进行二次认证
|
||
that.iapCheck(result)
|
||
}, function(e) {
|
||
console.log('错误回调', e)
|
||
if(e.errCode == 2){
|
||
// 用户未绑定支付方式,app内支付流程结束,系统弹出框引导用户绑定支付方式,此过程将跳转到系统应用 AppStore 进行绑定支付方式,绑定成功同步支付成功,用户成功付款
|
||
plus.runtime.openURL("https://apps.apple.com/account/billing");
|
||
}else{
|
||
// restoreFlag = false; // 支付失败清楚标记
|
||
that.finishTransaction(result);
|
||
//console.log('订单关闭后的用户信息', that.userInfo);
|
||
console.log(e)
|
||
//console.log(e.message)
|
||
}
|
||
});
|
||
},
|
||
iapCheck(result) {
|
||
let that = this
|
||
console.log('进入后台验证')
|
||
let data = {
|
||
transactionId: result.transactionIdentifier, // 支付交易id
|
||
customerOid: that.userInfo.id,
|
||
productId: result.payment.productid, // 产品id
|
||
orderId: result.payment.username, // 系统订单号
|
||
receiptData: result.transactionReceipt ,// 苹果返回收据
|
||
// body: that.stepsCj.priceTypeId // 充值类型id
|
||
}
|
||
console.log(data,'data')
|
||
$http.request({
|
||
url: "/Ipa/veri",
|
||
method: "POST", // POST、GET、PUT、DELETE,具体说明查看官方文档
|
||
data,
|
||
header: { //默认 无 说明:请求头
|
||
'Content-Type': 'application/json'
|
||
},
|
||
}).then(res => {
|
||
console.log(JSON.stringify(res))
|
||
if(res.code == 0){
|
||
//uni.hideLoading()
|
||
that.userInfo.restoreFlag == true ? that.setUserInfo({restoreFlag:false}) : ''
|
||
console.log(that.userInfo.restoreFlag)
|
||
console.log('充值订单已处理,请留意账户金额变动....')
|
||
// 服务器验证票据有效后在客户端关闭订单 (iapChannel.finishTransaction)
|
||
that.finishTransaction(result);
|
||
}
|
||
}).catch(e => {
|
||
uni.showModal({
|
||
title: '提示',
|
||
showCancel:false,
|
||
content: '支付验证失败,请稍后重启app,如不能解决您的问题,可联系官方客服',
|
||
success: function (res) {
|
||
if (res.confirm) {
|
||
console.log('用户点击确定');
|
||
}
|
||
}
|
||
});
|
||
})
|
||
},
|
||
getDevName() {
|
||
// 获取使用环境
|
||
if (uni.getSystemInfoSync().platform === 'android') {
|
||
this.isAndroid = true
|
||
// console.log('运行Android上')
|
||
} else {
|
||
this.isAndroid = false
|
||
// console.log('运行iOS上')
|
||
}
|
||
this.getData();
|
||
},
|
||
// 获取充值金额
|
||
getData() {
|
||
// console.log(this.isAndroid)
|
||
if(this.isAndroid){
|
||
this.getAndorList()
|
||
}else{
|
||
this.getAppleList()
|
||
}
|
||
|
||
},
|
||
// 安卓充值列表
|
||
getAndorList(){
|
||
this.$http
|
||
.post('book/bookbuyconfig/getVipOrPoint', {
|
||
type: 'point',
|
||
qudao: 'Android'
|
||
})
|
||
.then(res => {
|
||
this.cjList = res.list
|
||
this.stepsCj = res.list[0]
|
||
});
|
||
},
|
||
// 苹果充值列表
|
||
getAppleList(){
|
||
this.$http
|
||
.post('book/bookbuyconfig/getVipOrPoint', {
|
||
type: 'point',
|
||
qudao: 'IOS'
|
||
})
|
||
.then(res => {
|
||
this.cjList = res.list
|
||
this.stepsCj = res.list[0]
|
||
});
|
||
},
|
||
// 点击充值金额
|
||
chosPric(e) {
|
||
this.stepsCj = e
|
||
console.log(e)
|
||
},
|
||
|
||
// 选择支付方式1
|
||
choseType(e) {
|
||
let that = this
|
||
that.payType = e
|
||
},
|
||
//ios充值
|
||
iosPay() {
|
||
this.iphonepay()
|
||
},
|
||
// 充值
|
||
goToPay(){
|
||
this.kaiChar()
|
||
},
|
||
// 正常充值
|
||
kaiChar() { // 常规充值
|
||
if (this.radioValue == '1') {
|
||
uni.showLoading({
|
||
title: '支付中,请勿离开',
|
||
icon: 'loading'
|
||
})
|
||
let that = this
|
||
let data = {
|
||
userId: that.userInfo.id, //下单人ID
|
||
userPhone: that.userInfo.tel, //收货人手机号
|
||
paymentMethod: that.payType, //2支付宝,1微信,3ios内购
|
||
orderMoney: that.stepsCj.money * 1, //订单金额
|
||
districtMoney: 0, //优惠金额
|
||
realMoney: that.stepsCj.money * 1, //实收金额
|
||
orderStatus: 0, //订单状态
|
||
orderType: "point", //订单类型
|
||
productId: that.stepsCj.priceTypeId // 充值的类型id
|
||
}
|
||
$http.request({
|
||
url: "book/buyOrder/rechargeSave",
|
||
method: "POST", // POST、GET、PUT、DELETE,具体说明查看官方文档
|
||
data,
|
||
header: { //默认 无 说明:请求头1
|
||
'Content-Type': 'application/json'
|
||
},
|
||
}).then(res => {
|
||
that.orderSn = res.orderSn
|
||
uni.hideLoading()
|
||
if (res.code == 0) {
|
||
if (that.payType == 2) {
|
||
setPay({
|
||
typePay: 'alipay',
|
||
subject: 'point',
|
||
totalAmount: that.stepsCj.money,
|
||
type: that.payType,
|
||
relevanceoid: res.orderSn,
|
||
body: that.stepsCj.priceTypeId,
|
||
}, res => {
|
||
if (res.success) {
|
||
uni.showToast({
|
||
title: "支付成功"
|
||
});
|
||
setTimeout(()=>{
|
||
uni.navigateTo({
|
||
url:'/pages/user/persCount'
|
||
})
|
||
},2000)
|
||
} else {
|
||
uni.showToast({
|
||
title: "支付失败",
|
||
icon: "none",
|
||
image: '../../static/icon/ic_close.png'
|
||
});
|
||
}
|
||
})
|
||
} else if (that.payType == 1) {
|
||
// 微信支付
|
||
that.orderSn = res.orderSn
|
||
let data1={
|
||
orderSn:that.orderSn,
|
||
buyOrderId: that.stepsCj.priceTypeId,
|
||
totalAmount: that.stepsCj.money
|
||
}
|
||
console.log(data1,'data1')
|
||
// console.log(this.userInfo.channelList,'channelList')
|
||
// this.userInfo.channelList.map(item => {
|
||
// if(item.id == "wxpay"){
|
||
// console.log('支持微信支付')
|
||
setWXPay(data1,res => {
|
||
if (res.success) {
|
||
uni.showToast({
|
||
title: "支付成功"
|
||
});
|
||
setTimeout(()=>{
|
||
uni.navigateTo({
|
||
url:'/pages/user/persCount'
|
||
})
|
||
},2000)
|
||
} else {
|
||
console.log(res)
|
||
if(res.data.errMsg.indexOf('User canceled') != -1){
|
||
uni.showToast({
|
||
title: "用户取消支付",
|
||
icon: "none",
|
||
image: '../../static/icon/ic_close.png'
|
||
});
|
||
}else{
|
||
uni.showToast({
|
||
title: "支付失败",
|
||
icon: "none",
|
||
image: '../../static/icon/ic_close.png'
|
||
});
|
||
}
|
||
}
|
||
})
|
||
// }
|
||
// })
|
||
|
||
} else if (that.payType == 3) {
|
||
console.log('苹果支付', )
|
||
that.iosPay()
|
||
}
|
||
}
|
||
})
|
||
|
||
} else {
|
||
uni.showToast({
|
||
title: '请勾选 已阅读会员服务协议',
|
||
icon: 'none'
|
||
})
|
||
return false
|
||
}
|
||
|
||
|
||
},
|
||
// 跳转
|
||
onPageJump(url) {
|
||
uni.navigateTo({
|
||
url: url
|
||
});
|
||
},
|
||
|
||
},
|
||
|
||
};
|
||
</script>
|
||
<style lang="scss" scoped>
|
||
@import '@/style/mixin.scss';
|
||
|
||
.tanchu {
|
||
padding: 40rpx 30rpx 40rpx 30rpx;
|
||
position: relative;
|
||
|
||
|
||
.dp_title {
|
||
font-size: 32rpx;
|
||
margin-bottom: 50rpx;
|
||
color: #555;
|
||
text-align: center;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.dp_add {
|
||
position: absolute;
|
||
top: 40rpx;
|
||
right: 30rpx;
|
||
font-size: 22rpx;
|
||
background-color: #fd6004;
|
||
color: #fff;
|
||
border-radius: 10rpx;
|
||
padding: 5rpx 10rpx;
|
||
|
||
.u-icon {
|
||
display: inline-block;
|
||
margin-right: 5rpx;
|
||
}
|
||
}
|
||
|
||
.addressItem {
|
||
border: 2px dashed #d9d9d9;
|
||
border-radius: 10rpx;
|
||
width: 100%;
|
||
display: flex;
|
||
padding: 20rpx 10rpx;
|
||
margin: 25rpx 0 0 0;
|
||
align-items: center;
|
||
background-color: #fff;
|
||
|
||
.addrContent {
|
||
margin-left: 40rpx;
|
||
flex: 1;
|
||
|
||
.addrContentTop {
|
||
display: flex;
|
||
align-items: flex-end;
|
||
margin: 0 0 15rpx 0;
|
||
position: relative;
|
||
|
||
.userName {
|
||
font-size: 35rpx;
|
||
font-weight: bold;
|
||
margin-right: 30rpx;
|
||
}
|
||
|
||
.userTel {
|
||
font-size: 25rpx;
|
||
color: #888;
|
||
}
|
||
|
||
.userMoren {
|
||
border: 1px solid #fd6004;
|
||
color: #fd6004;
|
||
padding: 3rpx 10rpx;
|
||
font-size: 22rpx;
|
||
border-radius: 10rpx;
|
||
margin: 0 0 0 20rpx;
|
||
}
|
||
|
||
|
||
.chooseCheck {
|
||
position: absolute;
|
||
top: 3rpx;
|
||
right: 6rpx;
|
||
}
|
||
}
|
||
|
||
.addrContentBottom {
|
||
font-size: 32rpx;
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
.addressItem.addItem_style {
|
||
border-color: #fd6004;
|
||
}
|
||
|
||
.youhuiItem {
|
||
border: 1px solid #d9d9d9;
|
||
border-radius: 10rpx;
|
||
width: 100%;
|
||
display: flex;
|
||
padding: 20rpx 10rpx;
|
||
margin: 25rpx 0 0 0;
|
||
align-items: center;
|
||
background-color: #fff;
|
||
font-size: 30rpx;
|
||
}
|
||
|
||
.youhuiItem>view {
|
||
float: left;
|
||
}
|
||
|
||
.youhuiItem.youItem_style {
|
||
border-color: #fd6004;
|
||
}
|
||
}
|
||
|
||
.agreeRadio {
|
||
zoom: .8;
|
||
}
|
||
|
||
.cha_jine {
|
||
margin: 40rpx 50rpx 0 50rpx;
|
||
|
||
.cj_title {
|
||
font-size: 36rpx;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.cj_xiang {
|
||
margin-top: 50rpx;
|
||
|
||
.cj_price {
|
||
box-shadow: 0 0 20rpx 0 #0000001a;
|
||
float: left;
|
||
width: 47%;
|
||
margin: 0 30rpx 30rpx 0;
|
||
text-align: center;
|
||
padding: 25rpx 0 30rpx 0;
|
||
border-radius: 20rpx;
|
||
position: relative;
|
||
color: #2d2d2d;
|
||
|
||
.pr_jg {
|
||
font-size: 45rpx;
|
||
margin: 20rpx 0 10rpx 0;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.pr_yl {
|
||
font-size: 30rpx;
|
||
// text-decoration: line-through;
|
||
color: #b1b1b1;
|
||
}
|
||
|
||
.pr_lj {
|
||
background-image: linear-gradient(90deg, #fe6e09 0%, #efa574 100%);
|
||
color: #fff;
|
||
position: absolute;
|
||
top: -10rpx;
|
||
right: 0;
|
||
font-size: 24rpx;
|
||
padding: 5rpx 10rpx;
|
||
border-top-left-radius: 20rpx;
|
||
border-bottom-right-radius: 20rpx;
|
||
}
|
||
}
|
||
|
||
.cj_price:nth-child(2n) {
|
||
margin-right: 0;
|
||
}
|
||
|
||
.Tab_cj {
|
||
box-shadow: 0 0 20rpx 0 #fe700bcc;
|
||
color: #7b4c0a;
|
||
background: #fff9f5cc;
|
||
}
|
||
}
|
||
}
|
||
|
||
.highlight {
|
||
color: $uni-color-primary;
|
||
}
|
||
|
||
.cha_fangsh {
|
||
margin: 40rpx 50rpx 0 50rpx;
|
||
|
||
.cf_title {
|
||
font-size: 36rpx;
|
||
font-weight: bold;
|
||
}
|
||
|
||
.cf_radio {
|
||
margin-top: 20rpx;
|
||
|
||
.cf_xuanx {
|
||
font-size: 32rpx;
|
||
padding: 20rpx;
|
||
margin-bottom: 20rpx;
|
||
border-bottom: 1px solid #ededed;
|
||
|
||
image {
|
||
width: 40rpx;
|
||
height: 40rpx;
|
||
display: inline-block;
|
||
margin-right: 20rpx;
|
||
vertical-align: bottom;
|
||
}
|
||
}
|
||
|
||
.Tab_xf {
|
||
background-color: #fdf1e9cc;
|
||
}
|
||
|
||
}
|
||
|
||
|
||
|
||
}
|
||
|
||
.agree_wo {
|
||
color: #aaa;
|
||
font-size: 25rpx;
|
||
margin-top: 30rpx;
|
||
margin: 40rpx 50rpx 0 50rpx;
|
||
padding-bottom: 180rpx;
|
||
}
|
||
|
||
.char_btn {
|
||
position: fixed;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 30rpx;
|
||
|
||
view {
|
||
background-image: linear-gradient(90deg, #ed7161 0%, #efa574 100%);
|
||
color: #fff;
|
||
width: 90%;
|
||
margin: 0 auto;
|
||
text-align: center;
|
||
font-size: 35rpx;
|
||
font-weight: bold;
|
||
padding: 25rpx 0;
|
||
border-radius: 50rpx;
|
||
}
|
||
}
|
||
</style>
|