add
This commit is contained in:
parent
af1677554c
commit
8dfc454ba9
|
@ -52,11 +52,12 @@
|
|||
</view>
|
||||
<view class="address-btn item-center">
|
||||
<view class='ship-type' style="">
|
||||
<view class="ship-type-item" :class='{actShipItem:shipping_type==2 }' @click='shipping_type=2'>
|
||||
<view class="ship-type-item" :class='{actShipItem:orderInfo.shipping_type==2 }'
|
||||
@click='orderInfo.shipping_type=2' v-if='orderInfo.default_delivery==1'>
|
||||
自提
|
||||
</view>
|
||||
<view class="ship-type-item" v-if='true' @click='shipping_type=1'
|
||||
:class='{actShipItem:shipping_type==1 }'>
|
||||
<view class="ship-type-item" v-if='true' @click='orderInfo.shipping_type=1'
|
||||
:class='{actShipItem:orderInfo.shipping_type==1 }'>
|
||||
配送
|
||||
</view>
|
||||
</view>
|
||||
|
@ -86,7 +87,8 @@
|
|||
<view class="head-title">价格明细</view>
|
||||
<view class="row">
|
||||
<view>商品总价 <text>共计{{cartList.length}}款商品</text></view>
|
||||
<view><text>¥</text>{{c_price(orderInfo.pay_price, 0)}}<text>.{{c_price(orderInfo.pay_price, 1)}}</text>
|
||||
<view>
|
||||
<text>¥</text>{{c_price(orderInfo.total_price, 0)}}<text>.{{c_price(orderInfo.total_price, 1)}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="row">
|
||||
|
@ -152,8 +154,8 @@
|
|||
<text style="color: #000;">合计: </text>
|
||||
<text>¥</text>
|
||||
<block v-if="orderInfo.total_price">
|
||||
<text style="font-size: 32rpx;font-weight: bold;">{{c_price(orderInfo.total_price, 0)}}</text>
|
||||
<text>.{{c_price(orderInfo.total_price, 1)}}</text>
|
||||
<text style="font-size: 32rpx;font-weight: bold;">{{c_price(orderInfo.pay_price, 0)}}</text>
|
||||
<text>.{{c_price(orderInfo.pay_price, 1)}}</text>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
|
@ -197,9 +199,13 @@
|
|||
createOrderApi
|
||||
} from "@/api/order.js";
|
||||
|
||||
// 用户选择的门店信息
|
||||
let STORE_INFO = uni.getStorageSync('STORE_INFO');
|
||||
if (STORE_INFO)
|
||||
STORE_INFO = JSON.parse(STORE_INFO)
|
||||
|
||||
const cartStore = useCartStore();
|
||||
const reservation_time = ref('')
|
||||
const shipping_type = ref(2)
|
||||
|
||||
const formData = ref({
|
||||
remark: ""
|
||||
|
@ -349,7 +355,8 @@
|
|||
const orderInfo = ref({});
|
||||
const checkOrder = () => {
|
||||
checkOrderApi({
|
||||
cart_id: cartStore.cartList
|
||||
cart_id: cartStore.cartList,
|
||||
store_id: STORE_INFO.id || 0
|
||||
}).then(res => {
|
||||
cartList.value = res.data.cart_list;
|
||||
orderInfo.value = res.data.order;
|
||||
|
@ -364,10 +371,11 @@
|
|||
createOrderApi({
|
||||
cart_id: cartStore.cartList,
|
||||
address_id: addressInfo.value.address_id,
|
||||
mer_id: shopInfo.value.mer_id,
|
||||
pay_type: pay_type.value,
|
||||
store_id: 2,
|
||||
reservation_time: "",
|
||||
reservation_time: reservation_time.value,
|
||||
shipping_type: orderInfo.value.shipping_type,
|
||||
mark: formData.value.remark
|
||||
|
||||
}).then(res => {
|
||||
console.log(res);
|
||||
|
|
|
@ -35,7 +35,7 @@ const useUserStore = defineStore("user", () => {
|
|||
mobile: "19330904744",
|
||||
nickname: "用户1714964250",
|
||||
supplier: null,
|
||||
token: "04d41270bc4dae8053cd180148514747"
|
||||
token: "e5561a79d439a061a3cca3f780d996e2"
|
||||
}
|
||||
// #endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue