| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845 | <template>	<view>		<view class="flex text-center  text-lg bg" v-if="isAgency == 1 && tgCheck != '否'">			<view class="title_btn flex-sub bg" @click="cut(1)" :class="title_color==1?'bgCol2': ''">我的充值			</view>			<view class="title_btn flex-sub bg" @click="cut(2)" :class="title_color==2?'bgCol2': ''">我的收益			</view>		</view>		<view v-if="title_color==1" class="padding">			<view class="info-box">				<view class=" u-flex u-p-l-30 u-p-t-30 u-p-b-30">					<view class="u-m-r-20">						<u-avatar :src="avatar" size="140"></u-avatar>					</view>					<view class="u-flex-1 ">						<view style="font-size: 48rpx;color: #222222;font-weight: bold;">¥{{money}}</view>						<view style="font-size: 24rpx;color: #AAAAAA;margin-top: 20rpx;">只能用于平台消费支付,充值后不可退款</view>					</view>				</view>			</view>			<!-- <view class="margin-top radius bg flex justify-between flex-wrap padding-lr padding-bottom">				<view v-for="(item,index) in wallet" :key='index'					class="flex justify-between padding-sm radius margin-top"					style="color:#20C675;background-color:#EAFFF5; width:48%;border: 1rpx solid #20C675;"					@click="active(item)" :class="{active:item.isSelect}">					<view>						¥{{item.price}}					</view>				</view>			</view> -->			<view class=" flex justify-between flex-wrap"				v-if="wallet.length > 0">				<view v-for="(item,index) in wallet" :key='index' class="item"					@click="active(item)" :class="{active:item.isSelect}">					<view class="price" v-if="item.coupon && item.coupon.money">						¥{{item.price}}					</view>					<view  class="price" v-else style="height: 100%;display: flex;align-items: center;">		¥{{item.price}}					</view>					<view class="desc" v-if="item.coupon && item.coupon.money">						赠送{{item.giveNum}}张{{item.coupon.money}}元优惠券					</view>				</view>			</view>			<view class="bg margin-top padding-lr radius">				<view>					<view style="display: flex;height: 100upx;align-items: center;padding: 20upx 0;justify-content: space-between;"						v-for="(item,index) in openLists" :key='index'>						<view class="flex">						<image :src="item.image" style="width: 48rpx;height: 48rpx;border-radius: 50upx;"></image>						<view style="font-size: 30upx;margin-left: 20upx;">{{item.text}}						</view>						</view>						<radio-group name="openWay" style="margin-left: 20upx;" @tap='selectWay(item)'>							<label class="tui-radio">								<radio color="#FF6E98" style="transform:scale(0.7)" :checked="openWay === item.id ? true : false" />							</label>						</radio-group>					</view>				</view>			</view>			<view class="bg radius margin-top padding">				<view class="flex align-center justify-between" @click="goNav('/my/wallet/mymoneydetail')">					<view class="flex align-center">						<image							src="/static/image/icon_coin.png"							style="width: 48rpx;height: 48rpx;"></image>						<view class="margin-left">钱包明细</view>					</view>					<image src="../../static/img/you.png" style="width: 18rpx;height: 32rpx;"></image>				</view>				<view class="flex align-center justify-between margin-top-xl" @click="goNav('/my/wallet/zhifubao')"					v-if="isAgency == 1">					<view class="flex align-center">						<image							src="/static/image/icon_card.png"							style="width: 48rpx;height: 34rpx;"></image>						<view style="margin-left:26upx">提现账号</view>					</view>					<image src="../../static/img/you.png" style="width: 18rpx;height: 32rpx;"></image>				</view>				<view class="flex align-center justify-between margin-top-xl" @click="goNav('/my/wallet/cashList')"					v-if="isAgency == 1">					<view class="flex align-center">						<image							src="/static/image/icon_note.png"							style="width: 40rpx;height: 52rpx;"></image>						<view style="margin-left: 36rpx;">提现记录</view>					</view>					<image src="../../static/img/you.png" style="width: 18rpx;height: 32rpx;"></image>				</view>				<!-- <view @click="TuiPrice()" v-if="renzheng ==2||renzheng ==5">退保证金</view> -->			</view>			<view class="btn" @click="pay">确定充值</view>		</view>		<view v-if="title_color==2 && isAgency == 1" class="padding">			<view class="bg radius  padding">				<view class="text-lg">可用余额</view>				<view class="flex margin-top-sm">					<!-- <view class="text-xxl"></view> -->					<view class="text-xxl">{{money}}元</view>				</view>			</view>			<view class="bg radius  padding margin-top">				<view class="text-lg margin-bottom">提现金额</view>				<input type="number" placeholder="请输入提现金额" v-model="moneyNum">				<view style="width: 100%;height: 1rpx;background: #F2F2F2;margin-top: 15rpx;"></view>				<view class="text-grey margin-top-sm">{{placeholder}}</view>				<view class="margin-top-xs" style="color: red;font-size: 26rpx;" v-if="txMsg">*{{txMsg}}</view>			</view>			<view class="bg margin-top padding-lr radius">				<view>					<view v-for="(item,index) in openList" :key='index'>						<view style="display: flex;height: 100upx;align-items: center;padding: 20upx 0;"							v-if="item.text === '微信' && wxTxSel != '否'">							<image :src="item.image" style="width: 55upx;height: 55upx;border-radius: 50upx;"></image>							<view style="font-size: 30upx;margin-left: 20upx;width: 70%;">{{item.text}}							</view>							<radio-group name="openWay" style="margin-left: 20upx;" @tap='selectWay(item)'>								<label class="tui-radio">									<radio color="#2FB57A" :checked="openWay === item.id ? true : false" />								</label>							</radio-group>						</view>						<view style="display: flex;height: 100upx;align-items: center;padding: 20upx 0;"							v-if="item.text === '银联' && ylTxSel != '否'">							<image :src="item.image" style="width: 55upx;height: 55upx;border-radius: 50upx;"></image>							<view style="font-size: 30upx;margin-left: 20upx;width: 70%;">{{item.text}}							</view>							<radio-group name="openWay" style="margin-left: 20upx;" @tap='selectWay(item)'>								<label class="tui-radio">									<radio color="#2FB57A" :checked="openWay === item.id ? true : false" />								</label>							</radio-group>						</view>						<view style="display: flex;height: 100upx;align-items: center;padding: 20upx 0;"							v-if="item.text === '支付宝'">							<image :src="item.image" style="width: 55upx;height: 55upx;border-radius: 50upx;"></image>							<view style="font-size: 30upx;margin-left: 20upx;width: 70%;">{{item.text}}							</view>							<radio-group name="openWay" style="margin-left: 20upx;" @tap='selectWay(item)'>								<label class="tui-radio">									<radio color="#2FB57A" :checked="openWay === item.id ? true : false" />								</label>							</radio-group>						</view>					</view>				</view>			</view>			<view class="bg radius margin-top padding">				<view class="flex align-center justify-between" @click="goNav('/my/wallet/mymoneydetail')">					<view class="flex align-center">						<image							src="/static/image/icon_coin.png"							style="width: 44rpx;height: 44rpx;"></image>						<view class="margin-left">钱包明细</view>					</view>					<image src="../../static/img/you.png" style="width: 18rpx;height: 32rpx;"></image>				</view>				<view class="flex align-center justify-between margin-top-xl" @click="goNav('/my/wallet/zhifubao')">					<view class="flex align-center">						<image							src="/static/image/icon_card.png"							style="width: 48rpx;height: 34rpx;"></image>						<view style="margin-left:26upx">提现账号</view>					</view>					<image src="../../static/img/you.png" style="width: 18rpx;height: 32rpx;"></image>				</view>				<view class="flex align-center justify-between margin-top-xl" @click="goNav('/my/wallet/cashList')">					<view class="flex align-center">						<image							src="/static/image/icon_note.png"							style="width: 40rpx;height: 52rpx;"></image>						<view style="margin-left: 36rpx;">提现记录</view>					</view>					<image src="../../static/img/you.png" style="width: 18rpx;height: 32rpx;"></image>				</view>				<view class="flex align-center justify-between margin-top-xl" @click="goNav('/my/wallet/yinhangka')"					v-if="isAgency == 1 && ylTxSel != '否'">					<view class="flex align-center">						<image							src="/static/image/icon_card.png"							style="width: 48rpx;height: 34rpx;"></image>						<view class="margin-left">银行卡账号</view>					</view>					<image src="../../static/img/you.png" style="width: 18rpx;height: 32rpx;"></image>				</view>				<!-- <view @click="TuiPrice()" v-if="renzheng ==2||renzheng ==5">退保证金</view> -->			</view>			<view class="btn" @click="cashMoney">立即提现</view>		</view>		<view class="flex justify-around margin-top " v-if="jsczSel != '否'">			<view @click="goNav('/pages/therapist/therapistList?index=2')">为TA充值</view>			<view @click="goNav('/pages/therapist/therapistList?index=3')">我的技师</view>		</view>	</view></template><script>	export default {		data() {			return {				jsczSel: '否',				tgCheck: '否',				isAgency: 0,				tablist: [{					id: 1,					name: '我的充值'				}, {					id: 2,					name: '我的提现'				}],				title_color: 1,				money: 0,				avatar: '',				Profit: 0,				openLists: [{					image: '../static/images/zhifubao.png',					text: '支付宝',					id: 1				}, {					image: '../static/images/icon_weixin.png',					text: '微信',					id: 2				}],				openList: [{					image: '../static/images/zhifubao.png',					text: '支付宝',					id: 1				}, {					image: '../static/images/yinlian.png',					text: '银联',					id: 2				}, {					image: '../static/images/icon_weixin.png',					text: '微信',					id: 3				}],				wxTxSel: '否',				ylTxSel: '否',				tabIndex: 0,				bankCard: '',				openWay: 2,				wallet: [],				moneyNum: null,				thisSelect: {},				charge: 0, //提现手续费				maxMoney: 0, //最高提现额度				minMoney: 0, //最低提现额度				ratio: '', //金元比例				placeholder: '',				renzheng: 0,				sp: 0,				txMsg: ''			}		},		onLoad(d) {			if (d.tabIndex) {				this.tabIndex = d.tabIndex;				this.title_color = 2;			} else {				this.tabIndex = 0;			}			this.wxTxSel = this.$queue.getData('wxTxSel');			this.ylTxSel = this.$queue.getData('ylTxSel');			this.jsczSel = this.$queue.getData('jsczSel');			this.txMsg = this.$queue.getData('txMsg');			this.avatar = uni.getStorageSync('avatar')			this.renzheng = uni.getStorageSync("renzheng")			this.getMoneyList();			// #ifndef MP-WEIXIN			this.openLists = [{				image: '../../static/images/zhifubao.png',				text: '支付宝',				id: 1			}, {				image: '../../static/images/icon_weixin.png',				text: '微信',				id: 2			}];			this.openWay = 1;			// #endif			// #ifdef MP-WEIXIN			this.openLists = [{				image: '../../static/images/icon_weixin.png',				text: '微信',				id: 2			}];			this.openWay = 2;			// #endif		},		onShow() {			this.tgCheck = this.$queue.getData('tgCheck');			this.getMoney()			this.getCharge()			this.getMinMoney()			this.getMaxMoney()			this.getRatio()			this.getUserInfo()		},		methods: {			getMoneyList() {				this.$Request.get("/app/payClassify/selectPayClassifyList").then(res => {					if (res.code == 0) {						this.wallet = [];						res.data.forEach((d, index) => {							// if(!d.coupon){							// 	return;							// }							if (index == 0) {								d.isSelect = true;								this.thisSelect = d;							} else {								d.isSelect = false;							}							this.wallet.push(d);						});					}				});			},			//退保证金			TuiPrice() {				let that = this				let zhiFuBao = uni.getStorageSync('zhiFuBao')				let zhiFuBaoName = uni.getStorageSync('zhiFuBaoName')				if (!zhiFuBao && !zhiFuBaoName) {					uni.navigateTo({						url: '/my/wallet/zhifubao'					})				} else {					let renzheng = uni.getStorageSync("renzheng")					console.log(renzheng)					if (renzheng == 2 || renzheng == 5) {						uni.showModal({							title: '提示',							content: '是否确定退还保证金?退还后将不能发布订单',							success: function(res) {								if (res.confirm) {									console.log('用户点击确定');									that.$Request.post("/app/userCertification/exitMoney").then(res => {										console.log(res)										if (res.msg == '您还有未下架的订单,请先下架!') {											uni.showToast({												title: res.msg,												icon: 'none'											});										} else if (res.msg == '您还有未服务的订单,请先完成!') {											uni.showToast({												title: res.msg,												icon: 'none'											});										} else if (res.msg == 'success') {											uni.showToast({												title: '退还成功',												icon: 'none'											});											uni.switchTab({												url: '/pages/my/index'											})										}									});								} else if (res.cancel) {									console.log('用户点击取消');								}							}						});					}				}			},			getUserInfo() {				this.$Request.get("/app/user/selectUserById").then(res => {					if (res.code == 0) {						this.avatar = res.data.avatar ? res.data.avatar : '../../static/logo.png'						if (this.tabIndex == 1) {							this.isAgency = 1						} else {							this.isAgency = res.data.isAgency ? res.data.isAgency : 0						}						if (res.data.bankCard) {							this.bankCard = res.data.bankCard						}						uni.setStorageSync('avatar', res.data.avatar)					}				});			},			// 提现手续费			getCharge() {				this.$Request.get("/app/common/type/152").then(res => {					if (res.code == 0) {						this.charge = res.data.value						this.placeholder = '服务费:' + this.charge * 100 + '%' + ',最低提现:' +							this.minMoney * 1 + ',最高提现:' + this.maxMoney * 1					}				});			},			// 最低提现额度			getMinMoney() {				this.$Request.get("/app/common/type/112").then(res => {					if (res.code == 0) {						this.minMoney = res.data.value						this.placeholder = '服务费:' + this.charge * 100 + '%' + ',最低提现:' +							this.minMoney * 1 + ',最高提现:' + this.maxMoney * 1					}				});			},			// 最高提现额度			getMaxMoney() {				this.$Request.get("/app/common/type/153").then(res => {					if (res.code == 0) {						this.maxMoney = res.data.value						this.placeholder = '服务费:' + this.charge * 100 + '%' + ',最低提现:' +							this.minMoney * 1 + ',最高提现:' + this.maxMoney * 1					}				});			},			// 金元比例			getRatio() {				this.$Request.get("/app/common/type/154").then(res => {					if (res.code == 0) {						this.ratio = res.data.value						this.placeholder = '服务费:' + this.charge * 100 + '%' + ',最低提现:' +							this.minMoney * 1 + ',最高提现:' + this.maxMoney * 1						this.wallet.forEach(re => {							re.num = re.price * res.data.value						})					}				});			},			cut(e) {				this.title_color = e			},			goNav(url) {				uni.navigateTo({					url				})			},			active(e) {				this.wallet.forEach(res => {					if (res.payClassifyId == e.payClassifyId) {						res.isSelect = true						this.thisSelect = e					} else {						res.isSelect = false					}				})			},			// 我的余额			getMoney() {				this.$Request.get("/app/userMoney/selectMyMoney").then(res => {					if (res.code == 0 && res.data) {						console.log(res.data.money)						this.money = res.data.money					}				});			},			selectWay: function(item) {				this.openWay = item.id;			},			pay() {				if (this.openWay == 2) {					// #ifdef APP-PLUS					// 微信APP支付 根据订单id获取支付信息					let data = {						payClassifyId: this.thisSelect.payClassifyId,						type: 1,						userId: uni.getStorageSync('userId')					}					this.$Request.post("/app/wxPay/payMoney", data).then(ret => {						console.log(ret)						this.isCheckPay(ret.code, 'wxpay', JSON.stringify(ret.data));					});					// #endif					// #ifdef MP-WEIXIN					// 微信小程序支付					let data = {						payClassifyId: this.thisSelect.payClassifyId,						type: 3,						userId: uni.getStorageSync('userId')					}					this.$Request.post('/app/wxPay/payMoney', data).then(ret => {						uni.hideLoading()						uni.requestPayment({							provider: 'wxpay',							timeStamp: ret.data.timestamp,							nonceStr: ret.data.noncestr,							package: ret.data.package,							signType: ret.data.signType,							paySign: ret.data.sign,							success: function(suc) {								console.log('success:' + JSON.stringify(suc));								uni.showToast({									title: '支付成功',									icon: 'success'								})								setTimeout(d => {									uni.navigateBack(1)								}, 1000);							},							fail: function(err) {								console.log('fail:' + JSON.stringify(err));								uni.showToast({									title: '支付失败',									icon: 'none'								})							}						});					});					// #endif					// #ifdef H5					let ua = navigator.userAgent.toLowerCase();					if (ua.indexOf('micromessenger') !== -1) {						let data = {							payClassifyId: this.thisSelect.payClassifyId,							type: 2,							userId: uni.getStorageSync('userId')						}						this.$Request.post('/app/wxPay/payMoney', data).then(res => {							if (res.code == 0) {								this.callPay(res.data);							} else {								uni.showToast({									icon: 'none',									title: '支付失败!'								});							}						});					} else {						let data = {							payClassifyId: this.thisSelect.payClassifyId,							type: 4,							userId: uni.getStorageSync('userId')						}						this.$Request.post('/app/wxPay/payMoney', data).then(res => {							if (res.code == 0) {								const urlArr = window.location.href;								const hostUrl = urlArr.split("/");								const callBack = hostUrl[0] + "//" + hostUrl[2] + "/";								const url = '&redirect_url=' + callBack + 'my/wallet/index';								window.location = res.data.mweb_url + url							} else {								uni.showToast({									icon: 'none',									title: '支付失败!'								});							}						});					}					// #endif				} else {					// #ifdef H5					let data = {						payClassifyId: this.thisSelect.payClassifyId,						type: 2,						userId: uni.getStorageSync('userId')					}					this.$Request.post('/app/aliPay/payOrderMoney', data).then(						res => {							if (res.code === 0) {								const div = document.createElement('div')								div.innerHTML = res.data //此处form就是后台返回接收到的数据								document.body.appendChild(div)								document.forms[0].submit()								setTimeout(d => {									uni.navigateBack(1)								}, 1000);							} else {								uni.showToast({									icon: 'none',									title: '支付失败!'								});							}						});					// #endif					// #ifdef APP-PLUS					// APP支付宝支付					let data = {						payClassifyId: this.thisSelect.payClassifyId,						type: 1,						userId: uni.getStorageSync('userId')					}					this.$Request.post("/app/aliPay/payOrderMoney", data).then(ret => {						console.log(ret)						this.isCheckPay(ret.code, 'alipay', ret.data);					});					// #endif				}			},			callPay: function(response) {				if (typeof WeixinJSBridge === "undefined") {					if (document.addEventListener) {						document.addEventListener('WeixinJSBridgeReady', this.onBridgeReady(response), false);					} else if (document.attachEvent) {						document.attachEvent('WeixinJSBridgeReady', this.onBridgeReady(response));						document.attachEvent('onWeixinJSBridgeReady', this.onBridgeReady(response));					}				} else {					this.onBridgeReady(response);				}			},			onBridgeReady: function(response) {				let that = this;				if (!response.package) {					return;				}				console.log(response, '++++++++')				WeixinJSBridge.invoke(					'getBrandWCPayRequest', {						"appId": response.appid, //公众号名称,由商户传入						"timeStamp": response.timestamp, //时间戳,自1970年以来的秒数						"nonceStr": response.noncestr, //随机串						"package": response.package,						"signType": response.signType, //微信签名方式:						"paySign": response.sign //微信签名					},					function(res) {						console.log(res, '/*-/*-/*-')						if (res.err_msg === "get_brand_wcpay_request:ok") {							// 使用以上方式判断前端返回,微信团队郑重提示:							//res.err_msg将在用户支付成功后返回ok,但并不保证它绝对可靠。							uni.showLoading({								title: '支付成功'							});							setTimeout(function() {								uni.hideLoading();							}, 1000);						} else {							uni.hideLoading();						}						WeixinJSBridge.log(response.err_msg);					}				);			},			isCheckPay(status, name, order) {				if (status == 0) {					this.setPayment(name, order);				} else {					uni.hideLoading();					uni.showToast({						title: '支付信息有误',						icon: 'none'					});				}			},			setPayment(name, order) {				console.log('*-*-*')				uni.requestPayment({					provider: name,					orderInfo: order, //微信、支付宝订单数据					success: function(res) {						console.log(res)						uni.hideLoading();						uni.showLoading({							title: '支付成功'						});					},					fail: function(err) {						console.log(err)						uni.hideLoading();					},					complete() {						uni.hideLoading();					}				});			},			// 提现			cashMoney() {				if (!this.moneyNum) {					uni.showToast({						icon: 'none',						title: '请输入提现金额'					})					return				}				if (this.moneyNum > this.money * 1) {					uni.showToast({						icon: 'none',						title: '您的余额不足'					})					return				}				if (this.moneyNum < this.minMoney * 1) {					uni.showToast({						icon: 'none',						title: '最低可提现10元'					})					return				}				// if (this.moneyNum*1+this.charge*this.moneyNum > this.money*1) {				// 	uni.showToast({				// 		icon: 'none',				// 		title: '您的手续费不足'				// 	})				// 	return				// }				let zhiFuBao = uni.getStorageSync('zhiFuBao')				let zhiFuBaoName = uni.getStorageSync('zhiFuBaoName')				// if (this.openWay == 2) {				if (!zhiFuBao && !zhiFuBaoName && this.openWay == 1) {					uni.navigateTo({						url: '/my/wallet/zhifubao'					})					return				}				if (!this.bankCard && this.openWay == 2) {					uni.navigateTo({						url: '/my/wallet/yinhangka'					})					return				}				let that = this				that.sp = (that.moneyNum * this.charge).toFixed(2)				uni.showModal({					title: '提示',					content: '本次提现' + that.moneyNum + '元,服务费' + this.sp + '元,是否确认提现?',					success: function(res) {						if (res.confirm) {							that.$Request.get("/app/cash/cashMoney", {								money: that.moneyNum,								userType: 1,								classify: that.openWay							}).then(res => {								if (res.code == 0) {									uni.showToast({										icon: 'none',										title: res.msg									})									that.moneyNum = null								} else {									uni.showToast({										icon: 'none',										title: res.msg									})								}								that.getMoney()							});						} else if (res.cancel) {							console.log('用户点击取消');						}					}				});			}		}	}</script><style lang="scss" scoped>	page {		background-color: #F7F7F7;	}	.bg {		background-color: #FFFFFF;	}		.info-box{		height: 212rpx;		background: url('/static/info-bg.png') no-repeat;		background-size: 100% 212rpx;	}	.item{		width: 334rpx;		height: 166rpx;		background: linear-gradient( 0deg, #FFFFFF 0%, #FFBACA 100%);		border-radius: 36rpx 36rpx 36rpx 36rpx;		display: flex;		flex-direction: column;		align-items: center;		justify-content: center;		box-sizing: border-box;		margin-top: 20rpx;		.price{			font-weight: bold;			font-size: 40rpx;			color: #222222;		}		.desc{			font-size: 24rpx;			color: #222222;			margin-top: 20rpx;		}	}	.item.active {		/* border: 1px solid #2FB57A !important; */		color: $uni-color-primary !important;		background: linear-gradient( 0deg, #FFFFFF 0%, #FFBACA 100%) !important;		border: 2rpx solid #FF6E98;		.price{			color: #FF6E98;		}	}	.title_btn {		height: 78upx;		line-height: 78upx;		color: #333333;		/* background: #f7f7f7; */	}	.btn {		width: 686rpx;		height: 100rpx;		line-height: 100rpx;		text-align: center;		background: linear-gradient( 143deg, #FFE6EE 0%, #FF9AB2 100%);		border-radius: 86rpx 86rpx 86rpx 86rpx;		font-weight: bold;		font-size: 32rpx;		color: #222222;		margin-top: 28rpx;	}	.bgCol2 {		color: #2FB57A;		background: #EAFFF5;	}</style>
 |