更新
This commit is contained in:
parent
e05ded5513
commit
48cc5f9c2a
@ -2,15 +2,18 @@
|
|||||||
<view class="container">
|
<view class="container">
|
||||||
<view v-if="!isWeixin" class="v-navbar">
|
<view v-if="!isWeixin" class="v-navbar">
|
||||||
<u-navbar title="提货付款" :safeAreaInsetTop="false" :fixed="false" @leftClick="leftClick" bgColor="transparent"
|
<u-navbar title="提货付款" :safeAreaInsetTop="false" :fixed="false" @leftClick="leftClick" bgColor="transparent"
|
||||||
leftIconColor="#fff" :titleStyle="{color:'#fff',fontWeight:'bold',fontSize:'32rpx'}">
|
leftIconColor="#333" :titleStyle="{color:'#333',fontWeight:'bold',fontSize:'32rpx'}">
|
||||||
</u-navbar>
|
</u-navbar>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view style="height: 150rpx;"></view> -->
|
<view style="height: 50rpx;"></view>
|
||||||
<view class="wrap">
|
<view class="wrap" >
|
||||||
<view class="shop">
|
<view class="shop">
|
||||||
<image src="@/static/shop_logo.webp" style="width: 62rpx;height: 54rpx;" />
|
<image src="@/static/shop_logo.webp" style="width: 62rpx;height: 54rpx;" />
|
||||||
<text class="shop-name">{{mer_name}}</text>
|
<text class="shop-name" v-if="mer_name">{{mer_name||''}}</text>
|
||||||
</view>
|
</view>
|
||||||
|
<uni-popup type="bottom" ref="pop">
|
||||||
|
<view style="height: 500rpx;background-color: #fff;width: 100%;"></view>
|
||||||
|
</uni-popup>
|
||||||
|
|
||||||
<!-- 付款金额 -->
|
<!-- 付款金额 -->
|
||||||
<view class="v-con">
|
<view class="v-con">
|
||||||
@ -44,13 +47,13 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="v-btn-wrap" v-if="cartForm.total_amount" @click="submitOrder">
|
<view class="v-btn-wrap" @click="cartForm.total_amount?submitOrder():null">
|
||||||
<view class="v-btn">{{cartForm.total_amount}}元 确认支付</view>
|
<view class="v-btn">{{cartForm.total_amount||0}}元 确认支付</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 登陆 -->
|
<!-- 登陆 -->
|
||||||
<authorize :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse" @onLoadFun="onLoadFun">
|
<!-- <authorize :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse" @onLoadFun="onLoadFun">
|
||||||
</authorize>
|
</authorize> -->
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 无商户信息提示 -->
|
<!-- 无商户信息提示 -->
|
||||||
@ -90,7 +93,8 @@
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isEmpty: true,
|
isEmpty: true,
|
||||||
isWeixin: this.$wechat.isWeixin(),
|
// isWeixin: this.$wechat.isWeixin(),
|
||||||
|
isWeixin: false,
|
||||||
cartForm: {
|
cartForm: {
|
||||||
product_id: '',
|
product_id: '',
|
||||||
product_attr_unique: '',
|
product_attr_unique: '',
|
||||||
@ -125,7 +129,6 @@
|
|||||||
onLoad(opt) {
|
onLoad(opt) {
|
||||||
that = this;
|
that = this;
|
||||||
this.mer_id = opt.mer_id;
|
this.mer_id = opt.mer_id;
|
||||||
|
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
this.getProductInfoByMerid(this.mer_id);
|
this.getProductInfoByMerid(this.mer_id);
|
||||||
@ -146,6 +149,9 @@
|
|||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
test(){
|
||||||
|
this.$refs.pop.open()
|
||||||
|
},
|
||||||
validateDecimal(event) {
|
validateDecimal(event) {
|
||||||
let val = (that.cartForm.total_amount.match(/^\d*(\.?\d{0,2})/g)[0]) || ''
|
let val = (that.cartForm.total_amount.match(/^\d*(\.?\d{0,2})/g)[0]) || ''
|
||||||
that.$nextTick(() => {
|
that.$nextTick(() => {
|
||||||
@ -231,16 +237,17 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
getProductInfoByMerid(merid, money) {
|
getProductInfoByMerid(merid, money) {
|
||||||
if (!that.cartForm.total_amount) return;
|
// if (!that.cartForm.total_amount) return;
|
||||||
getProductInfo({
|
getProductInfo({
|
||||||
mer_id: that.mer_id,
|
mer_id: that.mer_id,
|
||||||
money: that.cartForm.total_amount
|
money: that.cartForm.total_amount
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
console.log(res);
|
||||||
if (!that.cartForm.total_amount) {
|
if (!that.cartForm.total_amount) {
|
||||||
this.mer_name = res.data.merchant;
|
this.mer_name = res.data.merchant;
|
||||||
} else {
|
} else {
|
||||||
that.merchantInfo = res.data.list;
|
that.merchantInfo = res.data.list;
|
||||||
this.mer_name = res.data.merInfo;
|
// this.mer_name = res.data.merInfo;
|
||||||
}
|
}
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
that.tips = err.message || err.smg || err;
|
that.tips = err.message || err.smg || err;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user