1131 lines
23 KiB
Vue
1131 lines
23 KiB
Vue
<template>
|
||
<view class="content">
|
||
<view class="padding-bottom u-skeleton">
|
||
<view class="bgImg u-skeleton-fillet">
|
||
<view class="head-top">
|
||
<view class="pay-title">服务项目</view>
|
||
<view class="flex">
|
||
<view>
|
||
<image :src="orderXm.packageImg" class="detail-view-img"></image>
|
||
</view>
|
||
<view class="head-bottom margin-left-sm">
|
||
<view class="flex head-title-right">
|
||
<view class="margin-right-xs u-skeleton-fillet head-title">
|
||
{{orderXm.title}}
|
||
</view>
|
||
|
||
</view>
|
||
<view class="flex align-center">
|
||
<view class="jiage">
|
||
<view class="flex justify-between">
|
||
<view class="money-pay-zhen">
|
||
<text class="title-font">价格:</text>
|
||
<span class="money-pay-zhen-a1">¥</span>
|
||
<span class="money-pay-zhen-a2">{{orderXm.price}}</span>
|
||
</view>
|
||
</view>
|
||
<view class="money-pay justify-between">
|
||
<view class="money-pay-zhen"></view>
|
||
<view>
|
||
<uni-number-box :width='27' :min="1" @change="changeValue" />
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="detail-foot">
|
||
<view class="detail-foot-nav">
|
||
<span class="detail-foot-nav-text">项目详情</span>
|
||
<span class="detail-foot-nav-bor"></span>
|
||
</view>
|
||
<view class="detail-foot-mian">
|
||
<view class="detail-foot-list" v-for="(item,index) in detailData" :key="index" @click="detail(item)">
|
||
<view class="detail-foot-list-top">
|
||
<span style="margin-right: 5px;">{{item.title}}</span>
|
||
<!-- <span style="display: none;">详情</span> -->
|
||
<!-- <span style="margin-left: 5px;">{{orderXm.levelName}}</span> -->
|
||
<image style="width:80rpx; height:30rpx;" :src="orderXm.level=='3'?'../../static/vip/grade1.gif':orderXm.level=='4'?'../../static/vip/grade2.gif':'../../static/vip/grade3.gif'" mode=""></image>
|
||
</view>
|
||
<view class="detail-view">
|
||
<image class="detail-view-img" :src="item.massageImg" mode=""></image>
|
||
<view class="detail-view-mina">
|
||
<view class="header-bottom-money">
|
||
<view class="header-bottom-money-zhen">
|
||
<span class="header-bottom-money-zhen-child1">¥</span>
|
||
<span class="header-bottom-money-zhen-child2">{{item.packagePrice}}</span>
|
||
<span class="header-bottom-money-zhen-child3">¥{{item.oldPrice}}</span>
|
||
<!-- <span class="header-bottom-money-zhen-child3">¥{{orderXm.oldPrice}}</span> -->
|
||
</view>
|
||
</view>
|
||
<view class="xiangmu-cont-top-left">服务时长:{{item.duration}}分钟</view>
|
||
<view class="tese">
|
||
<span>项目特色: </span>
|
||
<span>{{item.jianjie}}</span>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<!-- <view class="detail-foot-title">
|
||
团购
|
||
</view> -->
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="detail-foot">
|
||
<view class="detail-foot-mian">
|
||
<view class="detail-foot-youhui">
|
||
<view class="liliao" @click="youhuijuan" style="margin-top: 0px;">
|
||
<view style="width: 30%;">
|
||
<span class="detail-foot-nav-text">优惠券</span>
|
||
</view>
|
||
<view class="header-bottom-money-zhen">
|
||
<view v-if="couponDataList" class="value-font" style="margin-right: 5px;">
|
||
<span>-¥{{couponDataList}}</span>
|
||
</view>
|
||
<view v-else class="value-font"><span>选择优惠券</span><span class="value-more"></span></view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="push-button">
|
||
<view class="pay_btn" @click="openpay()">去支付</view>
|
||
</view>
|
||
</view>
|
||
<!-- <u-skeleton :loading="loading" :animation="true" bgColor="#FFF"></u-skeleton> -->
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
startTime: '',
|
||
tordersId: '',
|
||
tpayMoney: '',
|
||
orderList: [],
|
||
loading: true,
|
||
id: '',
|
||
isVip: false,
|
||
couponData:[],
|
||
couponId:'',
|
||
ordersId:'',
|
||
couponDataList:'',
|
||
orderXm:[],
|
||
detailData:[],
|
||
number:1,
|
||
}
|
||
},
|
||
onLoad(e) {
|
||
this.orderXm=this.$queue.getData('mainData');
|
||
console.log("this.orderXm",this.orderXm)
|
||
this.detailData=this.$queue.getData('detailData');
|
||
console.log("this.orderXm",this.detailData)
|
||
this.couponId=this.$queue.getData('youhui');
|
||
if(this.couponId){
|
||
this.youhuiF(this.couponId)
|
||
}
|
||
this.youhui()
|
||
},
|
||
methods: {
|
||
goOrder() {//生成orderId
|
||
let that = this
|
||
console.log(that.orderXm.groupNo);
|
||
let data = {
|
||
userId: uni.getStorageSync('userId'),
|
||
groupNo:that.orderXm.groupNo,
|
||
isNewer:that.orderXm.isNewer==null?'0':that.orderXm.isNewer,
|
||
startTime:that.orderXm.startTime,
|
||
endTime:that.orderXm.endTime,
|
||
couponId: that.couponId,
|
||
ordersPackageList:[
|
||
{packageId: that.orderXm.id,num: that.number},
|
||
],
|
||
// oldSumMoney: that.orderXm.oldPrice,
|
||
// sumMoney: that.orderXm.price,
|
||
// oldSumMoney: that.mainData.oldPrice*that.detailData.length,
|
||
// sumMoney: that.mainData.price*that.detailData.length,
|
||
|
||
}
|
||
that.$Request.postJson("/app/user/package/order/insertGroupOrders", data).then(res => {
|
||
if (res.code == 0) {
|
||
that.tordersId = res.data.ordersId;
|
||
that.tpayMoney = res.data.payMoney;
|
||
uni.navigateTo({
|
||
url:'/my/order/paydingPt?ordersId='+ res.data.ordersId
|
||
})
|
||
} else {
|
||
that.$queue.showToast(res.msg)
|
||
}
|
||
|
||
});
|
||
},
|
||
changeValue(value){
|
||
this.number=value
|
||
},
|
||
youhuijuan(){
|
||
var moeny=(this.orderXm.price*this.number).toFixed(2)
|
||
uni.navigateTo({
|
||
url:'/my/hongbao/youhuijuanList?price='+moeny+'&text='+'拼团'
|
||
})
|
||
},
|
||
openpay() {//验证
|
||
this.goOrder()
|
||
},
|
||
checkboxChange(e){
|
||
this.couponId=e.detail.value.join(",")
|
||
},
|
||
youhuiF(couponId){//获取优惠卷
|
||
let that = this;
|
||
let data = {
|
||
page: 1,
|
||
limit: 10,
|
||
id:couponId,
|
||
}
|
||
that.$Request.get("/app/coupon/selectCouponUserList", data).then(res => {
|
||
if (res.code == 0) {
|
||
var list=res.data.list;
|
||
that.couponDataList=list.reduce((sum, item) => sum + item.money, 0)
|
||
console.log("asdasdasdasd",that.couponDataList)
|
||
} else {
|
||
that.$queue.showToast(res.msg)
|
||
}
|
||
|
||
});
|
||
},
|
||
youhui(){//获取优惠卷
|
||
let that = this
|
||
let data = {
|
||
status: 0,
|
||
page: 1,
|
||
limit: 10
|
||
}
|
||
that.$Request.get("/app/coupon/selectCouponUserList", data).then(res => {
|
||
if (res.code == 0) {
|
||
that.couponData=res.data.list
|
||
} else {
|
||
that.$queue.showToast(res.msg)
|
||
}
|
||
|
||
});
|
||
},
|
||
liliaoshi(){
|
||
uni.setStorage({
|
||
key: 'taocanDd',
|
||
data: '支付',
|
||
success: function () {
|
||
uni.navigateTo({
|
||
url: '/pages/therapist/therapistDingdan'
|
||
})
|
||
}
|
||
});
|
||
},
|
||
copy(num) {
|
||
uni.setClipboardData({
|
||
data: num,
|
||
success: r => {
|
||
this.$queue.showToast('复制成功');
|
||
}
|
||
});
|
||
},
|
||
goNav(e) {
|
||
uni.navigateTo({
|
||
url: e
|
||
})
|
||
},
|
||
getIsVip() {
|
||
this.$Request.get("/app/UserVip/isUserVip").then(res => {
|
||
if (res.code == 0) {
|
||
this.isVip = res.data
|
||
uni.setStorageSync('isVIP', res.data)
|
||
}
|
||
});
|
||
},
|
||
|
||
|
||
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);
|
||
}
|
||
},
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.jiage{
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.ske-padding{
|
||
padding: 5rpx 30rpx 36rpx 30rpx;
|
||
|
||
}
|
||
.header-bottom-money{
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: flex-end;
|
||
}
|
||
.detail-view-mina{
|
||
width: 74%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: space-around;
|
||
}
|
||
.detail-view-img{
|
||
width: 74px;
|
||
height: 74px;
|
||
border-radius: 9px;
|
||
}
|
||
.detail-view{
|
||
padding: 0 30rpx 30rpx 30rpx;
|
||
display: flex;
|
||
flex-direction: row;
|
||
justify-content: space-between;
|
||
}
|
||
.head-bottom{
|
||
width: 75%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: space-around;
|
||
}
|
||
.money-pay-jia{
|
||
font-weight: 400;
|
||
font-size: 25rpx;
|
||
color: #666666;
|
||
text-decoration-line: line-through;
|
||
margin-left: 5px;
|
||
}
|
||
.money-pay{
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.head-top{
|
||
width: 95%;
|
||
margin: 0 auto;
|
||
background-color: #ffffff;
|
||
border-radius: 24rpx;
|
||
padding: 29rpx;
|
||
margin-top: 10px;
|
||
}
|
||
.pay-title{
|
||
font-weight: bold;
|
||
font-size: 32rpx;
|
||
color: #333333;
|
||
padding-bottom: 20rpx;
|
||
}
|
||
.header-bottom-money-zhen-child1{
|
||
font-size: 24rpx;
|
||
color: #FF6000;
|
||
}
|
||
.header-bottom-money-zhen-child2{
|
||
font-size:36rpx;
|
||
font-weight: bold;
|
||
color: #FF6000;
|
||
line-height:32rpx;
|
||
}
|
||
.header-bottom-money-zhen-child3{
|
||
margin-left:5px;
|
||
color: #999;
|
||
text-decoration: line-through;
|
||
}
|
||
.header-bottom-money-zhen{
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: flex-end;
|
||
}
|
||
.xiangmu-cont-top-left{
|
||
font-weight: normal;
|
||
font-size: 26rpx;
|
||
color: #049E89;
|
||
margin: 5rpx 0;
|
||
}
|
||
.detail-foot-nav-bor{
|
||
width: 64px;
|
||
height: 11rpx;
|
||
border-radius: 6rpx;
|
||
position: absolute;
|
||
bottom: 0;
|
||
background: linear-gradient(90deg,rgba(234, 248, 245,0.7),rgba(132, 211, 196,0.7));
|
||
}
|
||
.detail-foot-nav-bor2{
|
||
width: 45px;
|
||
height: 11rpx;
|
||
border-radius: 6rpx;
|
||
position: absolute;
|
||
bottom: 0;
|
||
background: linear-gradient(90deg,rgba(234, 248, 245,0.7),rgba(132, 211, 196,0.7));
|
||
}
|
||
.detail-foot-nav-text{
|
||
font-weight: bold;
|
||
font-size: 32rpx;
|
||
color: #333;
|
||
}
|
||
.detail-foot-nav{
|
||
width: 90%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
position: relative;
|
||
margin: 12px 0;
|
||
}
|
||
.detail-foot-title{
|
||
width: 100px;
|
||
height:24px;
|
||
background: linear-gradient(90deg, #ff7a61, #fd372e);
|
||
border-radius: 0 15rpx 0 30rpx;
|
||
border-radius: 0 15rpx 0 30rpx;
|
||
font-weight: 400;
|
||
font-size: 12px;
|
||
color: #FFFFFF;
|
||
text-align: right;
|
||
line-height: 24px;
|
||
padding-right:34px;
|
||
position: absolute;
|
||
right: 0;
|
||
top: 0;
|
||
}
|
||
.detail-foot-list-top{
|
||
width: 95%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.detail-foot-list{
|
||
width: 100%;
|
||
border-radius: 21rpx;
|
||
position: relative;
|
||
display: flex;
|
||
flex-direction: column;
|
||
background-color: #fff;
|
||
margin-bottom: 20rpx;
|
||
border: 1px solid #f5f5f5;
|
||
}
|
||
.detail-foot{
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
.tese span:nth-child(1){
|
||
font-weight: bold;
|
||
font-size: 24rpx;
|
||
color: #333333;
|
||
}
|
||
.tese span:nth-child(2){
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #8D9194;
|
||
}
|
||
.tese{
|
||
width: 100%;
|
||
display: -webkit-box;
|
||
-webkit-box-orient: vertical;
|
||
-webkit-line-clamp: 2; /* 显示的行数,可以根据需要修改 */
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
.detail-foot-list-top span:nth-child(1){
|
||
font-weight: bold;
|
||
font-size: 30rpx;
|
||
color: #333;
|
||
margin-left: 30rpx;
|
||
padding: 20rpx 0;
|
||
}
|
||
.detail-foot-list-top span:nth-child(2){
|
||
// width: 76rpx;
|
||
// height: 33rpx;
|
||
// line-height: 33rpx;
|
||
// text-align: center;
|
||
// border-radius: 16rpx;
|
||
// border: 1px solid #7D7D7D;
|
||
// font-weight: 400;
|
||
// font-size: 20rpx;
|
||
// color: #777777;
|
||
// margin: 0px 25px 0px 5px;
|
||
padding: 1px 8px;
|
||
border-radius: 10rpx 3rpx 10rpx 3rpx;
|
||
width: 50px;
|
||
text-align: center;
|
||
background-color: #f1f8d7;
|
||
color: #58b314;
|
||
}
|
||
.detail-foot-list-top span:nth-child(3){
|
||
font-weight: 400;
|
||
font-size: 28rpx;
|
||
color: #029d88;
|
||
}
|
||
.detail-foot-mian{
|
||
width: 95%;
|
||
margin: 0 auto;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
}
|
||
/deep/uni-checkbox .uni-checkbox-input{
|
||
width: 26px;
|
||
height: 26px;
|
||
border-radius: 50%;
|
||
}
|
||
.youhui-img{
|
||
width: 111.81rpx;
|
||
height: 111.81rpx;
|
||
}
|
||
.youhui-view-right-btn{
|
||
width: 158rpx;
|
||
height: 64rpx;
|
||
background: linear-gradient(-90deg, #019C88, #2DC48E);
|
||
border-radius: 32rpx;
|
||
text-align: center;
|
||
line-height: 64rpx;
|
||
font-weight: 400;
|
||
font-size: 28rpx;
|
||
color: #FFFFFF;
|
||
text-shadow: 0rpx 2rpx 4rpx rgba(0,119,104,0.44);
|
||
margin-left: 10px;
|
||
}
|
||
.youhui-view-right-time{
|
||
font-weight: 400;
|
||
font-size: 22rpx;
|
||
color: #999999;
|
||
}
|
||
.youhui-view-right-title{
|
||
width: 110px;
|
||
font-weight: 400;
|
||
font-size: 32rpx;
|
||
color: #333333;
|
||
}
|
||
.youhui-view-right-top{
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
.youhui-view-right{
|
||
width: 502.08rpx;
|
||
height: 100%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-around;
|
||
}
|
||
.youhui-view-left-bottom{
|
||
font-weight: 400;
|
||
font-size: 22rpx;
|
||
color: #FFFFFF;
|
||
}
|
||
.youhui-view-left-yuan{
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: baseline;
|
||
color: #FFFFFF;
|
||
}
|
||
.youhui-view-left-num{
|
||
font-weight: bold;
|
||
font-size: 89rpx;
|
||
}
|
||
.youhui-view-left-text{
|
||
font-weight: bold;
|
||
font-size:24.31rpx;
|
||
}
|
||
.youhui-view-left{
|
||
width: 199rpx;
|
||
height: 242rpx;
|
||
display: flex;
|
||
flex-direction:column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
.youhui-yiyong{
|
||
background-image: url('../../static/youhuijuan/coupons7.png');
|
||
}
|
||
.youhui-weiyong{
|
||
background-image: url('../../static/youhuijuan/coupons1.png');
|
||
}
|
||
.youhui-list{
|
||
width: 95%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
height: 242rpx;
|
||
border-radius: 21rpx;
|
||
background-size: 100%;
|
||
margin: 20px auto;
|
||
justify-content: space-between;
|
||
}
|
||
.dingwei-image{
|
||
margin-right: 20rpx;
|
||
width: 66rpx;
|
||
height: 66rpx;
|
||
padding: 10rpx 0;
|
||
border-radius: 50%;
|
||
background: linear-gradient(90deg, #029d88, #2fc094);
|
||
text-align: center;
|
||
line-height: 66rpx;
|
||
}
|
||
/deep/.skeleton-fade{
|
||
display: none;
|
||
}
|
||
/deep/.u-button-pay{
|
||
width: 381rpx;
|
||
height: 76rpx;
|
||
line-height: 76px;
|
||
text-align: center;
|
||
color: #fff;
|
||
font-size: 32rpx;
|
||
background: linear-gradient(90deg, #029d88, #2fc094);
|
||
border-radius: 60rpx;
|
||
}
|
||
.daizhifu{
|
||
font-size: 38rpx;
|
||
color: #333333;
|
||
}
|
||
.pay-zhifu{
|
||
width: 100%;
|
||
background-color: #f7f7f7 !important;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between !important;
|
||
}
|
||
.liliao{
|
||
margin-top: 17px;
|
||
}
|
||
.fuwu-time-view{
|
||
text-align: right;
|
||
}
|
||
.liliao-top span:nth-child(2){
|
||
width: 78rpx;
|
||
height: 35rpx;
|
||
line-height: 35rpx;
|
||
background: linear-gradient(90deg, #FE912E, #FF9970);
|
||
border-radius: 17rpx;
|
||
text-align: center;
|
||
font-weight: 400;
|
||
font-size: 25rpx;
|
||
color: #FFFFFF;
|
||
margin-left: 5px;
|
||
}
|
||
.fuwu-time-view span:nth-child(1),.liliao-bottom span:nth-child(1){
|
||
font-weight: 400;
|
||
font-size: 29rpx;
|
||
color: #888;
|
||
margin-right: 5px;
|
||
}
|
||
.fuwu-time-view,.liliao-top{
|
||
width: 70%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
}
|
||
.fuwu-title,.liliao-top span:nth-child(1){
|
||
font-size: 30rpx;
|
||
color: #666666;
|
||
}
|
||
.fuwu-time,.liliao{
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.adders-view image{
|
||
margin-top: 5px;
|
||
}
|
||
.xuanzhe{
|
||
margin-left: 5px;
|
||
border: 1px solid;
|
||
}
|
||
.header-view-data{
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
}
|
||
.adders-view span,.header-view-data{
|
||
font-size: 29rpx;
|
||
color: #888;
|
||
text-align: right;
|
||
}
|
||
.adders-view{
|
||
display: flex;
|
||
flex-direction: row;
|
||
position: relative;
|
||
}
|
||
.header-view-text{
|
||
width: 170rpx;
|
||
font-size: 29rpx;
|
||
color: #222222;
|
||
}
|
||
.header-view{
|
||
background-color: #fff;
|
||
margin-bottom: 10px;
|
||
border-radius: 11px;
|
||
}
|
||
.head-foot span:nth-child(1){
|
||
margin-right: 5px;
|
||
}
|
||
.head-foot span{
|
||
font-weight: bold;
|
||
font-size: 28rpx;
|
||
color: #222222;
|
||
}
|
||
.head-foot{
|
||
display: flex;
|
||
flex-direction: row;
|
||
justify-content: flex-end;
|
||
margin-top: 10px;
|
||
}
|
||
.head-mian{
|
||
margin-top: 3px;
|
||
}
|
||
.qian-right span:nth-child(1){
|
||
font-size: 16.67rpx;
|
||
}
|
||
.qian-right span:nth-child(2){
|
||
font-size:25rpx;
|
||
}
|
||
.qian-right span{
|
||
color: #727272;
|
||
}
|
||
.qian-left span:nth-child(1){
|
||
font-size: 25rpx;
|
||
}
|
||
.qian-left span:nth-child(2){
|
||
font-size:29.17rpx;
|
||
}
|
||
.qian-left span{
|
||
color: #F95900;
|
||
}
|
||
.head-top-view-right-img,.adders-view image,.fuwu-img{
|
||
width: 9.38rpx;
|
||
height: 15.83rpx;
|
||
}
|
||
.head-top-title-bottom{
|
||
margin-top: 10px;
|
||
}
|
||
.head-top-title,.head-top-title-bottom,.head-mian{
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.head-top-view-right{
|
||
width: 83%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
.head-top-view-img{
|
||
width: 98.61rpx;
|
||
height: 98.61rpx;
|
||
}
|
||
.head-top-view{
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
.d-title{
|
||
font-weight: 400;
|
||
font-size: 29rpx;
|
||
color: #222;
|
||
padding: 10px 15px 0px 15px;
|
||
width: 100%;
|
||
}
|
||
.checkbox-data{
|
||
padding: 0px 11px;
|
||
margin: 15px 0px;
|
||
}
|
||
.list-pay-text span:nth-child(2){
|
||
padding-left: 5px;
|
||
}
|
||
.list-pay-text{
|
||
display: flex;
|
||
flex-direction: column;
|
||
width: 100%;
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #999999;
|
||
line-height: 42rpx;
|
||
}
|
||
.list-pay{
|
||
width: 100%;
|
||
padding: 0px 29rpx;
|
||
}
|
||
.pay-ding-top{
|
||
width: 100%;
|
||
height: 80rpx;
|
||
padding: 0px 29rpx;
|
||
}
|
||
.fei-view-list span,.fei-view-list-z span{
|
||
font-weight: bold;
|
||
font-size: 25rpx;
|
||
}
|
||
.fei-view-list-z{
|
||
height: 65rpx;
|
||
background-color: rgba(247, 247, 247, 0.8);
|
||
border-radius: 33rpx;
|
||
padding: 0px 5px;
|
||
}
|
||
.fei-view-list span:nth-child(1),.fei-view-list-z span:nth-child(1){
|
||
color: #666666;
|
||
}
|
||
.fei-view-list span:nth-child(2){
|
||
color: #333333;
|
||
}
|
||
.fei-view-list,.fei-view-list-z{
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
margin-top: 5px;
|
||
}
|
||
.fei-view{
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
.fei-title{
|
||
width: 100%;
|
||
text-align: center;
|
||
font-weight: bold;
|
||
font-size: 29rpx;
|
||
color: #333333;
|
||
padding-bottom: 10px;
|
||
margin-bottom: 10px;
|
||
border-bottom: 1px solid #E5E5E5;
|
||
}
|
||
.feiuong{
|
||
padding: 29rpx;
|
||
}
|
||
/deep/.uni-textarea-textarea{
|
||
font-weight: 400;
|
||
font-size: 25rpx;
|
||
}
|
||
/deep/.uni-textarea-placeholder{
|
||
font-weight: 400;
|
||
font-size: 25rpx;
|
||
color: #C5C5C5;
|
||
}
|
||
.textarea-pay-list{
|
||
width: 100%;
|
||
height: 120px;
|
||
margin-top: 10px;
|
||
}
|
||
.textarea-pay{
|
||
background-color: #f3f3f3;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: #F3F3F3;
|
||
border-radius: 14rpx;
|
||
padding: 7px;
|
||
}
|
||
|
||
.pay-ding{
|
||
padding-bottom: 15px;
|
||
}
|
||
.pay-ding,.feiuong{
|
||
background-color: #ffffff;
|
||
border-radius: 24rpx;
|
||
margin-top: 24rpx;
|
||
// padding: 29rpx;
|
||
}
|
||
.phone-pay{
|
||
width: 49rpx;
|
||
height: 44rpx;
|
||
}
|
||
|
||
.d-touxiang{
|
||
width: 46rpx;
|
||
height: 46rpx;
|
||
border-radius: 50%;
|
||
}
|
||
.money-pay-jia{
|
||
font-weight: 400;
|
||
font-size: 25rpx;
|
||
color: #666666;
|
||
text-decoration-line: line-through;
|
||
margin-left: 5px;
|
||
}
|
||
.money-pay-zhen-a1{
|
||
font-size: 24rpx;
|
||
color: #FF6000;
|
||
}
|
||
.money-pay-zhen-a2{
|
||
font-size:36rpx;
|
||
font-weight: bold;
|
||
color: #FF6000;
|
||
line-height:30rpx;
|
||
}
|
||
.money-pay-zhen-a3{
|
||
font-size: 24rpx;
|
||
color: #FF6000;
|
||
}
|
||
.money-pay-zhen{
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: flex-end;
|
||
margin-top:4rpx;
|
||
}
|
||
|
||
|
||
.content{
|
||
padding-top: 1px;
|
||
width: 100%;
|
||
background-color: #f7f7f7;
|
||
}
|
||
page {
|
||
background: #f7f7f7;
|
||
}
|
||
|
||
.bgImg {
|
||
background-image: url('https://admin.sjajk.com/file/uploadPath/2023/01/03/02952e7260e553d0f3bb26a1cd154921.png');
|
||
background-size: 100% 1161rpx;
|
||
}
|
||
|
||
.bg {
|
||
background: #fff;
|
||
}
|
||
|
||
.list_item {
|
||
// width: 650upx;
|
||
// height: 160upx;
|
||
width: 92%;
|
||
// margin: 30rpx 0;
|
||
background: #FFFFFF;
|
||
border-radius: 24upx;
|
||
padding: 20upx;
|
||
display: flex;
|
||
margin-top: 26upx;
|
||
|
||
.listitem_rightview {
|
||
margin-left: 20upx;
|
||
width: 80%;
|
||
padding-top: 10rpx;
|
||
|
||
.btnview {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
margin-top: 12upx;
|
||
width: 100%;
|
||
}
|
||
|
||
.titleview {
|
||
display: flex;
|
||
align-items: flex-end;
|
||
justify-content: space-between
|
||
}
|
||
|
||
.moneyview {
|
||
display: flex;
|
||
align-items: flex-end;
|
||
|
||
image {
|
||
width: 30upx;
|
||
height: 30upx;
|
||
margin-left: 20upx;
|
||
margin-bottom: 2upx;
|
||
}
|
||
}
|
||
|
||
.item_time {
|
||
font-size: 24upx;
|
||
font-family: PingFang SC;
|
||
font-weight: 500;
|
||
color: #999999;
|
||
margin-left: 10upx;
|
||
}
|
||
|
||
.item_money {
|
||
font-size: 32upx;
|
||
font-family: PingFang SC;
|
||
font-weight: 800;
|
||
color: #FF1200;
|
||
}
|
||
|
||
.item_oldmoney {
|
||
font-size: 24upx;
|
||
font-family: PingFang SC;
|
||
font-weight: 500;
|
||
text-decoration: line-through;
|
||
color: #999999;
|
||
margin-left: 10upx;
|
||
}
|
||
|
||
.item_btn {
|
||
width: 140upx;
|
||
height: 56upx;
|
||
background: linear-gradient(to right, #223845, #00a85b);
|
||
border-radius: 16upx;
|
||
text-align: center;
|
||
line-height: 56upx;
|
||
font-size: 24upx;
|
||
font-family: PingFang SC;
|
||
font-weight: 500;
|
||
color: #FFFFFF;
|
||
}
|
||
|
||
.item_yishou {
|
||
font-size: 22upx;
|
||
font-family: PingFang SC;
|
||
font-weight: 500;
|
||
color: #999999;
|
||
}
|
||
|
||
.item_title {
|
||
font-size: 28upx;
|
||
font-family: PingFang SC;
|
||
font-weight: bold;
|
||
color: #1E1F31;
|
||
}
|
||
}
|
||
|
||
image {
|
||
width: 220upx;
|
||
height: 160upx;
|
||
border-radius: 24upx;
|
||
}
|
||
}
|
||
|
||
.jz_btn {
|
||
width: 170rpx;
|
||
height: 56upx;
|
||
background: #096f4b;
|
||
margin-left: 40rpx;
|
||
border-radius: 35rpx;
|
||
line-height: 56upx;
|
||
text-align: center;
|
||
font-size: 28rpx;
|
||
font-family: PingFang SC;
|
||
font-weight: bold;
|
||
color: #FFFFFF;
|
||
}
|
||
|
||
.tabber {
|
||
width: 100%;
|
||
background: #ffffff;
|
||
position: fixed;
|
||
bottom: 0;
|
||
left: 0;
|
||
right: 0;
|
||
justify-content: center;
|
||
height: 127rpx;
|
||
padding: 0 30rpx;
|
||
}
|
||
|
||
.box {
|
||
/* border: 1px solid #005dff; */
|
||
background: #E8FAE1;
|
||
border-radius: 4rpx;
|
||
color: #096f4b;
|
||
padding: 5upx 10upx;
|
||
font-size: 22rpx;
|
||
margin-top: 10rpx;
|
||
}
|
||
|
||
.popup_pay {
|
||
width: 100%;
|
||
height: 210px;
|
||
position: relative;
|
||
padding-bottom: 45rpx;
|
||
/* #ifndef MP-WEIXIN */
|
||
/* height: 130px; */
|
||
/* #endif */
|
||
|
||
}
|
||
.push-button{
|
||
width: 100%;
|
||
height: 48px;
|
||
position: fixed;
|
||
bottom: 0px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
margin: 0 auto;
|
||
}
|
||
.pay_btn {
|
||
display: inline-block;
|
||
width: 92%;
|
||
text-align: center;
|
||
background: linear-gradient(90deg, #019C88, #28BA92, #35C495);
|
||
height: 40px;
|
||
border-radius: 28px;
|
||
color: #ffffff;
|
||
line-height: 40px;
|
||
margin-top: 4px;
|
||
font-size: 34rpx;
|
||
}
|
||
.pay-btns{
|
||
display: inline-block;
|
||
width: 94%;
|
||
text-align: center;
|
||
background: linear-gradient(90deg, #019C88, #28BA92, #35C495);
|
||
height: 40px;
|
||
border-radius: 28px;
|
||
color: #ffffff;
|
||
line-height: 40px;
|
||
margin-top: 5px;
|
||
font-size: 17px;
|
||
}
|
||
.serverAddress {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
}
|
||
.head-title{
|
||
font-weight: bold;
|
||
font-size: 30rpx;
|
||
color: #333333;
|
||
}
|
||
.zhuangtai{
|
||
color: #029D88;
|
||
}
|
||
.title-font{
|
||
font-size:28rpx;
|
||
color: #666666;
|
||
}
|
||
.detail-foot-youhui{
|
||
background: #fff;
|
||
padding: 26rpx;
|
||
width: 100%;
|
||
margin: 0 auto;
|
||
border-radius: 21rpx;
|
||
}
|
||
.value-font{
|
||
background: #fdeee9;
|
||
font-size: 26rpx;
|
||
color: #FF6000;
|
||
border-radius:30rpx;
|
||
height: 50rpx;
|
||
line-height: 50rpx;
|
||
padding: 0 26rpx;
|
||
}
|
||
.value-more{
|
||
display:inline-block;
|
||
border-top:1px solid;
|
||
border-right:1px solid;
|
||
width: 15rpx;
|
||
height: 15rpx;
|
||
border-color:#FF6000;
|
||
transform:rotate(45deg);
|
||
margin-top: 14rpx;
|
||
}
|
||
</style> |