This commit is contained in:
parent
8f28955f44
commit
aad2f02a5d
|
@ -23,15 +23,19 @@
|
||||||
<view v-if="datas.is_bulk" class="row">
|
<view v-if="datas.is_bulk" class="row">
|
||||||
<view>购买重量<text style="color: #F55726;">*</text></view>
|
<view>购买重量<text style="color: #F55726;">*</text></view>
|
||||||
<view style="flex: 1;">
|
<view style="flex: 1;">
|
||||||
<up-input v-model="datas.cart_num" :cursorSpacing='120' type="number" border="none"
|
<up-input v-model="datas.cart_num" :cursorSpacing='120' type="number" border="none" placeholder="请输入购买重量"
|
||||||
placeholder="请输入购买重量" inputAlign="right"></up-input>
|
inputAlign="right"></up-input>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-else class="row">
|
<view v-else class="row">
|
||||||
<view>购买数量<text style="color: #F55726;">*</text></view>
|
<view>购买数量<text style="color: #F55726;">*</text></view>
|
||||||
<view style="flex: 1;">
|
<view style="flex: 1;">
|
||||||
<up-input v-model="datas.cart_num" :cursorSpacing='120' type="number" border="none"
|
<up-input v-model="datas.cart_num" :cursorSpacing='120' type="number" border="none" placeholder="请输入购买数量"
|
||||||
placeholder="请输入购买数量" inputAlign="right"></up-input>
|
inputAlign="right">
|
||||||
|
<template #suffix>
|
||||||
|
<span style="color: #20b128;">{{datas.unit_name}}</span>
|
||||||
|
</template>
|
||||||
|
</up-input>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="row" style="padding-top: 30px;padding-bottom: 30rpx;">
|
<view class="row" style="padding-top: 30px;padding-bottom: 30rpx;">
|
||||||
|
|
|
@ -13,7 +13,10 @@
|
||||||
<text style="margin: 0 10rpx;">自提点</text>
|
<text style="margin: 0 10rpx;">自提点</text>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="shopInfo.mer_id">
|
<view v-if="shopInfo.mer_id">
|
||||||
<view>{{shopInfo.mer_name}}</view>
|
<view>
|
||||||
|
{{shopInfo.mer_name}}
|
||||||
|
<span v-if="shopInfo.recommend" style="font-size: 10px;color: #fff;background-color: #20b128;padding: 2rpx 5rpx;border-radius: 4rpx;">推荐</span>
|
||||||
|
</view>
|
||||||
<view>
|
<view>
|
||||||
<text>{{shopInfo.service_phone}}</text>
|
<text>{{shopInfo.service_phone}}</text>
|
||||||
<text
|
<text
|
||||||
|
@ -218,6 +221,7 @@
|
||||||
if (mer_name === null && myAddressInfo.value.long && merchantList.value.length > 0 && !shopInfo
|
if (mer_name === null && myAddressInfo.value.long && merchantList.value.length > 0 && !shopInfo
|
||||||
.value.mer_id) {
|
.value.mer_id) {
|
||||||
shopInfo.value = merchantList.value[0];
|
shopInfo.value = merchantList.value[0];
|
||||||
|
shopInfo.value.recommend = 1;
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
shopRef.value.setCheck(shopInfo.value.mer_id);
|
shopRef.value.setCheck(shopInfo.value.mer_id);
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue