2020-08-13 08:12:57 +00:00
|
|
|
|
<template>
|
|
|
|
|
<view>
|
|
|
|
|
<view class='order-submission'>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view class="allAddress" :style="store_self_mention ? '':'padding-top:10rpx;'">
|
2020-08-13 08:12:57 +00:00
|
|
|
|
<view class="nav acea-row">
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class="item font-color" :class="deliveryType === 1 ? 'on' : 'on2'"
|
2023-06-28 16:24:30 +00:00
|
|
|
|
@tap="addressType(1)" v-if='store_self_mention' />
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class="item font-color" :class="deliveryType === 2 ? 'on' : 'on2'"
|
|
|
|
|
@tap="addressType(2)" v-if='store_self_mention' />
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
2023-06-26 12:52:27 +00:00
|
|
|
|
<!-- 收货地址的选择 -->
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class='address acea-row row-between-wrapper' @tap='onAddress' v-if='deliveryType === 1'
|
2023-06-26 12:52:27 +00:00
|
|
|
|
:style="store_self_mention ? '':'border-top-left-radius: 14rpx;border-top-right-radius: 14rpx;'">
|
|
|
|
|
<view class='addressCon' v-if="addressInfo.name">
|
|
|
|
|
<view class='name'>{{ addressInfo.name }}
|
|
|
|
|
<text class='phone'>{{ addressInfo.mobile }}</text>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view class="acea-row">
|
2023-06-26 12:52:27 +00:00
|
|
|
|
<text class='default font-color' v-if="addressInfo.defaultStatus">[默认]</text>
|
|
|
|
|
<text class="line2">{{ addressInfo.areaName }} {{addressInfo.detailAddress}}</text>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</view>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
|
|
|
|
<view class='addressCon' v-else>
|
|
|
|
|
<view class='setaddress'>设置收货地址</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='iconfont icon-jiantou'></view>
|
|
|
|
|
</view>
|
2023-06-28 16:24:30 +00:00
|
|
|
|
<!-- 门店的选择 -->
|
2020-08-13 08:12:57 +00:00
|
|
|
|
<view class='address acea-row row-between-wrapper' v-else @tap="showStoreList">
|
|
|
|
|
<block v-if="storeList.length>0">
|
|
|
|
|
<view class='addressCon'>
|
2023-06-28 16:24:30 +00:00
|
|
|
|
<view class='name'>{{ system_store.name }}
|
|
|
|
|
<text class='phone'>{{ system_store.phone }}</text>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
2023-06-28 16:24:30 +00:00
|
|
|
|
<view class="line1"> {{ system_store.areaName }}{{", " + system_store.detailAddress}}
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</view>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
|
|
|
|
<view class='iconfont icon-jiantou'></view>
|
|
|
|
|
</block>
|
|
|
|
|
<block v-else>
|
|
|
|
|
<view>暂无门店信息</view>
|
|
|
|
|
</block>
|
|
|
|
|
</view>
|
|
|
|
|
<view class='line'>
|
|
|
|
|
<image src='/static/images/line.jpg'></image>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view class="pad30">
|
2023-06-29 15:32:16 +00:00
|
|
|
|
<orderGoods :cartInfo="cartInfo" />
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<!-- 优惠劵展示 -->
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view class='wrapper borRadius14'>
|
|
|
|
|
<view class='item acea-row row-between-wrapper' @tap='couponTap'
|
2023-09-26 14:46:06 +00:00
|
|
|
|
v-if="orderInfoVo.type === 0 && productType==='normal'">
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view>优惠券</view>
|
|
|
|
|
<view class='discount'>{{couponTitle}}
|
|
|
|
|
<text class='iconfont icon-jiantou'></text>
|
|
|
|
|
</view>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
2023-06-30 16:05:01 +00:00
|
|
|
|
<!-- 积分展示 -->
|
2023-09-26 14:46:06 +00:00
|
|
|
|
<view class='item acea-row row-between-wrapper' v-if="orderInfoVo.type === 0 && productType==='normal'">
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view>积分抵扣</view>
|
|
|
|
|
<view class='discount acea-row row-middle'>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view> {{pointStatus ? "剩余积分":"当前积分"}}
|
|
|
|
|
<text class='num font-color'>
|
|
|
|
|
{{pointStatus ? orderInfoVo.totalPoint - orderInfoVo.usedPoint : (orderInfoVo.totalPoint || 0) }}
|
|
|
|
|
</text>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</view>
|
|
|
|
|
<checkbox-group @change="ChangeIntegral">
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<checkbox :checked='pointStatus' :disabled="orderInfoVo.totalPoint === 0 && !pointStatus"/>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</checkbox-group>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2023-09-23 16:45:48 +00:00
|
|
|
|
<!-- VIP 展示 -->
|
|
|
|
|
<view class='item acea-row row-between-wrapper'
|
|
|
|
|
v-if="orderInfoVo.price.vipPrice > 0">
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view>会员优惠</view>
|
2023-09-23 16:45:48 +00:00
|
|
|
|
<view class='discount'>-¥{{ fen2yuan(orderInfoVo.price.vipPrice) }}</view>
|
|
|
|
|
</view>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<!-- 配送展示 TODO -->
|
|
|
|
|
<view class='item acea-row row-between-wrapper' v-if='deliveryType === 1'>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view>快递费用</view>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class='discount' v-if='orderInfoVo.price.deliveryPrice > 0'>
|
|
|
|
|
+¥{{ fen2yuan(orderInfoVo.price.deliveryPrice) }}
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view class='discount' v-else>免运费</view>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view v-else>
|
|
|
|
|
<view class="item acea-row row-between-wrapper">
|
|
|
|
|
<view>联系人</view>
|
|
|
|
|
<view class="discount textR">
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<input type="text" placeholder="请填写您的联系姓名" placeholder-style="color:#ccc;"
|
|
|
|
|
placeholder-class="placeholder" @blur='realName' />
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item acea-row row-between-wrapper">
|
|
|
|
|
<view>联系电话</view>
|
|
|
|
|
<view class="discount textR">
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<input type="text" placeholder="请填写您的联系电话" placeholder-style="color:#ccc;"
|
|
|
|
|
placeholder-class="placeholder" @blur='phone' />
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</view>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2023-06-30 15:04:05 +00:00
|
|
|
|
<view class='item'>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view>备注信息</view>
|
2023-06-30 15:04:05 +00:00
|
|
|
|
<textarea placeholder-class='placeholder' @input='bindHideKeyboard'
|
|
|
|
|
value="" name="mark" placeholder='请添加备注(150字以内)' />
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</view>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
|
|
|
|
|
<!-- 各种价格 -->
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view class='moneyList borRadius14'>
|
|
|
|
|
<view class='item acea-row row-between-wrapper'>
|
|
|
|
|
<view>商品总价:</view>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class='money'>¥{{ fen2yuan(orderInfoVo.price.totalPrice || 0 ) }}</view>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</view>
|
2023-10-07 14:48:39 +00:00
|
|
|
|
<view class='item acea-row row-between-wrapper' v-if="orderInfoVo.price.discountPrice > 0">
|
2023-10-05 09:22:38 +00:00
|
|
|
|
<view>订单优惠:</view>
|
|
|
|
|
<view class='money'>-¥{{ fen2yuan(orderInfoVo.price.discountPrice) }}</view>
|
|
|
|
|
</view>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class='item acea-row row-between-wrapper' v-if="orderInfoVo.price.couponPrice > 0">
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view>优惠券抵扣:</view>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class='money'>-¥{{ fen2yuan(orderInfoVo.price.couponPrice) }}</view>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</view>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class='item acea-row row-between-wrapper' v-if="orderInfoVo.price.pointPrice > 0">
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view>积分抵扣:</view>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class='money'>-¥{{ fen2yuan(orderInfoVo.price.pointPrice) }}</view>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</view>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class='item acea-row row-between-wrapper' v-if="orderInfoVo.price.deliveryPrice > 0">
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view>运费:</view>
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<view class='money'>+¥{{ fen2yuan(orderInfoVo.price.deliveryPrice) }}</view>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
</view>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
<view style='height:120rpx;'></view>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
|
|
|
|
<view class='footer acea-row row-between-wrapper'>
|
|
|
|
|
<view>合计:
|
2023-06-30 14:44:36 +00:00
|
|
|
|
<text class='font-color'>¥{{ fen2yuan(orderInfoVo.price.payPrice || 0) }}</text>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
</view>
|
|
|
|
|
<view class='settlement' style='z-index:100' @tap="SubOrder">立即结算</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2023-06-28 16:37:30 +00:00
|
|
|
|
|
|
|
|
|
<!-- 优惠劵的弹窗选择 -->
|
|
|
|
|
<couponListWindow
|
|
|
|
|
:coupon='coupon'
|
2023-09-26 15:20:56 +00:00
|
|
|
|
@ChangCouponsClose="ChangCouponsClose"
|
2023-06-28 16:37:30 +00:00
|
|
|
|
:openType='openType'
|
|
|
|
|
@ChangCoupons="ChangCoupons"
|
|
|
|
|
:orderShow="orderShow"
|
|
|
|
|
/>
|
2023-06-26 12:52:27 +00:00
|
|
|
|
|
|
|
|
|
<!-- 收货地址的弹窗选择 -->
|
|
|
|
|
<addressWindow
|
|
|
|
|
ref="addressWindow"
|
|
|
|
|
:address='address'
|
|
|
|
|
:pagesUrl="pagesUrl"
|
|
|
|
|
@OnChangeAddress="OnChangeAddress"
|
|
|
|
|
@changeClose="changeClose"
|
|
|
|
|
/>
|
2020-08-13 08:12:57 +00:00
|
|
|
|
<home></home>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
2023-06-29 12:19:40 +00:00
|
|
|
|
import * as CouponApi from '@/api/promotion/coupon.js';
|
2023-06-29 15:32:16 +00:00
|
|
|
|
import * as OrderApi from '@/api/trade/order.js';
|
2023-10-02 13:19:19 +00:00
|
|
|
|
import * as ConfigApi from '@/api/trade/config.js';
|
2023-06-30 15:04:05 +00:00
|
|
|
|
import { openPaySubscribe } from '@/utils/SubscribeMessage.js';
|
2023-06-28 16:24:30 +00:00
|
|
|
|
import * as DeliveryApi from '@/api/trade/delivery.js';
|
|
|
|
|
import couponListWindow from '@/components/couponListWindow';
|
2020-08-13 08:12:57 +00:00
|
|
|
|
import addressWindow from '@/components/addressWindow';
|
|
|
|
|
import orderGoods from '@/components/orderGoods';
|
|
|
|
|
import home from '@/components/home';
|
2023-06-26 12:52:27 +00:00
|
|
|
|
import { toLogin } from '@/libs/login.js';
|
|
|
|
|
import { mapGetters } from "vuex";
|
2023-06-29 15:32:16 +00:00
|
|
|
|
import * as Util from '@/utils/util.js';
|
|
|
|
|
export default {
|
2020-08-13 08:12:57 +00:00
|
|
|
|
components: {
|
|
|
|
|
couponListWindow,
|
|
|
|
|
addressWindow,
|
|
|
|
|
orderGoods,
|
2023-06-26 12:52:27 +00:00
|
|
|
|
home
|
2020-08-13 08:12:57 +00:00
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2023-06-29 15:32:16 +00:00
|
|
|
|
items: [], // 前端传递的购物项
|
|
|
|
|
cartInfo: [], // 后端返回的购物项
|
2023-06-30 14:44:36 +00:00
|
|
|
|
orderInfoVo: { // 订单信息
|
|
|
|
|
type: 1, // 交易类型
|
|
|
|
|
price: {} // 价格信息
|
|
|
|
|
},
|
2023-06-30 15:04:05 +00:00
|
|
|
|
mark: '', // 备注信息
|
2023-06-29 15:32:16 +00:00
|
|
|
|
|
2023-10-07 14:48:39 +00:00
|
|
|
|
bargainRecordId: undefined, // 是否是砍价
|
|
|
|
|
seckillActivityId: undefined, // 是否是秒杀
|
|
|
|
|
combinationActivityId: undefined, // 是否是拼团
|
2023-06-30 14:44:36 +00:00
|
|
|
|
|
|
|
|
|
// ========== 积分 ==========
|
|
|
|
|
pointStatus: false, //是否使用积分
|
|
|
|
|
|
2023-06-28 16:37:30 +00:00
|
|
|
|
// ========== 优惠劵 ==========
|
|
|
|
|
couponId: 0, // 选中的优惠券 id
|
|
|
|
|
couponTitle: '请选择', // 优惠券的标题
|
|
|
|
|
coupon: { // 优惠券组件
|
|
|
|
|
coupon: false,
|
|
|
|
|
list: [],
|
|
|
|
|
statusTile: '立即使用'
|
|
|
|
|
},
|
|
|
|
|
|
2023-06-26 12:52:27 +00:00
|
|
|
|
// ========== 收货地址 ==========
|
2023-06-30 14:44:36 +00:00
|
|
|
|
deliveryType: 1, // 1 - 快递配送;2 - 门店自提
|
2023-06-26 12:52:27 +00:00
|
|
|
|
addressId: 0, // 页面传递的 param 对应的地址 id
|
|
|
|
|
addressInfo: {}, // 选中的地址信息
|
|
|
|
|
address: { // 地址组件
|
|
|
|
|
address: false, // 是否 addressWindow 展示
|
|
|
|
|
addressId: 0 // 真正选中的 address 编号,优先级大于 addressId
|
|
|
|
|
},
|
2023-06-28 16:37:30 +00:00
|
|
|
|
openType: 1, // 优惠券打开方式 1=使用
|
|
|
|
|
orderShow: 'orderShow', // 下单页面使用优惠券组件不展示 tab 切换页
|
2023-06-30 15:04:05 +00:00
|
|
|
|
pagesUrl: "", // 添加收货地址后,回调地址
|
2023-06-28 16:24:30 +00:00
|
|
|
|
|
|
|
|
|
// ========== 门店自提 ==========
|
|
|
|
|
store_self_mention: false, // 门店自提是否开启
|
|
|
|
|
storeList: [], // 门店列表
|
|
|
|
|
system_store: {}, // 选中的门店
|
2023-06-30 14:44:36 +00:00
|
|
|
|
contacts: '', // 联系人名
|
|
|
|
|
contactsTel: '', // 联系人手机
|
2023-06-26 12:52:27 +00:00
|
|
|
|
};
|
2020-08-13 08:12:57 +00:00
|
|
|
|
},
|
2021-06-11 09:41:16 +00:00
|
|
|
|
computed: mapGetters(['isLogin', 'systemPlatform', 'productType']),
|
|
|
|
|
watch: {
|
|
|
|
|
isLogin: {
|
|
|
|
|
handler: function(newV, oldV) {
|
|
|
|
|
if (newV) {
|
|
|
|
|
this.getloadPreOrder();
|
2021-03-19 10:26:43 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
2021-06-11 09:41:16 +00:00
|
|
|
|
deep: true
|
2021-03-19 10:26:43 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
2021-06-11 09:41:16 +00:00
|
|
|
|
onLoad(options) {
|
2023-06-26 12:52:27 +00:00
|
|
|
|
if (!this.isLogin) {
|
|
|
|
|
toLogin();
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-29 15:32:16 +00:00
|
|
|
|
// 获得订单确认信息
|
|
|
|
|
if (options.cartIds && options.cartIds.length > 0) {
|
|
|
|
|
const cartIds = options.cartIds.split(',');
|
|
|
|
|
this.items = cartIds.map(cartId => ({ cartId }));
|
|
|
|
|
} else if (options.skuId > 0) {
|
|
|
|
|
this.items = [{
|
|
|
|
|
skuId: options.skuId,
|
|
|
|
|
count: options.count | 1
|
|
|
|
|
}]
|
|
|
|
|
}
|
2023-10-05 09:22:38 +00:00
|
|
|
|
this.seckillActivityId = options.seckillActivityId;
|
|
|
|
|
this.bargainRecordId = options.bargainRecordId;
|
2023-10-07 14:48:39 +00:00
|
|
|
|
this.combinationActivityId = options.combinationActivityId;
|
2023-06-26 12:52:27 +00:00
|
|
|
|
this.getloadPreOrder();
|
|
|
|
|
|
|
|
|
|
// 处理 address 地址
|
|
|
|
|
this.addressId = options.addressId || 0;
|
2023-06-28 16:37:30 +00:00
|
|
|
|
// 获得门店自提是否开启
|
2023-10-02 13:19:19 +00:00
|
|
|
|
ConfigApi.getTradeConfig().then(res => {
|
|
|
|
|
this.store_self_mention = res.data.deliveryPickUpEnabled && this.productType === 'normal';
|
2023-06-28 16:37:30 +00:00
|
|
|
|
})
|
2020-08-13 08:12:57 +00:00
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 生命周期函数--监听页面显示
|
|
|
|
|
*/
|
|
|
|
|
onShow: function() {
|
2023-06-28 16:37:30 +00:00
|
|
|
|
// 来自 goods_details_store/index.vue 的门店选择
|
2020-08-13 08:12:57 +00:00
|
|
|
|
uni.$on("handClick", res => {
|
|
|
|
|
if (res) {
|
2023-06-30 15:04:05 +00:00
|
|
|
|
this.system_store = res.address
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
// 清除监听
|
|
|
|
|
uni.$off('handClick');
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2023-06-29 15:32:16 +00:00
|
|
|
|
/**
|
|
|
|
|
* 获得订单确认信息
|
|
|
|
|
*/
|
2021-06-11 09:41:16 +00:00
|
|
|
|
getloadPreOrder: function() {
|
2023-06-30 16:05:01 +00:00
|
|
|
|
OrderApi.settlementOrder(this.getSettlementReqVO()).then(res => {
|
2023-06-29 15:32:16 +00:00
|
|
|
|
const orderInfoVo = res.data
|
2021-06-11 09:41:16 +00:00
|
|
|
|
this.orderInfoVo = orderInfoVo;
|
2023-06-29 15:32:16 +00:00
|
|
|
|
this.cartInfo = orderInfoVo.items;
|
2023-06-30 14:44:36 +00:00
|
|
|
|
this.changeAddress(orderInfoVo.address);
|
2023-06-29 15:32:16 +00:00
|
|
|
|
|
2023-06-28 16:24:30 +00:00
|
|
|
|
// 获得收件地址列表
|
|
|
|
|
this.$nextTick(function() {
|
|
|
|
|
this.$refs.addressWindow.getAddressList();
|
|
|
|
|
})
|
2023-06-29 15:32:16 +00:00
|
|
|
|
|
|
|
|
|
// 获得优惠劵列表
|
|
|
|
|
this.getCouponList();
|
2023-06-26 12:52:27 +00:00
|
|
|
|
}).catch(err => {
|
2021-06-11 09:41:16 +00:00
|
|
|
|
return this.$util.Tips({
|
|
|
|
|
title: err
|
|
|
|
|
});
|
|
|
|
|
})
|
2020-08-13 08:12:57 +00:00
|
|
|
|
},
|
2023-06-30 16:05:01 +00:00
|
|
|
|
SubOrder: function(e) {
|
2023-06-30 14:44:36 +00:00
|
|
|
|
// 校验参数
|
2023-06-30 16:05:01 +00:00
|
|
|
|
if (!this.address.addressId && this.deliveryType === 1) {
|
2023-06-30 14:44:36 +00:00
|
|
|
|
return this.$util.Tips({
|
|
|
|
|
title: '请选择收货地址'
|
|
|
|
|
});
|
|
|
|
|
}
|
2023-06-30 16:05:01 +00:00
|
|
|
|
if (this.deliveryType === 2) {
|
|
|
|
|
if (this.contacts === "" || this.contactsTel === "") {
|
|
|
|
|
return this.$util.Tips({
|
|
|
|
|
title: '请填写联系人或联系人电话'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (!/^1(3|4|5|7|8|9|6)\d{9}$/.test(this.contactsTel)) {
|
|
|
|
|
return this.$util.Tips({
|
|
|
|
|
title: '请填写正确的手机号'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (!/^[\u4e00-\u9fa5\w]{2,16}$/.test(this.contacts)) {
|
|
|
|
|
return this.$util.Tips({
|
|
|
|
|
title: '请填写您的真实姓名'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (this.storeList.length === 0) {
|
2023-06-30 14:44:36 +00:00
|
|
|
|
return this.$util.Tips({
|
|
|
|
|
title: '暂无门店,请选择其他方式'
|
|
|
|
|
});
|
|
|
|
|
}
|
2023-06-30 16:05:01 +00:00
|
|
|
|
}
|
|
|
|
|
// #ifdef MP
|
|
|
|
|
openPaySubscribe().then(() => {
|
|
|
|
|
this.orderCreate();
|
|
|
|
|
});
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifndef MP
|
|
|
|
|
this.orderCreate();
|
|
|
|
|
// #endif
|
|
|
|
|
},
|
|
|
|
|
orderCreate: function() {
|
|
|
|
|
OrderApi.createOrder({
|
|
|
|
|
...this.getSettlementReqVO(),
|
|
|
|
|
mark: this.mark,
|
|
|
|
|
}).then(res => {
|
2023-07-08 04:43:29 +00:00
|
|
|
|
const returnUrl = encodeURIComponent('/pages/order_pay_status/index?order_id=' + res.data.id);
|
2023-06-30 16:19:38 +00:00
|
|
|
|
uni.navigateTo({
|
2023-07-04 15:42:48 +00:00
|
|
|
|
url: `/pages/goods/cashier/index?order_id=${res.data.payOrderId}&returnUrl=${returnUrl}`
|
2023-06-30 16:19:38 +00:00
|
|
|
|
});
|
2023-06-30 16:05:01 +00:00
|
|
|
|
}).catch(err => {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
return this.$util.Tips({
|
|
|
|
|
title: err
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 获得结算请求 VO
|
|
|
|
|
*/
|
|
|
|
|
getSettlementReqVO() {
|
|
|
|
|
return {
|
|
|
|
|
items: this.items,
|
|
|
|
|
deliveryType: this.deliveryType,
|
|
|
|
|
addressId: this.address.addressId > 0 && this.deliveryType === 1 ? this.address.addressId : undefined,
|
|
|
|
|
pickUpStoreId: this.system_store.id > 0 && this.deliveryType === 2 ? this.system_store.id : undefined,
|
|
|
|
|
receiverName: this.deliveryType === 2 ? this.contacts : undefined,
|
|
|
|
|
receiverMobile: this.deliveryType === 2 ? this.contactsTel : undefined,
|
|
|
|
|
couponId: this.couponId > 0 ? this.couponId : undefined,
|
|
|
|
|
pointStatus: this.pointStatus,
|
2023-10-05 09:22:38 +00:00
|
|
|
|
seckillActivityId: this.seckillActivityId,
|
|
|
|
|
bargainRecordId: this.bargainRecordId,
|
2023-10-07 14:48:39 +00:00
|
|
|
|
combinationActivityId: this.combinationActivityId,
|
2023-06-30 16:05:01 +00:00
|
|
|
|
// TODO 芋艿:秒杀等等
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 输入备注
|
|
|
|
|
*/
|
|
|
|
|
bindHideKeyboard: function(e) {
|
|
|
|
|
this.mark = e.detail.value;
|
2023-06-26 12:52:27 +00:00
|
|
|
|
},
|
|
|
|
|
|
2023-06-30 14:44:36 +00:00
|
|
|
|
// ========== 积分 ==========
|
|
|
|
|
/**
|
|
|
|
|
* 使用积分抵扣
|
|
|
|
|
*/
|
|
|
|
|
ChangeIntegral: function() {
|
|
|
|
|
this.pointStatus = !this.pointStatus;
|
|
|
|
|
this.getloadPreOrder();
|
|
|
|
|
},
|
|
|
|
|
|
2023-06-28 16:37:30 +00:00
|
|
|
|
// ========== 优惠劵 ==========
|
|
|
|
|
/**
|
2023-06-29 12:19:40 +00:00
|
|
|
|
* 获取当前金额可用优惠券
|
2023-06-28 16:37:30 +00:00
|
|
|
|
*/
|
|
|
|
|
getCouponList: function() {
|
2023-06-29 12:19:40 +00:00
|
|
|
|
CouponApi.getMatchCouponList({
|
2023-09-26 14:46:06 +00:00
|
|
|
|
price: this.orderInfoVo.price.payPrice,
|
2023-11-21 01:54:26 +00:00
|
|
|
|
spuIds: this.orderInfoVo.items.map(item => item.spuId).join(","),
|
|
|
|
|
skuIds: this.orderInfoVo.items.map(item => item.skuId).join(","),
|
2023-09-26 14:46:06 +00:00
|
|
|
|
categoryIds: this.orderInfoVo.items.map(item => item.categoryId)
|
2023-06-29 12:19:40 +00:00
|
|
|
|
}).then(res => {
|
2023-06-28 16:37:30 +00:00
|
|
|
|
this.$set(this.coupon, 'list', res.data);
|
2023-06-29 12:19:40 +00:00
|
|
|
|
// 设置指定优惠劵已选择;用于 couponId 有参数时,默认选中一下
|
|
|
|
|
const useCoupon = res.data.find(coupon => coupon.id === this.couponId);
|
|
|
|
|
if (useCoupon) {
|
|
|
|
|
useCoupon.use_title = '不使用';
|
|
|
|
|
useCoupon.isUse = 1;
|
|
|
|
|
this.couponTitle = useCoupon.name;
|
|
|
|
|
}
|
2023-06-28 16:37:30 +00:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/**
|
2023-06-29 12:19:40 +00:00
|
|
|
|
* 处理点击优惠券后的事件
|
2023-06-28 16:37:30 +00:00
|
|
|
|
*/
|
2023-06-29 12:19:40 +00:00
|
|
|
|
ChangCoupons: function(index) {
|
|
|
|
|
const list = this.coupon.list;
|
|
|
|
|
// 先标记未使用
|
|
|
|
|
for (let i = 0; i < list.length; i++) {
|
|
|
|
|
if (i !== index) {
|
2023-06-28 16:37:30 +00:00
|
|
|
|
list[i].use_title = '';
|
|
|
|
|
list[i].isUse = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-06-29 12:19:40 +00:00
|
|
|
|
// 再标记使用中的优惠劵
|
|
|
|
|
let couponTitle = '请选择';
|
|
|
|
|
let couponId = 0;
|
|
|
|
|
if (list[index].isUse) { // 不使用优惠券(就是又点了下,选中的优惠劵)
|
2023-06-28 16:37:30 +00:00
|
|
|
|
list[index].use_title = '';
|
|
|
|
|
list[index].isUse = 0;
|
2023-06-29 12:19:40 +00:00
|
|
|
|
} else { // 使用优惠券
|
2023-06-28 16:37:30 +00:00
|
|
|
|
list[index].use_title = '不使用';
|
|
|
|
|
list[index].isUse = 1;
|
|
|
|
|
couponTitle = list[index].name;
|
|
|
|
|
couponId = list[index].id;
|
|
|
|
|
}
|
|
|
|
|
this.couponTitle = couponTitle;
|
|
|
|
|
this.couponId = couponId;
|
|
|
|
|
this.$set(this.coupon, 'coupon', false);
|
|
|
|
|
this.$set(this.coupon, 'list', list);
|
2023-06-29 12:19:40 +00:00
|
|
|
|
this.getloadPreOrder();
|
2023-06-28 16:37:30 +00:00
|
|
|
|
},
|
2023-06-29 12:19:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* 打开 coupon 优惠劵的选择弹窗
|
|
|
|
|
*/
|
|
|
|
|
couponTap: function() {
|
|
|
|
|
this.coupon.coupon = true;
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 关闭 coupon 优惠劵的选择弹窗
|
|
|
|
|
*/
|
2023-09-26 15:20:56 +00:00
|
|
|
|
ChangCouponsClose: function() {
|
2023-06-28 16:37:30 +00:00
|
|
|
|
this.$set(this.coupon, 'coupon', false);
|
|
|
|
|
},
|
|
|
|
|
|
2023-06-26 12:52:27 +00:00
|
|
|
|
// ========== 收货地址 ==========
|
|
|
|
|
/**
|
|
|
|
|
* 打开选择地址的弹窗
|
|
|
|
|
*/
|
|
|
|
|
onAddress: function() {
|
|
|
|
|
this.address.address = true;
|
2023-06-30 15:04:05 +00:00
|
|
|
|
// TODO 芋艿:callbackUrl
|
|
|
|
|
this.pagesUrl = '/pages/users/user_address_list/index?';
|
2023-06-26 12:52:27 +00:00
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 选择地址后改变事件
|
|
|
|
|
*/
|
2023-06-30 14:44:36 +00:00
|
|
|
|
OnChangeAddress: function(address) {
|
|
|
|
|
this.changeAddress(address);
|
2023-06-26 12:52:27 +00:00
|
|
|
|
this.address.address = false;
|
2023-06-30 14:44:36 +00:00
|
|
|
|
this.getloadPreOrder();
|
2023-06-26 12:52:27 +00:00
|
|
|
|
},
|
|
|
|
|
/**
|
2023-06-30 14:44:36 +00:00
|
|
|
|
* 选择地址
|
|
|
|
|
*/
|
|
|
|
|
changeAddress: function (address) {
|
|
|
|
|
if (!address) {
|
|
|
|
|
return;
|
2023-06-26 12:52:27 +00:00
|
|
|
|
}
|
2023-06-30 14:44:36 +00:00
|
|
|
|
this.addressInfo = address;
|
|
|
|
|
this.address.addressId = address.id;
|
2023-06-26 12:52:27 +00:00
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 关闭地址弹窗
|
|
|
|
|
*/
|
|
|
|
|
changeClose: function() {
|
|
|
|
|
this.$set(this.address, 'address', false);
|
|
|
|
|
},
|
2023-06-28 16:24:30 +00:00
|
|
|
|
|
|
|
|
|
// ========== 门店自提 ==========
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 切换物流方式
|
|
|
|
|
*/
|
2023-06-30 14:44:36 +00:00
|
|
|
|
addressType: function(deliveryType) {
|
|
|
|
|
this.deliveryType = deliveryType;
|
|
|
|
|
this.getloadPreOrder();
|
|
|
|
|
if (deliveryType === 2) {
|
2023-06-28 16:24:30 +00:00
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 跳转门店列表
|
|
|
|
|
*/
|
|
|
|
|
showStoreList: function() {
|
|
|
|
|
if (this.storeList.length > 0) {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/users/goods_details_store/index'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|
* 获取门店列表数据
|
|
|
|
|
*/
|
|
|
|
|
getList: function() {
|
|
|
|
|
let longitude = uni.getStorageSync("user_longitude"); // 经度
|
|
|
|
|
let latitude = uni.getStorageSync("user_latitude"); // 纬度
|
|
|
|
|
DeliveryApi.getDeliveryPickUpStoreList({
|
|
|
|
|
latitude,
|
|
|
|
|
longitude
|
|
|
|
|
}).then(res => {
|
|
|
|
|
let list = res.data || [];
|
|
|
|
|
this.$set(this, 'storeList', list);
|
|
|
|
|
this.$set(this, 'system_store', list[0]);
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
return this.$util.Tips({
|
|
|
|
|
title: err
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
2023-06-30 14:44:36 +00:00
|
|
|
|
realName: function(e) {
|
|
|
|
|
this.contacts = e.detail.value;
|
|
|
|
|
},
|
|
|
|
|
phone: function(e) {
|
|
|
|
|
this.contactsTel = e.detail.value;
|
|
|
|
|
},
|
2023-06-29 15:32:16 +00:00
|
|
|
|
|
|
|
|
|
fen2yuan(price) {
|
|
|
|
|
return Util.fen2yuan(price)
|
|
|
|
|
},
|
2023-06-26 12:52:27 +00:00
|
|
|
|
}
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-06-11 09:41:16 +00:00
|
|
|
|
.line2{
|
|
|
|
|
width: 504rpx;
|
|
|
|
|
}
|
2021-02-06 09:25:18 +00:00
|
|
|
|
.textR {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-13 08:12:57 +00:00
|
|
|
|
.order-submission .line {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 3rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .line image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .address {
|
2021-06-11 09:41:16 +00:00
|
|
|
|
padding: 28rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
background-color: #fff;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .address .addressCon {
|
2021-06-11 09:41:16 +00:00
|
|
|
|
width: 596rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .address .addressCon .setaddress {
|
|
|
|
|
color: #333;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .address .iconfont {
|
|
|
|
|
font-size: 35rpx;
|
|
|
|
|
color: #707070;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .allAddress {
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: linear-gradient(to bottom, #e93323 0%, #f5f5f5 100%);
|
|
|
|
|
// background-image: linear-gradient(to bottom, #e93323 0%, #f5f5f5 100%);
|
|
|
|
|
// background-image: -webkit-linear-gradient(to bottom, #e93323 0%, #f5f5f5 100%);
|
|
|
|
|
// background-image: -moz-linear-gradient(to bottom, #e93323 0%, #f5f5f5 100%);
|
2021-06-11 09:41:16 +00:00
|
|
|
|
padding: 100rpx 30rpx 0 30rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .allAddress .nav {
|
2021-06-11 09:41:16 +00:00
|
|
|
|
width: 690rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .allAddress .nav .item {
|
2021-06-11 09:41:16 +00:00
|
|
|
|
width: 334rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .allAddress .nav .item.on {
|
|
|
|
|
position: relative;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
width: 230rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
border-radius: 14rpx 36rpx 0 0;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 80rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .allAddress .nav .item:nth-of-type(2).on::before {
|
|
|
|
|
content: "到店自提";
|
|
|
|
|
border-width: 0 0 80rpx 20rpx;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
border-radius: 36rpx 14rpx 0 0;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
width: 401rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
border-width: 0 0 60rpx 60rpx;
|
|
|
|
|
border-style: none solid solid;
|
|
|
|
|
border-color: transparent transparent #f7c1bd;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
border-radius: 36rpx 14rpx 0 0;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 60rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .allAddress .nav .item:nth-of-type(1).on2::before {
|
|
|
|
|
content: "快递配送";
|
|
|
|
|
border-width: 0 60rpx 60rpx 0;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
border-radius: 14rpx 36rpx 0 0;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .allAddress .address {
|
2021-06-11 09:41:16 +00:00
|
|
|
|
width: 690rpx;
|
|
|
|
|
max-height: 180rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .allAddress .line {
|
2021-06-11 09:41:16 +00:00
|
|
|
|
width: 100%;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .wrapper .item .discount .placeholder {
|
|
|
|
|
color: #ccc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .wrapper {
|
|
|
|
|
background-color: #fff;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
margin-top: 15rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .wrapper .item {
|
2021-06-11 09:41:16 +00:00
|
|
|
|
padding: 27rpx 24rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
font-size: 30rpx;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
color: #333333;
|
|
|
|
|
border-bottom: 1px solid #F5F5F5;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .wrapper .item .discount {
|
|
|
|
|
font-size: 30rpx;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
color: #333;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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 textarea {
|
|
|
|
|
background-color: #f9f9f9;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
width: auto !important;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
height: 140rpx;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
border-radius: 14rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
margin-top: 30rpx;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
padding: 15rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
box-sizing: border-box;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
font-weight: 400;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .wrapper .item .placeholder {
|
|
|
|
|
color: #ccc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .wrapper .item .list {
|
|
|
|
|
margin-top: 35rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .moneyList {
|
2021-06-11 09:41:16 +00:00
|
|
|
|
margin-top: 15rpx;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
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 {
|
2021-06-11 09:41:16 +00:00
|
|
|
|
color: #666666;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .footer {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 0 30rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #333;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.order-submission .footer .settlement {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
width: 240rpx;
|
|
|
|
|
height: 70rpx;
|
2021-06-11 09:41:16 +00:00
|
|
|
|
background-color: $theme-color;
|
2020-08-13 08:12:57 +00:00
|
|
|
|
border-radius: 50rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 70rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer .transparent {
|
|
|
|
|
opacity: 0
|
|
|
|
|
}
|
|
|
|
|
</style>
|