974 lines
21 KiB
Vue
974 lines
21 KiB
Vue
|
<template>
|
|||
|
<view :style="viewColor">
|
|||
|
<view class='order-submission'>
|
|||
|
<view class="allAddress" @click="onAddress">
|
|||
|
<view class='address acea-row row-between-wrapper'>
|
|||
|
<view class='addressCon' v-if="addressInfo.real_name">
|
|||
|
<view class='name'>{{addressInfo.real_name}}
|
|||
|
<text class='phone'>{{addressInfo.phone}}</text>
|
|||
|
</view>
|
|||
|
<view>
|
|||
|
<text class='default t-color'
|
|||
|
v-if="addressInfo.is_default">[默认]</text>{{addressInfo.province}}{{addressInfo.city}}{{addressInfo.district}}{{addressInfo.street || ''}}{{addressInfo.detail}}
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<navigator v-else :url="'/pages/users/user_address/index'" hover-class="none" class='addressCon'>
|
|||
|
<view class='setaddress'>设置收货地址</view>
|
|||
|
</navigator>
|
|||
|
<view class='iconfont icon-jiantou'></view>
|
|||
|
</view>
|
|||
|
<view class='line'>
|
|||
|
<image :src="`${domain}/static/images/line.jpg`"></image>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<!-- 商品信息 -->
|
|||
|
<view class="wrapper">
|
|||
|
<view class="box">
|
|||
|
<view class="box_left">
|
|||
|
<image :src="image" mode=""></image>
|
|||
|
</view>
|
|||
|
<view class="box_right">
|
|||
|
<view class="msg_title">
|
|||
|
<view class="ms" style="font-size: 32rpx;">{{name}}</view>
|
|||
|
<view class="ms" style="color: #BBBBBB;">x1</view>
|
|||
|
</view>
|
|||
|
<view class="" style="color: red;font-size: 24rpx;">
|
|||
|
图片仅供参考,奖品以实物为准
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
|
|||
|
</view>
|
|||
|
<view class="date">
|
|||
|
<view class="date_left">中奖时间:</view>
|
|||
|
<view class="date_right">{{draw_time}}</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="">
|
|||
|
<button class="keepBnt" @click="handleSignAddress">保存</button>
|
|||
|
</view>
|
|||
|
<addressWindow ref="addressWindow" @changeTextareaStatus="changeTextareaStatus" :address='address'
|
|||
|
:pagesUrl="pagesUrl" @OnChangeAddress="OnChangeAddress" @changeClose="changeClose"></addressWindow>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
<script>
|
|||
|
|
|||
|
|
|||
|
let app = getApp();
|
|||
|
const CACHE_CITY = {};
|
|||
|
import {
|
|||
|
orderConfirm,
|
|||
|
getOrderConfirm,
|
|||
|
getCouponsOrderPrice,
|
|||
|
orderCreate,
|
|||
|
createOrder
|
|||
|
} from '@/api/order.js';
|
|||
|
import { signAddress } from '@/api/user.js';
|
|||
|
import {
|
|||
|
getAddressDefault,
|
|||
|
getAddressDetail,
|
|||
|
getAddressList,
|
|||
|
getUserInfo,
|
|||
|
getAgreementApi
|
|||
|
} from '@/api/user.js';
|
|||
|
import {
|
|||
|
openPaySubscribe
|
|||
|
} from '@/utils/SubscribeMessage.js';
|
|||
|
import {
|
|||
|
presellAgreement
|
|||
|
} from '@/api/activity.js';
|
|||
|
import addressWindow from '@/components/addressWindow';
|
|||
|
import { mapGetters } from "vuex";
|
|||
|
import { toLogin } from '@/libs/login.js';
|
|||
|
import { configMap } from '@/utils';
|
|||
|
import { HTTP_REQUEST_URL } from '@/config/app';
|
|||
|
import dayjs from "@/plugin/dayjs/dayjs.min.js";
|
|||
|
export default {
|
|||
|
components: {
|
|||
|
addressWindow
|
|||
|
},
|
|||
|
data() {
|
|||
|
return {
|
|||
|
// 备注
|
|||
|
msgObj: {},
|
|||
|
deliveryName: '快递配送',
|
|||
|
openType: 1, //优惠券打开方式 1=使用
|
|||
|
active: 0, //支付方式切换
|
|||
|
address: {
|
|||
|
address: false
|
|||
|
}, //地址组件
|
|||
|
addressInfo: {}, //地址信息
|
|||
|
userInfo: {}, //用户信息
|
|||
|
domain: HTTP_REQUEST_URL,
|
|||
|
pagesUrl:'',
|
|||
|
addressId:'',
|
|||
|
id:'',
|
|||
|
draw_time:'',
|
|||
|
name:'',
|
|||
|
image:''
|
|||
|
};
|
|||
|
},
|
|||
|
computed: {
|
|||
|
...mapGetters(['isLogin','viewColor']),
|
|||
|
...configMap(['hide_mer_status', 'alipay_open', 'yue_pay_status']),
|
|||
|
},
|
|||
|
onReady() {
|
|||
|
},
|
|||
|
mounted: function() {
|
|||
|
},
|
|||
|
onLoad: function(options) {
|
|||
|
let address_id = uni.getStorageSync('address_id')
|
|||
|
this.addressId = options.addressId || address_id;
|
|||
|
this.id = options.id || 0;
|
|||
|
this.draw_time = options.draw_time || 0;
|
|||
|
this.name = options.name;
|
|||
|
this.image = options.image;
|
|||
|
if (this.isLogin) {
|
|||
|
this.getaddressInfo();
|
|||
|
this.$nextTick(function() {
|
|||
|
this.$refs.addressWindow.getAddressList();
|
|||
|
this.getUserInfo()
|
|||
|
})
|
|||
|
}
|
|||
|
},
|
|||
|
methods: {
|
|||
|
handleSignAddress(){
|
|||
|
signAddress({address_id:this.addressId,id:this.id}).then((res)=>{
|
|||
|
this.$util.Tips({
|
|||
|
title: '保存成功',
|
|||
|
icon: 'none'
|
|||
|
});
|
|||
|
setTimeout(()=>{
|
|||
|
uni.navigateBack({
|
|||
|
delta:1
|
|||
|
})
|
|||
|
},1000)
|
|||
|
uni.setStorageSync('address_id', this.addressId);
|
|||
|
|
|||
|
}).catch(err=>{
|
|||
|
this.$util.Tips({
|
|||
|
title: err,
|
|||
|
icon: 'none'
|
|||
|
});
|
|||
|
})
|
|||
|
},
|
|||
|
/*
|
|||
|
* 获取默认收货地址或者获取某条地址信息
|
|||
|
*/
|
|||
|
getaddressInfo: function() {
|
|||
|
let that = this;
|
|||
|
if (that.addressId) {
|
|||
|
getAddressDetail(that.addressId).then(res => {
|
|||
|
res.data.is_default = parseInt(res.data.is_default);
|
|||
|
that.addressInfo = res.data || {};
|
|||
|
that.addressId = res.data.address_id || 0;
|
|||
|
that.address.addressId = res.data.address_id || 0;
|
|||
|
that.post = {real_name: res.data.real_name, phone: res.data.phone}
|
|||
|
})
|
|||
|
} else {
|
|||
|
getAddressList().then(res => {
|
|||
|
that.addressInfo = res.data.list.length > 0 ? res.data.list[0] : {};
|
|||
|
that.addressId = res.data.list.length > 0 ? res.data.list[0].address_id : 0;
|
|||
|
that.address.addressId = res.data.list.length > 0 ? res.data.list[0].address_id : 0;
|
|||
|
that.post = res.data.list.length > 0 ? {real_name: res.data.list[0].real_name,phone:res.data.list[0].phone } : {real_name: '', phone: ''}
|
|||
|
})
|
|||
|
}
|
|||
|
},
|
|||
|
// 获取个人信息
|
|||
|
getUserInfo() {
|
|||
|
getUserInfo().then(res => {
|
|||
|
this.userInfo = res.data
|
|||
|
})
|
|||
|
},
|
|||
|
onAddress: function() {
|
|||
|
let that = this;
|
|||
|
if(that.addressInfo.real_name){
|
|||
|
that.address.address = true;
|
|||
|
that.pagesUrl = '/pages/users/user_address/index?product_type=10';
|
|||
|
}else{
|
|||
|
uni.navigateTo({
|
|||
|
url: `/pages/users/user_address/index?product_type=10`,
|
|||
|
});
|
|||
|
}
|
|||
|
},
|
|||
|
/**
|
|||
|
* 选择地址后改变事件
|
|||
|
* @param object e
|
|||
|
*/
|
|||
|
OnChangeAddress: function(e) {
|
|||
|
this.addressId = e;
|
|||
|
this.address.address = false;
|
|||
|
this.getaddressInfo();
|
|||
|
},
|
|||
|
// 关闭地址弹窗;
|
|||
|
changeClose: function() {
|
|||
|
this.$set(this.address, 'address', false);
|
|||
|
},
|
|||
|
changeTextareaStatus: function() {
|
|||
|
// for (let i = 0, len = this.coupon.list.length; i < len; i++) {
|
|||
|
// this.coupon.list[i].use_title = '';
|
|||
|
// this.coupon.list[i].is_use = 0;
|
|||
|
// }
|
|||
|
this.status = 0;
|
|||
|
// this.$set(this.coupon, 'list', this.coupon.list);
|
|||
|
},
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style lang="scss" scoped>
|
|||
|
.wrapper{
|
|||
|
background: #fff;
|
|||
|
margin-top: 20rpx;
|
|||
|
padding: 20rpx;
|
|||
|
}
|
|||
|
.box{
|
|||
|
display: flex;
|
|||
|
&_left{
|
|||
|
uni-image,
|
|||
|
image{
|
|||
|
width: 240rpx;
|
|||
|
height: 240rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
&_right{
|
|||
|
width: 100%;
|
|||
|
.msg_title{
|
|||
|
display: flex;
|
|||
|
justify-content: space-between;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
.date{
|
|||
|
display: flex;
|
|||
|
justify-content: space-between;
|
|||
|
margin-top: 20rpx;
|
|||
|
&_left{
|
|||
|
margin-left: 30rpx;
|
|||
|
color: #BBBBBB;
|
|||
|
}
|
|||
|
}
|
|||
|
.keepBnt {
|
|||
|
width: 690rpx;
|
|||
|
height: 86rpx;
|
|||
|
border-radius: 50rpx;
|
|||
|
text-align: center;
|
|||
|
line-height: 86rpx;
|
|||
|
margin: 50rpx auto;
|
|||
|
font-size: 32rpx;
|
|||
|
color: #fff;
|
|||
|
background-color: var(--view-theme);
|
|||
|
}
|
|||
|
/deep/checkbox .uni-checkbox-input.uni-checkbox-input-checked,
|
|||
|
/deep/checkbox .wx-checkbox-input.wx-checkbox-input-checked {
|
|||
|
border: 1px solid var(--view-theme)!important;
|
|||
|
background-color: var(--view-theme)!important;
|
|||
|
color: #fff!important;
|
|||
|
}
|
|||
|
/deep/radio .wx-radio-input.wx-radio-input-checked,
|
|||
|
/deep/uni-radio .uni-radio-input.uni-radio-input-checked {
|
|||
|
border: 1px solid var(--view-theme)!important;
|
|||
|
background-color: var(--view-theme)!important;
|
|||
|
}
|
|||
|
.order-submission .line {
|
|||
|
position: absolute;
|
|||
|
left: 0;
|
|||
|
top: 0;
|
|||
|
width: 100%;
|
|||
|
height: 3rpx;
|
|||
|
}
|
|||
|
.order-submission .line image {
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
display: block;
|
|||
|
}
|
|||
|
.order-submission .address {
|
|||
|
padding: 28rpx 30rpx;
|
|||
|
background-color: #fff;
|
|||
|
box-sizing: border-box;
|
|||
|
}
|
|||
|
.order-submission .address .addressCon {
|
|||
|
width: 610rpx;
|
|||
|
font-size: 26rpx;
|
|||
|
color: #666;
|
|||
|
}
|
|||
|
.order-submission .address .addressCon .name {
|
|||
|
font-size: 30rpx;
|
|||
|
color: #282828;
|
|||
|
font-weight: bold;
|
|||
|
margin-bottom: 10rpx;
|
|||
|
}
|
|||
|
.order-submission .address .addressCon .name .phone {
|
|||
|
margin-left: 50rpx;
|
|||
|
}
|
|||
|
.order-submission .address .addressCon .default {
|
|||
|
margin-right: 12rpx;
|
|||
|
}
|
|||
|
.t-color{
|
|||
|
color: var(--view-theme);
|
|||
|
}
|
|||
|
.order-submission .address .addressCon .setaddress {
|
|||
|
color: #333;
|
|||
|
font-size: 28rpx;
|
|||
|
}
|
|||
|
.order-submission .address .iconfont {
|
|||
|
font-size: 35rpx;
|
|||
|
color: #707070;
|
|||
|
}
|
|||
|
.order-submission .allAddress {
|
|||
|
width: 100%;
|
|||
|
}
|
|||
|
.order-submission .allAddress .nav {
|
|||
|
width: 710rpx;
|
|||
|
margin: 0 auto;
|
|||
|
}
|
|||
|
.order-submission .allAddress .nav .item {
|
|||
|
width: 355rpx;
|
|||
|
}
|
|||
|
.order-submission .allAddress .nav .item.on {
|
|||
|
position: relative;
|
|||
|
width: 250rpx;
|
|||
|
}
|
|||
|
.order-submission .allAddress .nav .item.on::before {
|
|||
|
position: absolute;
|
|||
|
bottom: 0;
|
|||
|
content: "快递配送";
|
|||
|
font-size: 28rpx;
|
|||
|
display: block;
|
|||
|
height: 0;
|
|||
|
width: 336rpx;
|
|||
|
border-width: 0 20rpx 80rpx 0;
|
|||
|
border-style: none solid solid;
|
|||
|
border-color: transparent transparent #fff;
|
|||
|
z-index: 2;
|
|||
|
border-radius: 7rpx 30rpx 0 0;
|
|||
|
text-align: center;
|
|||
|
line-height: 80rpx;
|
|||
|
}
|
|||
|
.order-submission .allAddress .nav .item:nth-of-type(2).on::before {
|
|||
|
content: "到店核销";
|
|||
|
border-width: 0 0 80rpx 20rpx;
|
|||
|
border-radius: 30rpx 7rpx 0 0;
|
|||
|
}
|
|||
|
.order-submission .allAddress .nav .item.on2 {
|
|||
|
position: relative;
|
|||
|
}
|
|||
|
.order-submission .allAddress .nav .item.on2::before {
|
|||
|
position: absolute;
|
|||
|
bottom: 0;
|
|||
|
content: "到店核销";
|
|||
|
font-size: 28rpx;
|
|||
|
display: block;
|
|||
|
height: 0;
|
|||
|
width: 400rpx;
|
|||
|
border-width: 0 0 60rpx 60rpx;
|
|||
|
border-style: none solid solid;
|
|||
|
border-color: transparent transparent #f7c1bd;
|
|||
|
border-radius: 40rpx 6rpx 0 0;
|
|||
|
text-align: center;
|
|||
|
line-height: 60rpx;
|
|||
|
}
|
|||
|
.order-submission .allAddress .nav .item:nth-of-type(1).on2::before {
|
|||
|
content: "快递配送";
|
|||
|
border-width: 0 60rpx 60rpx 0;
|
|||
|
border-radius: 6rpx 40rpx 0 0;
|
|||
|
}
|
|||
|
.order-submission .allAddress .address {
|
|||
|
height: 150rpx;
|
|||
|
margin: 0 auto;
|
|||
|
}
|
|||
|
.order-submission .allAddress .line {
|
|||
|
margin: 0 auto;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .discount .placeholder {
|
|||
|
color: #ccc;
|
|||
|
text-align: right;
|
|||
|
}
|
|||
|
.order-submission .wrapper {
|
|||
|
margin-bottom: 12rpx;
|
|||
|
background-color: #fff;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item {
|
|||
|
padding: 27rpx 30rpx;
|
|||
|
font-size: 30rpx;
|
|||
|
color: #282828;
|
|||
|
}
|
|||
|
.order-submission .virtual_form{
|
|||
|
padding: 0 30rpx;
|
|||
|
}
|
|||
|
/deep/.order-submission .virtual_form .uni-input-wrapper {
|
|||
|
text-align: right;
|
|||
|
}
|
|||
|
.order-submission .virtual_form .item-require{
|
|||
|
color: red;
|
|||
|
margin-right: 4rpx;
|
|||
|
}
|
|||
|
.order-submission .virtual_form .item{
|
|||
|
border-bottom: 1rpx solid #EEEEEE;
|
|||
|
padding: 27rpx 0;
|
|||
|
}
|
|||
|
.order-submission .virtual_form .item.on .discount{
|
|||
|
max-width: 460rpx;
|
|||
|
}
|
|||
|
.order-submission .virtual_form .item.pd0{
|
|||
|
padding-bottom: 0;
|
|||
|
}
|
|||
|
.order-submission .virtual_form .item .radio{
|
|||
|
margin: 0 22rpx 0 22rpx;
|
|||
|
padding: 10rpx 0;
|
|||
|
}
|
|||
|
.upload {
|
|||
|
display: -webkit-box;
|
|||
|
display: -moz-box;
|
|||
|
display: -webkit-flex;
|
|||
|
display: -ms-flexbox;
|
|||
|
display: flex;
|
|||
|
-webkit-box-lines: multiple;
|
|||
|
-moz-box-lines: multiple;
|
|||
|
-o-box-lines: multiple;
|
|||
|
-webkit-flex-wrap: wrap;
|
|||
|
-ms-flex-wrap: wrap;
|
|||
|
flex-wrap: wrap;
|
|||
|
}
|
|||
|
.order-submission .virtual_form .pictrue {
|
|||
|
width: 156rpx;
|
|||
|
height: 156rpx;
|
|||
|
margin: 24rpx 20rpx 0 0;
|
|||
|
position: relative;
|
|||
|
font-size: 11px;
|
|||
|
color: #bbb;
|
|||
|
border-radius: 8rpx;
|
|||
|
&:nth-child(4n) {
|
|||
|
margin-right: 0;
|
|||
|
}
|
|||
|
&:nth-last-child(1) {
|
|||
|
border: 0.5px solid #ddd;
|
|||
|
box-sizing: border-box;
|
|||
|
}
|
|||
|
uni-image,
|
|||
|
image {
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
img {
|
|||
|
-webkit-touch-callout: none;
|
|||
|
-webkit-user-select: none;
|
|||
|
-moz-user-select: none;
|
|||
|
display: block;
|
|||
|
position: absolute;
|
|||
|
top: 0;
|
|||
|
left: 0;
|
|||
|
opacity: 0;
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
}
|
|||
|
}
|
|||
|
.icon-guanbi4 {
|
|||
|
color: #fff;
|
|||
|
font-size: 14rpx;
|
|||
|
position: absolute;
|
|||
|
top: 0;
|
|||
|
right: 0;
|
|||
|
width: 30rpx;
|
|||
|
height: 30rpx;
|
|||
|
text-align: center;
|
|||
|
line-height: 30rpx;
|
|||
|
border-radius: 0 8rpx 0 8rpx;
|
|||
|
background: rgba(0,0,0,.6);
|
|||
|
}
|
|||
|
}
|
|||
|
.vipImg {
|
|||
|
width: 65rpx;
|
|||
|
height: 28rpx;
|
|||
|
margin-left: 4rpx;
|
|||
|
image {
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
display: block;
|
|||
|
}
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .discount {
|
|||
|
font-size: 30rpx;
|
|||
|
color: #999;
|
|||
|
&.discount_voice {
|
|||
|
overflow: hidden;
|
|||
|
text-overflow: ellipsis;
|
|||
|
white-space: nowrap;
|
|||
|
width: 500rpx;
|
|||
|
text-align: right;
|
|||
|
}
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .discount .iconfont {
|
|||
|
color: #515151;
|
|||
|
font-size: 30rpx;
|
|||
|
margin-left: 15rpx;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .discount .num {
|
|||
|
font-size: 32rpx;
|
|||
|
margin-right: 20rpx;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .shipping {
|
|||
|
font-size: 30rpx;
|
|||
|
color: #999;
|
|||
|
position: relative;
|
|||
|
padding-right: 58rpx;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .shipping .iconfont {
|
|||
|
font-size: 35rpx;
|
|||
|
color: #707070;
|
|||
|
position: absolute;
|
|||
|
right: 0;
|
|||
|
top: 50%;
|
|||
|
transform: translateY(-50%);
|
|||
|
margin-left: 30rpx;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item input {
|
|||
|
flex: 1;
|
|||
|
height: 100%;
|
|||
|
margin-left: 20rpx;
|
|||
|
text-align: right;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .placeholder {
|
|||
|
color: #ccc;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .list {
|
|||
|
margin-top: 35rpx;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .list .payItem {
|
|||
|
border: 1px solid #eee;
|
|||
|
border-radius: 6rpx;
|
|||
|
height: 86rpx;
|
|||
|
width: 100%;
|
|||
|
box-sizing: border-box;
|
|||
|
margin-top: 20rpx;
|
|||
|
font-size: 28rpx;
|
|||
|
color: #282828;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .list .payItem.on {
|
|||
|
border-color: var(--view-theme);
|
|||
|
color: var(--view-theme);
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .list .payItem .name {
|
|||
|
width: 50%;
|
|||
|
text-align: center;
|
|||
|
border-right: 1px solid #eee;
|
|||
|
justify-content: left;
|
|||
|
padding-left: 80rpx;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .list .payItem .name .iconfont {
|
|||
|
width: 44rpx;
|
|||
|
height: 44rpx;
|
|||
|
border-radius: 50%;
|
|||
|
text-align: center;
|
|||
|
line-height: 44rpx;
|
|||
|
background-color: #fe960f;
|
|||
|
color: #fff;
|
|||
|
font-size: 30rpx;
|
|||
|
margin-right: 15rpx;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .list .payItem .name .iconfont.icon-weixin2 {
|
|||
|
background-color: #41b035;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .list .payItem .name .iconfont.icon-icon34 {
|
|||
|
background-color: #4295D5;
|
|||
|
}
|
|||
|
.order-submission .wrapper .item .list .payItem .tip {
|
|||
|
width: 49%;
|
|||
|
text-align: center;
|
|||
|
font-size: 26rpx;
|
|||
|
color: #aaa;
|
|||
|
}
|
|||
|
.order-submission .moneyList {
|
|||
|
margin-top: 12rpx;
|
|||
|
background-color: #fff;
|
|||
|
padding: 30rpx;
|
|||
|
}
|
|||
|
.order-submission .moneyList .item {
|
|||
|
font-size: 28rpx;
|
|||
|
color: #282828;
|
|||
|
}
|
|||
|
.order-submission .moneyList .item~.item {
|
|||
|
margin-top: 20rpx;
|
|||
|
}
|
|||
|
.order-submission .moneyList .item .money {
|
|||
|
color: #868686;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
}
|
|||
|
.order-submission .footer {
|
|||
|
width: 100%;
|
|||
|
height: 100rpx;
|
|||
|
height: calc(100rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
|
|||
|
height: calc(100rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
|
|||
|
background-color: #fff;
|
|||
|
padding: 0 30rpx;
|
|||
|
font-size: 28rpx;
|
|||
|
color: #333;
|
|||
|
box-sizing: border-box;
|
|||
|
position: fixed;
|
|||
|
bottom: 0;
|
|||
|
left: 0;
|
|||
|
z-index: 30;
|
|||
|
.footer_count{
|
|||
|
font-size: 28rpx;
|
|||
|
}
|
|||
|
.coupon_price{
|
|||
|
color: #999999;
|
|||
|
font-size: 20rpx;
|
|||
|
margin-top: 10rpx;
|
|||
|
text{
|
|||
|
color: #282828;
|
|||
|
padding: 2rpx 10rpx;
|
|||
|
background: #F5F5F5;
|
|||
|
border-radius: 26rpx;
|
|||
|
margin-left: 20rpx;
|
|||
|
line-height: 30rpx;
|
|||
|
height: 30rpx;
|
|||
|
display: inline-block;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
.pColor{
|
|||
|
color: var(--view-priceColor);
|
|||
|
}
|
|||
|
.order-submission .footer .settlement {
|
|||
|
font-size: 30rpx;
|
|||
|
color: #fff;
|
|||
|
width: 240rpx;
|
|||
|
height: 70rpx;
|
|||
|
background-color: var(--view-theme);
|
|||
|
border-radius: 50rpx;
|
|||
|
text-align: center;
|
|||
|
line-height: 70rpx;
|
|||
|
&.disabled {
|
|||
|
background-color: #cccccc;
|
|||
|
}
|
|||
|
}
|
|||
|
.footer .transparent {
|
|||
|
opacity: 0
|
|||
|
}
|
|||
|
.event_bg {
|
|||
|
background: #FF7F00;
|
|||
|
}
|
|||
|
.event_color {
|
|||
|
color: #FF7F00;
|
|||
|
}
|
|||
|
.color_red {
|
|||
|
color: var(--view-theme);
|
|||
|
}
|
|||
|
.storeinfo-wrapper {
|
|||
|
.store-item {
|
|||
|
margin-top: 12rpx;
|
|||
|
background-color: #fff;
|
|||
|
.store-title {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
padding: 28rpx 30rpx;
|
|||
|
.icon-shangjiadingdan {
|
|||
|
font-size: 32rpx;
|
|||
|
}
|
|||
|
.icon-xiangyou {
|
|||
|
font-size: 26rpx;
|
|||
|
color: #999;
|
|||
|
}
|
|||
|
.txt {
|
|||
|
margin: 0 8rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
.product-item {
|
|||
|
display: flex;
|
|||
|
padding: 25rpx 30rpx;
|
|||
|
border-top: 1px solid #F0F0F0;
|
|||
|
.img-box {
|
|||
|
width: 130rpx;
|
|||
|
height: 130rpx;
|
|||
|
image {
|
|||
|
width: 130rpx;
|
|||
|
height: 130rpx;
|
|||
|
border-radius: 16rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
.content {
|
|||
|
position: relative;
|
|||
|
width: 550rpx;
|
|||
|
margin-left: 30rpx;
|
|||
|
font-size: 28rpx;
|
|||
|
color: #282828;
|
|||
|
overflow: hidden;
|
|||
|
&.event_content {
|
|||
|
.line1 {
|
|||
|
width: 360rpx;
|
|||
|
}
|
|||
|
.price {
|
|||
|
position: absolute;
|
|||
|
top: 0;
|
|||
|
right: 0;
|
|||
|
margin-top: 0;
|
|||
|
text {
|
|||
|
display: block;
|
|||
|
text-align: right;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
.event_name {
|
|||
|
display: inline-block;
|
|||
|
margin-right: 9rpx;
|
|||
|
color: #fff;
|
|||
|
font-size: 20rpx;
|
|||
|
padding: 0 8rpx;
|
|||
|
line-height: 30rpx;
|
|||
|
text-align: center;
|
|||
|
border-radius: 6rpx;
|
|||
|
}
|
|||
|
.event_ship {
|
|||
|
font-size: 20rpx;
|
|||
|
margin-top: 10rpx;
|
|||
|
}
|
|||
|
.label {
|
|||
|
margin-top: 10rpx;
|
|||
|
color: #868686;
|
|||
|
font-size: 20rpx;
|
|||
|
}
|
|||
|
.price {
|
|||
|
margin-top: 20rpx;
|
|||
|
color: var(--view-priceColor);
|
|||
|
position: relative;
|
|||
|
text {
|
|||
|
margin-left: 10rpx;
|
|||
|
color: #999;
|
|||
|
}
|
|||
|
.delivery_type{
|
|||
|
float: right;
|
|||
|
text{
|
|||
|
color: var(--view-priceColor);
|
|||
|
font-size: 20rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
.err-txt {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
margin-top: 18rpx;
|
|||
|
color: $theme-color;
|
|||
|
.iconfont {
|
|||
|
margin-right: 10rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
.event_payTime {
|
|||
|
padding: 0 30rpx 24rpx;
|
|||
|
.event_progress {
|
|||
|
margin-top: 50rpx;
|
|||
|
position: relative;
|
|||
|
}
|
|||
|
.progress_step {
|
|||
|
height: 80rpx;
|
|||
|
position: relative;
|
|||
|
padding-left: 60rpx;
|
|||
|
&::before {
|
|||
|
content: '';
|
|||
|
display: block;
|
|||
|
width: 2rpx;
|
|||
|
height: 40rpx;
|
|||
|
background: var(--view-theme);
|
|||
|
position: absolute;
|
|||
|
left: 35rpx;
|
|||
|
top: 18rpx;
|
|||
|
}
|
|||
|
&:nth-child(2) {
|
|||
|
&::before {
|
|||
|
bottom: 64rpx;
|
|||
|
top: auto;
|
|||
|
background: #EFEFEF;
|
|||
|
}
|
|||
|
&::after {
|
|||
|
background: #EFEFEF;
|
|||
|
}
|
|||
|
}
|
|||
|
&::after {
|
|||
|
content: '';
|
|||
|
display: block;
|
|||
|
width: 14rpx;
|
|||
|
height: 14rpx;
|
|||
|
background: var(--view-theme);
|
|||
|
border-radius: 50%;
|
|||
|
position: absolute;
|
|||
|
top: 10rpx;
|
|||
|
left: 29rpx;
|
|||
|
}
|
|||
|
.name {
|
|||
|
float: left;
|
|||
|
color: #282828;
|
|||
|
|
|||
|
&.color_red {
|
|||
|
color: var(--view-theme);
|
|||
|
}
|
|||
|
}
|
|||
|
.price {
|
|||
|
float: right;
|
|||
|
color: #282828;
|
|||
|
&.color_red {
|
|||
|
color: var(--view-priceColor);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
.progress_pay {
|
|||
|
padding-left: 60rpx;
|
|||
|
font-size: 24rpx;
|
|||
|
color: #868686;
|
|||
|
margin-top: -34rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
.integral_checked {
|
|||
|
margin-left: 10rpx;
|
|||
|
display: inline;
|
|||
|
.iconfont{
|
|||
|
font-size: 38rpx;
|
|||
|
}
|
|||
|
.icon-weixuanzhong {
|
|||
|
color: #BFBFBF;
|
|||
|
}
|
|||
|
.icon-xuanzhong1 {
|
|||
|
color: var(--view-theme);
|
|||
|
}
|
|||
|
}
|
|||
|
uni-checkbox-group,
|
|||
|
.checkgroup {
|
|||
|
width: 100%;
|
|||
|
.checkbox {
|
|||
|
float: right;
|
|||
|
}
|
|||
|
}
|
|||
|
.icon-wenhao1 {
|
|||
|
color: #868686;
|
|||
|
margin-right: 6rpx;
|
|||
|
}
|
|||
|
.total {
|
|||
|
display: flex;
|
|||
|
justify-content: flex-end;
|
|||
|
padding-right: 30rpx;
|
|||
|
padding-bottom: 30rpx;
|
|||
|
font-size: 26rpx;
|
|||
|
color: #282828;
|
|||
|
.price {
|
|||
|
margin-left: 10rpx;
|
|||
|
color: var(--view-priceColor);
|
|||
|
font-size: 28rpx;
|
|||
|
font-weight: bold;
|
|||
|
text {
|
|||
|
font-size: 20rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
.store-address {
|
|||
|
padding: 30rpx 23rpx;
|
|||
|
margin: 0 30rpx;
|
|||
|
background: #F6F6F6;
|
|||
|
border-radius: 8rpx;
|
|||
|
font-size: 24rpx;
|
|||
|
display: -webkit-box;
|
|||
|
display: -moz-box;
|
|||
|
display: -ms-flexbox;
|
|||
|
display: -webkit-flex;
|
|||
|
display: flex;
|
|||
|
/*垂直居中*/
|
|||
|
-webkit-box-align: center;
|
|||
|
/*旧版本*/
|
|||
|
-moz-box-align: center;
|
|||
|
/*旧版本*/
|
|||
|
-ms-flex-align: center;
|
|||
|
/*混合版本*/
|
|||
|
-webkit-align-items: center;
|
|||
|
/*新版本*/
|
|||
|
align-items: center;
|
|||
|
/*新版本*/
|
|||
|
.name {
|
|||
|
width: 148rpx;
|
|||
|
margin-right: 20rpx;
|
|||
|
}
|
|||
|
.info {
|
|||
|
flex: 1;
|
|||
|
}
|
|||
|
.map {
|
|||
|
text-align: center;
|
|||
|
padding-left: 40rpx;
|
|||
|
position: relative;
|
|||
|
&::before {
|
|||
|
content: '';
|
|||
|
display: inline-block;
|
|||
|
width: 2rpx;
|
|||
|
height: 42rpx;
|
|||
|
background-color: #DDDDDD;
|
|||
|
position: absolute;
|
|||
|
left: 0;
|
|||
|
top: 18rpx;
|
|||
|
}
|
|||
|
.iconfont {
|
|||
|
color: var(--view-theme);
|
|||
|
}
|
|||
|
.map_text {
|
|||
|
color: var(--view-theme);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
.settlementAgreement {
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
position: fixed;
|
|||
|
top: 0;
|
|||
|
left: 0;
|
|||
|
background: rgba(0, 0, 0, .5);
|
|||
|
z-index: 40;
|
|||
|
}
|
|||
|
.settlementAgreement .setAgCount {
|
|||
|
background: #fff;
|
|||
|
width: 656rpx;
|
|||
|
height: 458px;
|
|||
|
position: absolute;
|
|||
|
top: 50%;
|
|||
|
left: 50%;
|
|||
|
border-radius: 12rpx;
|
|||
|
-webkit-border-radius: 12rpx;
|
|||
|
padding: 52rpx;
|
|||
|
-webkit-transform: translate(-50%, -50%);
|
|||
|
-moz-transform: translate(-50%, -50%);
|
|||
|
transform: translate(-50%, -50%);
|
|||
|
overflow: hidden;
|
|||
|
.content {
|
|||
|
height: 900rpx;
|
|||
|
overflow-y: scroll;
|
|||
|
/deep/ p {
|
|||
|
font-size: 13px;
|
|||
|
line-height: 22px;
|
|||
|
}
|
|||
|
/deep/ img {
|
|||
|
max-width: 100%;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
.settlementAgreement .setAgCount .icon {
|
|||
|
font-size: 42rpx;
|
|||
|
color: #b4b1b4;
|
|||
|
position: absolute;
|
|||
|
top: 15rpx;
|
|||
|
right: 15rpx;
|
|||
|
}
|
|||
|
.settlementAgreement .setAgCount .title {
|
|||
|
color: #333;
|
|||
|
font-size: 32rpx;
|
|||
|
text-align: center;
|
|||
|
font-weight: bold;
|
|||
|
}
|
|||
|
.settlementAgreement .setAgCount .content {
|
|||
|
margin-top: 32rpx;
|
|||
|
color: #333;
|
|||
|
font-size: 26rpx;
|
|||
|
line-height: 22px;
|
|||
|
text-align: justify;
|
|||
|
text-justify: distribute-all-lines;
|
|||
|
height: 756rpx;
|
|||
|
overflow-y: scroll;
|
|||
|
}
|
|||
|
</style>
|