Merge branch 'feature/mall_product' of http://117.33.142.185:3000/zenghuapei/cyywl_server into feature/mall_product
commit
f7667b9361
|
@ -21,7 +21,7 @@
|
||||||
"env": {
|
"env": {
|
||||||
"UNI_PLATFORM": "h5",
|
"UNI_PLATFORM": "h5",
|
||||||
"isVConsole": true,
|
"isVConsole": true,
|
||||||
"APP_BASE_URL": "http://192.168.1.147:48080"
|
"APP_BASE_URL": "http://192.168.1.188:48080"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"prod": {
|
"prod": {
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
import countDown from '@/components/countDown';
|
import countDown from '@/components/countDown';
|
||||||
import numberScroll from '@/components/numberScroll.vue'
|
import numberScroll from '@/components/numberScroll.vue'
|
||||||
import {
|
import {
|
||||||
getCashierOrder,
|
getOrderDetail,
|
||||||
orderPay
|
orderPay
|
||||||
} from '@/api/order.js';
|
} from '@/api/order.js';
|
||||||
export default {
|
export default {
|
||||||
|
@ -125,7 +125,7 @@
|
||||||
onLoad(options) {
|
onLoad(options) {
|
||||||
if (options.order_id) this.orderId = options.order_id
|
if (options.order_id) this.orderId = options.order_id
|
||||||
if (options.from_type) this.fromType = options.from_type
|
if (options.from_type) this.fromType = options.from_type
|
||||||
// this.getCashierOrder()
|
this.getCashierOrder()
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
let options = wx.getEnterOptionsSync();
|
let options = wx.getEnterOptionsSync();
|
||||||
|
@ -175,39 +175,18 @@
|
||||||
},
|
},
|
||||||
getCashierOrder() {
|
getCashierOrder() {
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
title: '创建订单中'
|
title: '加载中'
|
||||||
});
|
});
|
||||||
getCashierOrder(this.orderId, this.fromType).then(res => {
|
getOrderDetail(this.orderId).then(res => {
|
||||||
console.log(res)
|
console.log('res', res)
|
||||||
this.payPrice = this.payPriceShow = res.data.pay_price
|
const orderInfo = res.data
|
||||||
this.payPostage = res.data.pay_postage
|
this.payPrice = parseFloat(orderInfo.proTotalPrice).toFixed(2)
|
||||||
this.offlinePostage = res.data.offline_postage
|
this.payPriceShow = parseFloat(orderInfo.proTotalPrice).toFixed(2)
|
||||||
this.invalidTime = res.data.invalid_time
|
|
||||||
//微信支付是否开启
|
|
||||||
this.cartArr[0].payStatus = res.data.wechat_pay_status || 0
|
|
||||||
//支付宝是否开启
|
|
||||||
this.cartArr[1].payStatus = res.data.ali_pay_status || 0;
|
|
||||||
//#ifdef MP
|
|
||||||
this.cartArr[1].payStatus = false;
|
|
||||||
//#endif
|
|
||||||
//余额支付是否开启
|
|
||||||
// that.cartArr[2].title = '可用余额:' + res.data.userInfo.now_money;
|
|
||||||
this.cartArr[2].number = res.data.now_money;
|
|
||||||
this.cartArr[2].payStatus = res.data.yue_pay_status
|
|
||||||
if (res.data.offline_pay_status) {
|
|
||||||
this.cartArr[3].payStatus = 1
|
|
||||||
} else {
|
|
||||||
this.cartArr[3].payStatus = 0
|
|
||||||
}
|
|
||||||
//好友代付是否开启
|
|
||||||
this.cartArr[4].payStatus = res.data.friend_pay_status || 0;
|
|
||||||
uni.hideLoading();
|
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
uni.hideLoading();
|
|
||||||
return this.$util.Tips({
|
return this.$util.Tips({
|
||||||
title: err
|
title: err
|
||||||
})
|
})
|
||||||
})
|
}).finally(uni.hideLoading)
|
||||||
},
|
},
|
||||||
payType(number, paytype, index) {
|
payType(number, paytype, index) {
|
||||||
this.active = index;
|
this.active = index;
|
||||||
|
|
|
@ -171,13 +171,13 @@
|
||||||
{
|
{
|
||||||
img: '/static/images/order_icon4.png',
|
img: '/static/images/order_icon4.png',
|
||||||
title: '已完成',
|
title: '已完成',
|
||||||
url: '/pages/users/order_list/index?status=3',
|
url: '/pages/users/order_list/index?status=4',
|
||||||
num: 0
|
num: 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
img: '/static/images/order_icon5.png',
|
img: '/static/images/order_icon5.png',
|
||||||
title: '售后/退款',
|
title: '售后/退款',
|
||||||
url: '/pages/users/user_return_list/index',
|
url: '/pages/users/user_return_list/index?status=-3',
|
||||||
num: 0
|
num: 0
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -628,7 +628,6 @@
|
||||||
},
|
},
|
||||||
getOrderPay: function(orderNo, message) {
|
getOrderPay: function(orderNo, message) {
|
||||||
let that = this;
|
let that = this;
|
||||||
console.log(orderNo,'orderNo')
|
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/goods_cashier/index?order_id=' + orderNo
|
url: '/pages/goods_cashier/index?order_id=' + orderNo
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue