1176 lines
38 KiB
Vue
1176 lines
38 KiB
Vue
<template>
|
|
<page-meta :page-style="themeColor"></page-meta>
|
|
<view>
|
|
<view class="order-container" :class="{ 'safe-area': isIphoneX }">
|
|
<!-- #ifdef MP -->
|
|
<view
|
|
class="payment-navbar"
|
|
:style="{
|
|
'padding-top': menuButtonBounding.top + 'px',
|
|
height: menuButtonBounding.height + 'px'
|
|
}"
|
|
>
|
|
<view class="navbar-title">确认订单</view>
|
|
</view>
|
|
<view class="payment-navbar-block" :style="{ height: menuButtonBounding.bottom + 'px' }"></view>
|
|
<!-- #endif -->
|
|
|
|
<scroll-view scroll-y="true" class="order-scroll-container">
|
|
<view class="payment-navbar-block"></view>
|
|
<template v-if="paymentData">
|
|
<template v-if="paymentData.is_virtual">
|
|
<!-- 虚拟商品联系方式 -->
|
|
<view class="mobile-wrap">
|
|
<view class="tips color-base-text">
|
|
<text class="iconfont icon-gantanhao"></text>
|
|
购买虚拟类商品需填写手机号,方便商家与您联系
|
|
</view>
|
|
<view class="form-group">
|
|
<text class="icon"><image :src="$util.img('public/uniapp/order/icon-mobile.png')" mode="widthFix"></image></text>
|
|
<text class="text">手机号码</text>
|
|
<input
|
|
type="number"
|
|
maxlength="11"
|
|
placeholder="请输入您的手机号码"
|
|
placeholder-class="color-tip placeholder"
|
|
class="input"
|
|
v-model="orderCreateData.member_address.mobile"
|
|
/>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<template v-else>
|
|
<!-- 配送方式 -->
|
|
<view class="delivery-mode" v-if="goodsData.express_type.length > 1">
|
|
<view class="action">
|
|
<view
|
|
:class="{ active: item.name == orderCreateData.delivery.delivery_type }"
|
|
v-for="(item, index) in goodsData.express_type"
|
|
:key="index"
|
|
@click="selectDeliveryType(item)"
|
|
>
|
|
{{ item.title }}
|
|
<!-- 外圆角 -->
|
|
<view class="out-radio"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="address-box" :class="{ 'not-delivery-type': goodsData.express_type.length <= 1 }" v-if="orderCreateData.delivery.delivery_type == 'express'">
|
|
<view class="info-wrap" v-if="memberAddress" @click="selectAddress">
|
|
<view class="content">
|
|
<text class="name">{{ memberAddress.name ? memberAddress.name : '' }}</text>
|
|
<text class="mobile">{{ memberAddress.mobile ? memberAddress.mobile : '' }}</text>
|
|
<view class="desc-wrap">
|
|
{{ memberAddress.full_address ? memberAddress.full_address : '' }} {{ memberAddress.address ? memberAddress.address : '' }}
|
|
</view>
|
|
</view>
|
|
<text class="cell-more iconfont icon-right"></text>
|
|
</view>
|
|
<view class="empty-wrap" v-else @click="selectAddress">
|
|
<view class="info">请设置收货地址</view>
|
|
<view class="cell-more"><view class="iconfont icon-right"></view></view>
|
|
</view>
|
|
<image class="address-line" :src="$util.img('public/uniapp/order/address-line.png')"></image>
|
|
</view>
|
|
|
|
<view class="address-box" :class="{ 'not-delivery-type': goodsData.express_type.length <= 1 }" v-if="orderCreateData.delivery.delivery_type == 'local'">
|
|
<view v-if="localMemberAddress">
|
|
<block v-if="storeList && Object.keys(storeList).length > 1">
|
|
<view class="local-delivery-store" v-if="storeInfo" @click="$refs.deliveryPopup.open()">
|
|
<view class="info">
|
|
由
|
|
<text class="store-name">{{ storeInfo.store_name }}</text>
|
|
提供配送
|
|
</view>
|
|
<view class="cell-more">
|
|
<text>点击切换</text>
|
|
<text class="iconfont icon-right"></text>
|
|
</view>
|
|
</view>
|
|
<view v-else class="local-delivery-store">
|
|
<view class="info"><text class="store-name">您的附近没有可配送的门店,请选择其他配送方式</text></view>
|
|
</view>
|
|
</block>
|
|
<view class="info-wrap local" @click="selectAddress">
|
|
<view class="content">
|
|
<text class="name">{{ localMemberAddress.name ? localMemberAddress.name : '' }}</text>
|
|
<text class="mobile">{{ localMemberAddress.mobile ? localMemberAddress.mobile : '' }}</text>
|
|
<view class="desc-wrap">
|
|
{{ localMemberAddress.full_address ? localMemberAddress.full_address : '' }}
|
|
{{ localMemberAddress.address ? localMemberAddress.address : '' }}
|
|
</view>
|
|
</view>
|
|
<text class="cell-more iconfont icon-right"></text>
|
|
</view>
|
|
<view class="local-box" v-if="calculateGoodsData.local_config && calculateGoodsData.local_config.info.time_is_open == 1">
|
|
<view class="pick-block" @click="localtime('')">
|
|
<view class="title font-size-base">送达时间</view>
|
|
<view class="time-picker">
|
|
<text :class="{ 'color-tip': !deliveryTime }">{{ deliveryTime ? deliveryTime : '请选择送达时间' }}</text>
|
|
<text class="iconfont icon-right cell-more"></text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="empty-wrap" v-else @click="selectAddress">
|
|
<view class="info">请设置收货地址</view>
|
|
<view class="cell-more"><view class="iconfont icon-right"></view></view>
|
|
</view>
|
|
|
|
<image class="address-line" :src="$util.img('public/uniapp/order/address-line.png')"></image>
|
|
</view>
|
|
|
|
<!-- 门店信息 -->
|
|
<view class="store-box" :class="{ 'not-delivery-type': goodsData.express_type.length <= 1 }" v-if="orderCreateData.delivery.delivery_type == 'store'">
|
|
<block v-if="storeInfo">
|
|
<view @click="$refs.deliveryPopup.open()" class="store-info">
|
|
<view class="store-address-info">
|
|
<view class="info-wrap">
|
|
<view class="title">
|
|
<text>{{ storeInfo.store_name }}</text>
|
|
</view>
|
|
<view class="store-detail">
|
|
<view v-if="storeInfo.open_date">营业时间:{{ storeInfo.open_date }}</view>
|
|
<view class="address">{{ storeInfo.full_address }} {{ storeInfo.address }}</view>
|
|
</view>
|
|
</view>
|
|
<view class="cell-more iconfont icon-right"></view>
|
|
</view>
|
|
</view>
|
|
<view class="mobile-wrap store-mobile">
|
|
<view class="form-group">
|
|
<text class="text">预留手机</text>
|
|
<input
|
|
type="number"
|
|
maxlength="11"
|
|
placeholder="请输入您的手机号码"
|
|
placeholder-class="color-tip placeholder"
|
|
class="input"
|
|
v-model="orderCreateData.member_address.mobile"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="store-time" @click="storetime('')">
|
|
<view class="left">提货时间</view>
|
|
<view class="right">
|
|
{{ deliveryTime }}
|
|
<text class="iconfont icon-right"></text>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
<view v-else class="empty">当前无自提门店,请选择其它配送方式</view>
|
|
<image class="address-line" :src="$util.img('public/uniapp/order/address-line.png')"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<!-- 店铺 -->
|
|
<view class="site-wrap order-goods">
|
|
<view class="site-body">
|
|
<!-- 商品 -->
|
|
<view v-for="(goodsItem, goodsIndex) in goodsData.goods_list" :key="goodsIndex">
|
|
<view class="goods-wrap">
|
|
<view class="goods-img" @click="$util.redirectTo('/pages/goods/detail', { goods_id: goodsItem.goods_id })">
|
|
<image :src="$util.img(goodsItem.sku_image, { size: 'mid' })" @error="imageError(goodsIndex)" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="goods-info">
|
|
<view @click="$util.redirectTo('/pages/goods/detail', { goods_id: goodsItem.goods_id })" class="goods-name">{{ goodsItem.sku_name }}</view>
|
|
<view class="sku" v-if="goodsItem.sku_spec_format">
|
|
<view class="goods-spec">
|
|
<block v-for="(x, i) in goodsItem.sku_spec_format" :key="i">
|
|
<view>{{ x.spec_value_name }}</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
<view class="goods-sub-section">
|
|
<view class="color-base-text">
|
|
<text class="unit price-style small"></text>
|
|
|
|
<text class="goods-price price-style large"></text>
|
|
<text class="unit price-style small"></text>
|
|
</view>
|
|
<view>
|
|
<text class="font-size-tag">x</text>
|
|
<text class="font-size-base">{{ goodsItem.num }}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="goods-form" v-if="goodsItem.goods_form" @click="editForm(goodsIndex)">
|
|
<ns-form
|
|
:data="goodsItem.goods_form.json_data"
|
|
ref="goodsForm"
|
|
:custom-attr="{ sku_id: goodsItem.sku_id, form_id: goodsItem.goods_form.id }"
|
|
></ns-form>
|
|
<text class="cell-more iconfont icon-right"></text>
|
|
<view class="shade"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="site-wrap buyer-message">
|
|
<view class="order-cell">
|
|
<text class="tit">买家留言</text>
|
|
<view class="box text-overflow " @click="openPopup('buyerMessagePopup')">
|
|
<text v-if="orderCreateData.buyer_message">{{ orderCreateData.buyer_message }}</text>
|
|
<text class="color-sub" v-else>无留言</text>
|
|
</view>
|
|
<text class="iconfont icon-right"></text>
|
|
</view>
|
|
</view>
|
|
|
|
<view v-if="paymentData.system_form" class="system-form-wrap"><ns-form :data="paymentData.system_form.json_data" ref="form"></ns-form></view>
|
|
|
|
<!-- 订单金额 -->
|
|
<template v-if="calculateData">
|
|
<view class="order-submit bottom-safe-area">
|
|
<view class="submit-btn"><button type="primary" class="sava-btn" size="mini" @click="create()">立即提货</button></view>
|
|
</view>
|
|
<view class="order-submit-block"></view>
|
|
|
|
<payment ref="choosePaymentPopup" @close="payClose" v-if="calculateData"></payment>
|
|
</template>
|
|
|
|
<!-- 门店列表弹窗 -->
|
|
<uni-popup ref="deliveryPopup" type="bottom" v-if="storeList">
|
|
<view class="delivery-popup popup">
|
|
<view class="popup-header">
|
|
<text class="tit">已为您甄选出附近所有相关门店</text>
|
|
<text class="iconfont icon-close" @click="closePopup('deliveryPopup')"></text>
|
|
</view>
|
|
<view class="popup-body store-popup" :class="{ 'safe-area': isIphoneX }">
|
|
<view class="delivery-content">
|
|
<view class="item-wrap" v-for="(item, index) in storeList" :key="index" @click="selectPickupPoint(item)">
|
|
<view class="detail">
|
|
<view class="name" :class="item.store_id == orderCreateData.delivery.store_id ? 'color-base-text' : ''">
|
|
<text>{{ item.store_name }}</text>
|
|
<text v-if="item.distance">({{ item.distance }}km)</text>
|
|
</view>
|
|
<view class="info">
|
|
<view :class="item.store_id == orderCreateData.delivery.store_id ? 'color-base-text' : ''" class="font-size-goods-tag">
|
|
营业时间:{{ item.open_date }}
|
|
</view>
|
|
<view :class="item.store_id == orderCreateData.delivery.store_id ? 'color-base-text' : ''" class="font-size-goods-tag">
|
|
地址:{{ item.full_address }}{{ item.address }}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="icon" v-if="item.store_id == orderCreateData.delivery.store_id">
|
|
<text class="iconfont icon-yuan_checked color-base-text"></text>
|
|
</view>
|
|
</view>
|
|
<view v-if="!storeList" class="empty">所选择收货地址附近没有可以自提的门店</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</uni-popup>
|
|
|
|
<!-- 留言弹窗 -->
|
|
<uni-popup ref="buyerMessagePopup" type="bottom">
|
|
<view style="height: auto;" class="buyermessag-popup popup" @touchmove.prevent.stop>
|
|
<view class="popup-header">
|
|
<text class="tit">买家留言</text>
|
|
<text class="iconfont icon-close" @click="closePopup('buyerMessagePopup')"></text>
|
|
</view>
|
|
<scroll-view scroll-y="true" class="popup-body" :class="{ 'safe-area': isIphoneX }">
|
|
<view>
|
|
<view class="buyermessag-cell">
|
|
<view class="buyermessag-form-group">
|
|
<textarea
|
|
type="text"
|
|
maxlength="100"
|
|
placeholder="留言前建议先与商家协调一致"
|
|
placeholder-class="color-tip"
|
|
v-model="orderCreateData.buyer_message"
|
|
></textarea>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
<view class="popup-footer" @click="saveBuyerMessage" :class="{ 'bottom-safe-area': isIphoneX }">
|
|
<view class="confirm-btn color-base-bg">确定</view>
|
|
</view>
|
|
</view>
|
|
</uni-popup>
|
|
|
|
<!-- 表单修改弹窗 -->
|
|
<uni-popup ref="editFormPopup" type="bottom">
|
|
<view style="height: auto;" class="form-popup popup" @touchmove.prevent.stop>
|
|
<view class="popup-header">
|
|
<text class="tit">买家信息</text>
|
|
<text class="iconfont icon-close" @click="$refs.editFormPopup.close()"></text>
|
|
</view>
|
|
<scroll-view scroll-y="true" class="popup-body" :class="{ 'safe-area': isIphoneX }">
|
|
<ns-form v-if="tempFormData" :data="tempFormData.json_data" ref="tempForm"></ns-form>
|
|
</scroll-view>
|
|
<view class="popup-footer" @click="saveForm" :class="{ 'bottom-safe-area': isIphoneX }"><view class="confirm-btn color-base-bg">确定</view></view>
|
|
</view>
|
|
</uni-popup>
|
|
|
|
<!-- 门店自提时间 -->
|
|
<ns-select-time @selectTime="selectPickupTime" ref="timePopup"></ns-select-time>
|
|
</template>
|
|
</scroll-view>
|
|
|
|
<ns-login ref="login"></ns-login>
|
|
<loading-cover ref="loadingCover"></loading-cover>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
options: { styleIsolation: 'shared' },
|
|
data() {
|
|
return {
|
|
api: {
|
|
payment: '/giftcard/api/giftcardordercreate/payment',
|
|
calculate: '/giftcard/api/giftcardordercreate/calculate',
|
|
create: '/giftcard/api/giftcardordercreate/create'
|
|
},
|
|
createDataKey: 'giftcarduse',
|
|
outTradeNo: '',
|
|
isIphoneX: false,
|
|
orderCreateData: {
|
|
is_balance: 0,
|
|
is_point: 1,
|
|
is_invoice: 0, // 是否需要发票 0 无发票 1 有发票
|
|
invoice_type: 1, // 发票类型 1 纸质 2 电子
|
|
invoice_title_type: 1, // 抬头类型 1 个人 2 企业
|
|
is_tax_invoice: 0 // 是否需要增值税专用发票 0 不需要 1 需要
|
|
// coupon: {
|
|
// coupon_id: 0
|
|
// }
|
|
},
|
|
paymentData: null,
|
|
calculateData: null,
|
|
tempData: null,
|
|
storeId: 0,
|
|
deliveryTime: '', // 提货时间
|
|
memberAddress: null, // 会员收货地址
|
|
localMemberAddress: null, // 会员本地配送收货地址
|
|
isRepeat: false,
|
|
promotionInfo: null,
|
|
transactionAgreement: {}, // 购买须知
|
|
tempFormData: null,
|
|
menuButtonBounding: {}, // 小程序胶囊属性
|
|
storeConfig: null,
|
|
LocalConfig: null
|
|
};
|
|
},
|
|
// inject: ['promotion'],
|
|
created() {
|
|
// #ifdef MP
|
|
this.menuButtonBounding = uni.getMenuButtonBoundingClientRect();
|
|
// #endif
|
|
this.isIphoneX = this.$util.uniappIsIPhoneX();
|
|
if (uni.getStorageSync('token')) {
|
|
Object.assign(this.orderCreateData, uni.getStorageSync(this.createDataKey));
|
|
if (this.location) {
|
|
this.orderCreateData.latitude = this.location.latitude;
|
|
this.orderCreateData.longitude = this.location.longitude;
|
|
}
|
|
this.payment();
|
|
} else {
|
|
setTimeout(() => {
|
|
this.$refs.loadingCover.hide();
|
|
this.$refs.login.open(this.$util.getCurrentRoute().path);
|
|
});
|
|
}
|
|
this.getTransactionAgreement();
|
|
},
|
|
computed: {
|
|
storeToken() {
|
|
return this.$store.state.token;
|
|
},
|
|
goodsData() {
|
|
if (this.paymentData) {
|
|
this.paymentData.shop_goods_list.goods_list.forEach(item => {
|
|
if (item.sku_spec_format) item.sku_spec_format = JSON.parse(item.sku_spec_format);
|
|
});
|
|
return this.paymentData.shop_goods_list;
|
|
}
|
|
},
|
|
calculateGoodsData() {
|
|
if (this.calculateData) return this.calculateData.shop_goods_list;
|
|
},
|
|
// 消费券可抵扣金额
|
|
balanceDeduct() {
|
|
if (this.calculateData) {
|
|
if (this.calculateData.member_account.balance_total <= parseFloat(this.calculateData.order_money).toFixed(2)) {
|
|
return parseFloat(this.calculateData.member_account.balance_total).toFixed(2);
|
|
} else {
|
|
return parseFloat(this.calculateData.order_money).toFixed(2);
|
|
}
|
|
}
|
|
},
|
|
// 门店列表
|
|
storeList() {
|
|
let storeList = null;
|
|
if (this.orderCreateData.delivery) {
|
|
if (this.orderCreateData.delivery.delivery_type == 'local' && this.localConfig) {
|
|
storeList = this.localConfig.store_list;
|
|
storeList = storeList.reduce((res, item) => {
|
|
return { ...res, [item.store_id]: item };
|
|
}, {});
|
|
}
|
|
if (this.orderCreateData.delivery.delivery_type == 'store' && this.storeConfig) {
|
|
storeList = this.storeConfig.store_list;
|
|
storeList = storeList.reduce((res, item) => {
|
|
return { ...res, [item.store_id]: item };
|
|
}, {});
|
|
}
|
|
}
|
|
return storeList;
|
|
},
|
|
// 门店信息
|
|
storeInfo: {
|
|
get() {
|
|
if (this.storeList && this.orderCreateData.delivery && this.orderCreateData.delivery.delivery_type != 'express' && this.storeId) {
|
|
return this.storeList[this.orderCreateData.delivery.store_id];
|
|
}
|
|
},
|
|
set(value) {
|
|
this.storeList[this.orderCreateData.delivery.store_id].store_image = value;
|
|
}
|
|
},
|
|
// 会员卡购买周期
|
|
cardChargeType() {
|
|
if (this.paymentData.recommend_member_card) {
|
|
let charge_rule_arr = [];
|
|
let charge_rule = this.paymentData.recommend_member_card.charge_rule;
|
|
Object.keys(charge_rule).forEach((key, index) => {
|
|
switch (key) {
|
|
case 'week':
|
|
charge_rule_arr.push({ key: key, value: charge_rule[key], title: '周卡', unit: '周' });
|
|
break;
|
|
case 'month':
|
|
charge_rule_arr.push({ key: key, value: charge_rule[key], title: '月卡', unit: '月' });
|
|
break;
|
|
case 'quarter':
|
|
charge_rule_arr.push({ key: key, value: charge_rule[key], title: '季卡', unit: '季' });
|
|
break;
|
|
case 'year':
|
|
charge_rule_arr.push({ key: key, value: charge_rule[key], title: '年卡', unit: '年' });
|
|
break;
|
|
}
|
|
});
|
|
return charge_rule_arr;
|
|
}
|
|
},
|
|
// 定位信息
|
|
location() {
|
|
return this.$store.state.location;
|
|
}
|
|
},
|
|
watch: {
|
|
storeToken: function(nVal, oVal) {
|
|
this.payment();
|
|
},
|
|
deliveryTime: function(nVal) {
|
|
if (!nVal) this.$refs.timePopup.refresh();
|
|
},
|
|
location: function(nVal) {
|
|
if (nVal) {
|
|
this.orderCreateData.latitude = nVal.latitude;
|
|
this.orderCreateData.longitude = nVal.longitude;
|
|
this.payment();
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
/**
|
|
* 父级页面onShow调用
|
|
*/
|
|
pageShow() {
|
|
if (uni.getStorageSync('addressBack')) {
|
|
uni.removeStorageSync('addressBack');
|
|
this.payment();
|
|
}
|
|
},
|
|
/**
|
|
* 获取订单结算数据
|
|
*/
|
|
payment() {
|
|
this.$api.sendRequest({
|
|
url: this.api.payment,
|
|
data: this.orderCreateData,
|
|
success: res => {
|
|
if (res.code == 0 && res.data) {
|
|
let data = res.data;
|
|
|
|
// #ifdef MP-WEIXIN
|
|
var scene = uni.getStorageSync('is_test') ? 1175 : wx.getLaunchOptionsSync().scene;
|
|
if ([1175, 1176, 1177, 1191, 1195].indexOf(scene) != -1 && data.shop_goods_list.express_type) {
|
|
data.shop_goods_list.express_type = data.shop_goods_list.express_type.filter(item => item.name == 'express');
|
|
}
|
|
// #endif
|
|
|
|
// 配送方式
|
|
if (data.shop_goods_list && data.shop_goods_list.express_type && data.shop_goods_list.express_type.length) {
|
|
let deliveryStorage = uni.getStorageSync('delivery');
|
|
if (deliveryStorage) {
|
|
data.shop_goods_list.express_type.forEach(item => {
|
|
if (item.name == deliveryStorage.delivery_type) {
|
|
this.orderCreateData.delivery = deliveryStorage;
|
|
this.storeId = deliveryStorage.store_id ?? 0;
|
|
if (deliveryStorage.delivery_type == 'store') {
|
|
this.orderCreateData.member_address = { mobile: data.member_account.mobile ?? '' };
|
|
if (!this.location) this.$util.getLocation();
|
|
}
|
|
}
|
|
if (item.name == 'local') this.localConfig = item;
|
|
if (item.name == 'store') this.storeConfig = item;
|
|
});
|
|
}
|
|
|
|
if (!this.orderCreateData.delivery) {
|
|
this.selectDeliveryType(data.shop_goods_list.express_type[0], false);
|
|
}
|
|
|
|
if (
|
|
uni.getStorageSync('deliveryTime') &&
|
|
uni.getStorageSync('deliveryTime')['delivery_type'] &&
|
|
uni.getStorageSync('deliveryTime')['delivery_type'] == this.orderCreateData.delivery.delivery_type
|
|
) {
|
|
this.deliveryTime = uni.getStorageSync('deliveryTime')['deliveryTime'];
|
|
this.orderCreateData.buyer_ask_delivery_time = uni.getStorageSync('deliveryTime')['buyer_ask_delivery_time'];
|
|
}
|
|
}
|
|
|
|
// 优惠券
|
|
if (data.shop_goods_list && data.shop_goods_list.coupon_list && data.shop_goods_list.coupon_list[0])
|
|
this.orderCreateData.coupon = { coupon_id: data.shop_goods_list.coupon_list[0].coupon_id };
|
|
// 地址、手机号
|
|
if (data.is_virtual) {
|
|
this.orderCreateData.member_address = { mobile: data.member_account.mobile ?? '' };
|
|
}
|
|
|
|
// 处理表单数据
|
|
data = this.handleGoodsFormData(data);
|
|
|
|
this.paymentData = data;
|
|
this.calculate();
|
|
} else {
|
|
// this.$util.showToast({
|
|
// title: res.message
|
|
// });
|
|
// setTimeout(() => {
|
|
// this.$util.redirectTo('/pages/index/index');
|
|
// }, 1000)
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/**
|
|
* 处理商品表单数据
|
|
* @param {Object} data
|
|
*/
|
|
handleGoodsFormData(data) {
|
|
let goodsFormData = uni.getStorageSync('goodFormData');
|
|
data.shop_goods_list.goods_list.forEach(item => {
|
|
if (item.goods_form) {
|
|
let formData = {};
|
|
if (item.form_data) {
|
|
item.form_data.map(formIem => {
|
|
formData[formIem.id] = formIem;
|
|
});
|
|
} else if (goodsFormData && goodsFormData.goods_id == item.goods_id) {
|
|
goodsFormData.form_data.map(formIem => {
|
|
formData[formIem.id] = formIem;
|
|
});
|
|
}
|
|
if (Object.keys(formData).length) {
|
|
item.goods_form.json_data.forEach(formIem => {
|
|
if (formData[formIem.id]) {
|
|
formIem.val = formData[formIem.id].val;
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
return data;
|
|
},
|
|
/**
|
|
* 订单创建
|
|
*/
|
|
calculate() {
|
|
this.$forceUpdate();
|
|
this.$api.sendRequest({
|
|
url: this.api.calculate,
|
|
data: this.handleCreateData(),
|
|
success: res => {
|
|
if (this.$refs.loadingCover && this.$refs.loadingCover.isShow) this.$refs.loadingCover.hide();
|
|
if (res.code == 0 && res.data) {
|
|
this.calculateData = res.data;
|
|
if (res.data.delivery) {
|
|
if (res.data.delivery.delivery_type == 'express') this.memberAddress = res.data.member_address;
|
|
if (res.data.delivery.delivery_type == 'local') this.localMemberAddress = res.data.member_address;
|
|
}
|
|
this.resetDeliveryTime();
|
|
this.$forceUpdate();
|
|
} else {
|
|
this.$util.showToast({
|
|
title: res.message
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/**
|
|
* 订单创建
|
|
*/
|
|
create() {
|
|
if (!this.verify() || this.isRepeat) return;
|
|
this.isRepeat = true;
|
|
uni.showLoading({ title: '' });
|
|
this.$api.sendRequest({
|
|
url: this.api.create,
|
|
data: this.handleCreateData(),
|
|
success: res => {
|
|
uni.hideLoading();
|
|
if (res.code == 0) {
|
|
this.outTradeNo = res.data;
|
|
uni.removeStorageSync('deliveryTime');
|
|
uni.removeStorageSync('goodFormData');
|
|
if (this.calculateData.pay_money == 0) {
|
|
// #ifdef MP-WEIXIN
|
|
if (this.paymentData.is_virtual || this.orderCreateData.delivery.delivery_type == 'store') {
|
|
this.$util.subscribeMessage('ORDER_VERIFY_OUT_TIME,VERIFY_CODE_EXPIRE,VERIFY');
|
|
}
|
|
// #endif
|
|
|
|
this.$api.sendRequest({
|
|
url: '/api/pay/info',
|
|
data: {
|
|
out_trade_no: this.outTradeNo
|
|
},
|
|
success: res => {
|
|
if (res.code >= 0 && res.data && res.data.order_id > 0) {
|
|
this.$util.redirectTo(
|
|
'/pages/order/detail',
|
|
{
|
|
order_id: res.data.order_id
|
|
},
|
|
'redirectTo'
|
|
);
|
|
} else {
|
|
this.$util.redirectTo('/pages/order/list', {}, 'redirectTo');
|
|
}
|
|
},
|
|
fail: res => {
|
|
this.$util.redirectTo('/pages/order/list', {}, 'redirectTo');
|
|
}
|
|
});
|
|
} else {
|
|
this.openChoosePayment();
|
|
}
|
|
} else {
|
|
this.$util.showToast({ title: res.message });
|
|
this.isRepeat = false;
|
|
}
|
|
// 更新购物车数量
|
|
this.$store.dispatch('getCartNumber');
|
|
}
|
|
});
|
|
},
|
|
/**
|
|
* 处理订单计算、创建传参
|
|
*/
|
|
handleCreateData() {
|
|
let data = this.$util.deepClone(this.orderCreateData);
|
|
// 订单表单
|
|
if (this.$refs.form) {
|
|
data.form_data = { form_id: this.paymentData.system_form.id, form_data: this.$util.deepClone(this.$refs.form.formData) };
|
|
}
|
|
// 商品表单
|
|
if (this.$refs.goodsForm) {
|
|
if (!data.form_data) data.form_data = {};
|
|
data.form_data.goods_form = {};
|
|
this.$refs.goodsForm.forEach(item => {
|
|
data.form_data.goods_form[item._props.customAttr.sku_id] = {
|
|
form_id: item._props.customAttr.form_id,
|
|
form_data: this.$util.deepClone(item.formData)
|
|
};
|
|
});
|
|
}
|
|
Object.keys(data).forEach(key => {
|
|
let item = data[key];
|
|
if (typeof item == 'object') data[key] = JSON.stringify(item);
|
|
});
|
|
if (data.member_address && this.orderCreateData.delivery && this.orderCreateData.delivery.delivery_type != 'store') delete data.member_address;
|
|
return data;
|
|
},
|
|
/**
|
|
* 打开支付弹窗
|
|
*/
|
|
openChoosePayment() {
|
|
uni.setStorageSync('paySource', '');
|
|
// #ifdef MP-WEIXIN
|
|
if (this.paymentData.is_virtual) {
|
|
this.$util.subscribeMessage('ORDER_URGE_PAYMENT,ORDER_PAY');
|
|
} else {
|
|
switch (this.orderCreateData.delivery.delivery_type) {
|
|
case 'express': //物流配送
|
|
this.$util.subscribeMessage('ORDER_URGE_PAYMENT,ORDER_PAY,ORDER_DELIVERY');
|
|
break;
|
|
case 'store': //门店自提
|
|
this.$util.subscribeMessage('ORDER_URGE_PAYMENT,ORDER_PAY');
|
|
break;
|
|
case 'local': //同城配送
|
|
this.$util.subscribeMessage('ORDER_URGE_PAYMENT,ORDER_PAY,ORDER_DELIVERY');
|
|
break;
|
|
}
|
|
}
|
|
|
|
// #endif
|
|
this.$refs.choosePaymentPopup.getPayInfo(this.outTradeNo);
|
|
},
|
|
verify() {
|
|
if (this.paymentData.is_virtual == 1) {
|
|
if (!this.orderCreateData.member_address.mobile.length) {
|
|
this.$util.showToast({
|
|
title: '请输入您的手机号码'
|
|
});
|
|
return false;
|
|
}
|
|
var reg = /^[1](([3][0-9])|([4][5-9])|([5][0-3,5-9])|([6][5,6])|([7][0-8])|([8][0-9])|([9][1,8,9]))[0-9]{8}$/;
|
|
if (!reg.test(this.orderCreateData.member_address.mobile)) {
|
|
this.$util.showToast({
|
|
title: '请输入正确的手机号码'
|
|
});
|
|
return false;
|
|
}
|
|
} else {
|
|
if (!this.orderCreateData.delivery || !this.orderCreateData.delivery.delivery_type) {
|
|
this.$util.showToast({ title: '商家未设置配送方式' });
|
|
return false;
|
|
}
|
|
if (
|
|
(this.orderCreateData.delivery.delivery_type == 'express' && !this.memberAddress) ||
|
|
(this.orderCreateData.delivery.delivery_type == 'local' && !this.localMemberAddress)
|
|
) {
|
|
this.$util.showToast({ title: '请先选择您的收货地址' });
|
|
return false;
|
|
}
|
|
|
|
if (this.orderCreateData.delivery.delivery_type == 'store') {
|
|
if (!this.orderCreateData.delivery.store_id) {
|
|
this.$util.showToast({
|
|
title: '没有可提货的门店,请选择其他配送方式'
|
|
});
|
|
return false;
|
|
}
|
|
if (!this.orderCreateData.member_address.mobile) {
|
|
this.$util.showToast({
|
|
title: '请输入预留手机'
|
|
});
|
|
return false;
|
|
}
|
|
var reg = /^[1](([3][0-9])|([4][5-9])|([5][0-3,5-9])|([6][5,6])|([7][0-8])|([8][0-9])|([9][1,8,9]))[0-9]{8}$/;
|
|
if (!reg.test(this.orderCreateData.member_address.mobile)) {
|
|
this.$util.showToast({
|
|
title: '请输入正确的手机号'
|
|
});
|
|
return false;
|
|
}
|
|
if (!this.deliveryTime) {
|
|
this.$util.showToast({
|
|
title: '请选择提货时间'
|
|
});
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (this.orderCreateData.delivery.delivery_type == 'local') {
|
|
if (!this.orderCreateData.delivery.store_id) {
|
|
this.$util.showToast({
|
|
title: '没有可配送的门店,请选择其他配送方式'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.calculateGoodsData.local_config && this.calculateGoodsData.local_config.info.time_is_open == 1 && !this.deliveryTime) {
|
|
this.$util.showToast({
|
|
title: '请选择送达时间'
|
|
});
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (this.$refs.goodsForm) {
|
|
let formVerify = true;
|
|
for (let i = 0; i < this.$refs.goodsForm.length; i++) {
|
|
let item = this.$refs.goodsForm[i];
|
|
formVerify = item.verify();
|
|
if (!formVerify) {
|
|
break;
|
|
}
|
|
}
|
|
if (!formVerify) return false;
|
|
}
|
|
if (this.paymentData.system_form) {
|
|
let formVerify = this.$refs.form.verify();
|
|
if (!formVerify) return false;
|
|
}
|
|
return true;
|
|
},
|
|
/**
|
|
* 选择收货地址
|
|
*/
|
|
selectAddress() {
|
|
var params = {
|
|
back: this.$util.getCurrentRoute().path,
|
|
local: 0,
|
|
type: 1
|
|
};
|
|
// 外卖配送需要定位地址
|
|
if (this.orderCreateData.delivery.delivery_type == 'local') {
|
|
params.local = 1;
|
|
params.type = 2;
|
|
}
|
|
this.$util.redirectTo('/pages_tool/member/address', params);
|
|
},
|
|
/**
|
|
* 选择配送方式
|
|
* @param {Object} data
|
|
*/
|
|
selectDeliveryType(data) {
|
|
if (this.orderCreateData.delivery && this.orderCreateData.delivery.delivery_type == data.name) return;
|
|
|
|
let delivery = {
|
|
delivery_type: data.name,
|
|
delivery_type_name: data.title
|
|
};
|
|
// 如果是门店配送
|
|
if (data.name == 'store' || data.name == 'local') {
|
|
if (data.store_list[0]) {
|
|
delivery.store_id = data.store_list[0].store_id;
|
|
}
|
|
this.storeId = delivery.store_id ? delivery.store_id : 0;
|
|
if (!this.orderCreateData.member_address)
|
|
this.orderCreateData.member_address = { mobile: this.paymentData && this.paymentData.member_account.mobile ? this.paymentData.member_account.mobile : '' };
|
|
}
|
|
this.$set(this.orderCreateData, 'delivery', delivery);
|
|
this.orderCreateData.buyer_ask_delivery_time = '';
|
|
this.deliveryTime = '';
|
|
uni.removeStorageSync('deliveryTime');
|
|
uni.setStorageSync('delivery', delivery);
|
|
|
|
// 配送方式不为门店配送时
|
|
if (this.orderCreateData.delivery.delivery_type != 'express' && !this.location) this.$util.getLocation();
|
|
this.calculate();
|
|
},
|
|
/**
|
|
* 图片错误
|
|
* @param {Object} index
|
|
*/
|
|
imageError(index) {
|
|
this.paymentData.shop_goods_list.goods_list[index].sku_image = this.$util.getDefaultImage().goods;
|
|
this.$forceUpdate();
|
|
},
|
|
/**
|
|
* 选择门店
|
|
* @param {Object} data
|
|
*/
|
|
selectPickupPoint(data) {
|
|
if (data.store_id != this.storeId) {
|
|
this.storeId = data.store_id;
|
|
this.orderCreateData.delivery.store_id = data.store_id;
|
|
this.calculate();
|
|
this.resetDeliveryTime();
|
|
// 存储所选门店
|
|
let delivery = uni.getStorageSync('delivery');
|
|
delivery.store_id = data.store_id;
|
|
uni.setStorageSync('delivery', delivery)
|
|
}
|
|
this.$refs.deliveryPopup.close();
|
|
},
|
|
/**
|
|
* 重置提货时间
|
|
*/
|
|
resetDeliveryTime() {
|
|
this.orderCreateData.buyer_ask_delivery_time = '';
|
|
this.deliveryTime = '';
|
|
uni.removeStorageSync('deliveryTime');
|
|
},
|
|
/**
|
|
* 门店
|
|
*/
|
|
storetime(type = '') {
|
|
if (this.calculateData.shop_goods_list.delivery_store_info) {
|
|
let data = this.$util.deepClone(this.storeInfo);
|
|
if (data.delivery_time) {
|
|
data.delivery_time = JSON.parse(data.delivery_time);
|
|
data.end_time = data.delivery_time[ (data.delivery_time.length - 1) ].end_time;
|
|
} else {
|
|
data.delivery_time = [ {start_time: data.start_time, end_time: data.end_time} ]
|
|
}
|
|
let obj = {
|
|
delivery: this.orderCreateData.delivery,
|
|
dataTime: data
|
|
};
|
|
this.$refs.timePopup.open(obj, type);
|
|
this.$forceUpdate();
|
|
}
|
|
},
|
|
/**
|
|
* 选择自提时间
|
|
* @param {Object} data
|
|
*/
|
|
selectPickupTime(data) {
|
|
this.deliveryTime = data.data.month + '(' + data.data.time + ')';
|
|
|
|
let nowDate = new Date();
|
|
let Year = nowDate.getFullYear();
|
|
let timeData = data.data.month.split('月');
|
|
let month = timeData[0];
|
|
let date = timeData[1].split('日')[0];
|
|
this.orderCreateData.buyer_ask_delivery_time = Year + '-' + month + '-' + date + ' ' + data.data.time;
|
|
|
|
//将时间缓存,避免切换地址时重置
|
|
uni.setStorageSync('deliveryTime', {
|
|
deliveryTime: this.deliveryTime,
|
|
buyer_ask_delivery_time: this.orderCreateData.buyer_ask_delivery_time,
|
|
delivery_type: this.orderCreateData.delivery.delivery_type
|
|
});
|
|
},
|
|
storeImgError() {
|
|
this.storeInfo.store_image = this.$util.getDefaultImage().store;
|
|
},
|
|
openPopup(ref) {
|
|
this.tempData = this.$util.deepClone(this.orderCreateData);
|
|
this.$refs[ref].open();
|
|
},
|
|
closePopup(ref) {
|
|
this.orderCreateData = this.$util.deepClone(this.tempData);
|
|
this.$refs[ref].close();
|
|
this.tempData = null;
|
|
},
|
|
/**
|
|
* 切换发票开关
|
|
*/
|
|
changeIsInvoice() {
|
|
if (this.orderCreateData.is_invoice == 0) {
|
|
this.orderCreateData.is_invoice = 1;
|
|
} else {
|
|
this.orderCreateData.is_invoice = 0;
|
|
}
|
|
},
|
|
/**
|
|
* 切换发票类型
|
|
* @param {Object} invoice_type
|
|
*/
|
|
changeInvoiceType(invoice_type) {
|
|
this.orderCreateData.invoice_type = invoice_type;
|
|
},
|
|
/**
|
|
* 切换发票个人还是企业
|
|
* @param {Object} invoice_title_type
|
|
*/
|
|
changeInvoiceTitleType(invoice_title_type) {
|
|
this.orderCreateData.invoice_title_type = invoice_title_type;
|
|
},
|
|
/**
|
|
* 切换增值税专用发票开关
|
|
*/
|
|
changeIsTaxInvoice() {
|
|
if (this.orderCreateData.is_tax_invoice == 0) this.orderCreateData.is_tax_invoice = 1;
|
|
else this.orderCreateData.is_tax_invoice = 0;
|
|
this.$forceUpdate();
|
|
},
|
|
/**
|
|
* 选择发票内容
|
|
* @param {Object} invoice_content
|
|
*/
|
|
changeInvoiceContent(invoice_content) {
|
|
this.orderCreateData.invoice_content = invoice_content;
|
|
this.$forceUpdate();
|
|
},
|
|
/**
|
|
* 验证发票内容
|
|
*/
|
|
invoiceVerify() {
|
|
if (!this.orderCreateData.invoice_title) {
|
|
this.$util.showToast({
|
|
title: '请填写发票抬头'
|
|
});
|
|
return false;
|
|
}
|
|
if (!this.orderCreateData.taxpayer_number && this.orderCreateData.invoice_title_type == 2) {
|
|
this.$util.showToast({
|
|
title: '请填写纳税人识别号'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.orderCreateData.invoice_type == 1 && !this.orderCreateData.invoice_full_address && this.orderPaymentData.is_virtual == 1) {
|
|
this.$util.showToast({
|
|
title: '请填写发票邮寄地址'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.orderCreateData.invoice_type == 2 && !this.orderCreateData.invoice_email) {
|
|
this.$util.showToast({
|
|
title: '请填写邮箱'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.orderCreateData.invoice_type == 2) {
|
|
var reg = /^([a-zA-Z]|[0-9])(\w|\-)+@[a-zA-Z0-9]+\.([a-zA-Z]{2,4})$/;
|
|
if (!reg.test(this.orderCreateData.invoice_email)) {
|
|
this.$util.showToast({
|
|
title: '请填写正确的邮箱'
|
|
});
|
|
return false;
|
|
}
|
|
}
|
|
if (!this.orderCreateData.invoice_content) {
|
|
this.$util.showToast({
|
|
title: '请选择发票内容'
|
|
});
|
|
return false;
|
|
}
|
|
return true;
|
|
},
|
|
/**
|
|
* 保存发票设置
|
|
*/
|
|
saveInvoice() {
|
|
if (this.orderCreateData.is_invoice == 1 && !this.invoiceVerify()) return;
|
|
this.calculate();
|
|
this.$refs.invoicePopup.close();
|
|
},
|
|
/**
|
|
* 保存留言
|
|
*/
|
|
saveBuyerMessage() {
|
|
this.calculate();
|
|
this.$refs.buyerMessagePopup.close();
|
|
},
|
|
/**
|
|
* 选择会员卡
|
|
*/
|
|
selectMemberCard() {
|
|
this.orderCreateData.is_open_card = this.orderCreateData.is_open_card ? 0 : 1;
|
|
if (!this.orderCreateData.member_card_unit) this.orderCreateData.member_card_unit = this.cardChargeType[0].key;
|
|
this.calculate();
|
|
},
|
|
/**
|
|
* 选择会员卡充值类型
|
|
* @param {Object} key
|
|
*/
|
|
selectMembercardUnit(key) {
|
|
this.orderCreateData.member_card_unit = key;
|
|
this.calculate();
|
|
},
|
|
/**
|
|
* 使用兑换券抵扣
|
|
*/
|
|
usePoint() {
|
|
this.orderCreateData.is_point = this.orderCreateData.is_point ? 0 : 1;
|
|
this.calculate();
|
|
},
|
|
/**
|
|
* 支付弹窗关闭
|
|
*/
|
|
payClose() {
|
|
this.$util.redirectTo('/pages/order/detail', { order_id: this.$refs.choosePaymentPopup.payInfo.order_id }, 'redirectTo');
|
|
},
|
|
/**
|
|
* 选择优惠券
|
|
* @param {Object} data
|
|
*/
|
|
selectCoupon(data) {
|
|
if (this.orderCreateData.coupon.coupon_id == data.coupon_id) this.orderCreateData.coupon = { coupon_id: 0 };
|
|
else this.orderCreateData.coupon = { coupon_id: data.coupon_id };
|
|
},
|
|
/**
|
|
* 使用优惠券
|
|
*/
|
|
useCpopon() {
|
|
this.$refs.couponPopup.close();
|
|
this.calculate();
|
|
},
|
|
/**
|
|
* 同城配送送达时间
|
|
*/
|
|
localtime(type = '') {
|
|
let data = this.$util.deepClone(this.calculateGoodsData.local_config.info);
|
|
if (data.delivery_time) {
|
|
data.end_time = data.delivery_time[data.delivery_time.length - 1].end_time;
|
|
}
|
|
let obj = {
|
|
delivery: this.orderCreateData.delivery,
|
|
dataTime: data
|
|
};
|
|
this.$refs.timePopup.open(obj, type);
|
|
},
|
|
/**
|
|
* 剩余起送价
|
|
*/
|
|
surplusStartMoney() {
|
|
let money = 0;
|
|
if (this.calculateData && this.calculateData.delivery && this.calculateData.delivery.delivery_type == 'local') {
|
|
let startDeliveryMoney = this.goodsData.local_config.info.start_money ?? 0;
|
|
money = parseFloat(startDeliveryMoney) - parseFloat(this.calculateData.goods_money);
|
|
money = money < 0 ? 0 : money;
|
|
}
|
|
return money;
|
|
},
|
|
/**
|
|
* 交易协议
|
|
*/
|
|
getTransactionAgreement() {
|
|
this.$api.sendRequest({
|
|
url: '/api/order/transactionagreement',
|
|
success: res => {
|
|
if (res.data) this.transactionAgreement = res.data;
|
|
}
|
|
});
|
|
},
|
|
editForm(index) {
|
|
this.tempFormData = {
|
|
index: index,
|
|
json_data: this.$util.deepClone(this.goodsData.goods_list[index].goods_form.json_data)
|
|
};
|
|
this.$refs.editFormPopup.open();
|
|
},
|
|
saveForm() {
|
|
if (this.$refs.tempForm.verify()) {
|
|
this.$set(this.paymentData.shop_goods_list.goods_list[this.tempFormData.index].goods_form, 'json_data', this.$refs.tempForm.formData);
|
|
this.$refs.editFormPopup.close();
|
|
}
|
|
}
|
|
},
|
|
filters: {
|
|
// 金额格式化输出
|
|
moneyFormat(money) {
|
|
return parseFloat(money).toFixed(2);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '@/common/css/order_parment.scss';
|
|
</style>
|
|
|
|
<style scoped lang="scss">
|
|
/deep/ .uni-popup__wrapper.uni-custom .uni-popup__wrapper-box {
|
|
background: none;
|
|
max-height: unset !important;
|
|
overflow-y: hidden !important;
|
|
}
|
|
/deep/ .uni-popup__wrapper {
|
|
border-radius: 20rpx 20rpx 0 0;
|
|
}
|
|
/deep/ .uni-popup {
|
|
z-index: 8;
|
|
}
|
|
.sava-btn,
|
|
.submit-btn {
|
|
width: 100% !important;
|
|
}
|
|
</style>
|