diff --git a/api/order.js b/api/order.js index 23ec45b..0d313cd 100644 --- a/api/order.js +++ b/api/order.js @@ -121,6 +121,7 @@ export function orderDel(uni) { * @param string uni */ export function getOrderDetail(uni) { + console.log(uni,'uniuni'); return request.get('order/detail/' + uni); } diff --git a/components/payment/index.vue b/components/payment/index.vue index 40133f5..46c1c67 100644 --- a/components/payment/index.vue +++ b/components/payment/index.vue @@ -50,24 +50,25 @@ }, data() { return { - formContent:'', - payChannel:'', + formContent: '', + payChannel: '', //支付方式 - payMode: [{ - "name": "微信支付", - "icon": "icon-weixin2", - value: 'weixin', - title: '微信快捷支付', - payStatus: 1, - }, - { - "name": "余额支付", - "icon": "icon-yuezhifu", - value: 'yue', - title: '可用余额:', - payStatus: 1, - number: 0 - }, + payMode: [ + // { + // "name": "微信支付", + // "icon": "icon-weixin2", + // value: 'weixin', + // title: '微信快捷支付', + // payStatus: 1, + // }, + // { + // "name": "余额支付", + // "icon": "icon-yuezhifu", + // value: 'yue', + // title: '可用余额:', + // payStatus: 1, + // number: 0 + // }, // #ifndef MP { "name": "支付宝支付", @@ -78,12 +79,19 @@ } // #endif ], + openId: '', + checkid: '', + isAli: false, }; }, - computed: mapGetters(['systemPlatform','userInfo','productType']), - created(){ + computed: mapGetters(['systemPlatform', 'userInfo', 'productType']), + created() { this.payConfig(); this.payMode[1].number = this.userInfo.nowMoney; + + }, + mounted() { + this.importAliPayScript(); // 导入支付宝脚本 }, methods: { close: function() { @@ -91,12 +99,105 @@ action: 'payClose' }); }, - payConfig(){ - getPayConfig().then(res=>{ + payConfig() { + getPayConfig().then(res => { this.payMode[1].payStatus = parseInt(res.data.yuePayStatus) === 1 ? 1 : 2; this.payMode[0].payStatus = parseInt(res.data.payWeixinOpen) === 1 ? 1 : 0; }) }, + // 导入 my 对象所需的脚本 + importAliPayScript() { + if (navigator.userAgent.indexOf('AliApp') > -1) { + this.isAli = true + const scriptElement = document.createElement('script'); + scriptElement.src = 'https://appx/web-view.min.js'; + document.head.appendChild(scriptElement); + // this.listenMessageFromMiniProgram(); // 监听来自小程序的消息 + + } + }, + // 发送消息给小程序 + sendMessageToMiniProgram() { + my.postMessage({ + name: "测试支付" + }); + }, + // 监听来自小程序的消息 + listenMessageFromMiniProgram() { + my.onMessage = (e) => { + if (e.type == 'authorizeResult') { + this.openId = e.data.data.alipaySystemOauthTokenResponse.openId + } + // console.log(e.data.data.alipaySystemOauthTokenResponse, 'aaaa'); // 在这里处理来自小程序的消息 + }; + }, + aliPay(id) { + console.log('支付宝小程序支付'); + let that = this + console.log(that.order_id, 'idididiid'); + + my.tradePay({ + tradeNO: that.order_id, + success: (res) => { + uni.hideLoading(); + this.alipayQueryPay() + // my.alert({ + // content: JSON.stringify(res), + // }); + + // setTimeout(res => { + // that.$emit('onChangeFun', { + // action: 'pay_complete' + // }); + // }, 2000) + }, + fail: (error) => { + uni.hideLoading(); + // that.stopPolling() + uni.showModal({ + content: "支付失败", + showCancel: false, + success: function(res) { + if (res.confirm) { + //点击确认的操作 + that.$emit('onChangeFun', { + action: 'pay_fail' + }); + } else if (res.cancel) { + // ji + } + } + }) + // console.error('调用 my.tradePay 失败: ', JSON.stringify(error)); + }, + }); + }, + alipayQueryPay() { + + let id = this.checkid + alipayQueryPayResult(id).then(res => { + if (res.data == true) { + + uni.navigateTo({ + url: '/pages/users/alipay_return/alipay_return?out_trade_no=' + + id + + '&payChannel=' + + 'appAlipay' + }) + } else { + setTimeout(() => { + this.alipayQueryPay() + }, 1000); + } + if (res.data == null) { + setTimeout(() => { + this.alipayQueryPay() + }, 1000); + } + }).catch(err => { + + }) + }, goPay: function(number, paytype) { let that = this; let goPages = '/pages/order_pay_status/index?order_id=' + that.order_id; @@ -110,18 +211,18 @@ title: '支付中' }); // #ifdef H5 - if(paytype == 'alipay'){ + if (paytype == 'alipay') { that.payChannel = 'alipay'; - }else if(paytype == 'weixin' && this.$wechat.isWeixin()){ + } else if (paytype == 'weixin' && this.$wechat.isWeixin()) { that.payChannel = 'public'; - }else{ + } else { that.payChannel = 'weixinh5'; } // #endif // #ifdef APP-PLUS - if(paytype == 'alipay'){ + if (paytype == 'alipay') { that.payChannel = 'appAliPay'; - }else if(paytype == 'weixin'){ + } else if (paytype == 'weixin') { that.payChannel = that.systemPlatform === 'ios' ? 'weixinAppIos' : 'weixinAppAndroid'; } // #endif @@ -131,16 +232,19 @@ payChannel: 'routine', // #endif // #ifndef MP - payChannel:that.payChannel, + payChannel: that.payChannel, // #endif payType: paytype, - scene: that.productType === 'normal' ? 0 : 1177 //下单时小程序的场景值 + isAli: that.isAli, + // scene: that.productType === 'normal' ? 0 : 1177 //下单时小程序的场景值 }).then(res => { let jsConfig = res.data.jsConfig; that.order_id = res.data.orderNo; + that.order_id = res.data.tradeNo; + that.checkid = res.data.orderNo switch (res.data.payType) { case 'weixin': - that.weixinPay(jsConfig); + that.weixinPay(jsConfig); break; case 'yue': uni.hideLoading(); @@ -167,55 +271,75 @@ }); break; case 'alipay': - //#ifdef H5 - if (this.$wechat.isWeixin()) { - //微信公众号内支付 - } else { - //h5支付 - uni.hideLoading(); - that.formContent = res.data.alipayRequest; - uni.setStorage({key: 'orderNo', data:that.order_id}); - that.$nextTick(() => { - document.forms['punchout_form'].submit(); - }) - } - //#endif - // #ifdef APP-PLUS - let alipayRequest = res.data.alipayRequest; - uni.requestPayment({ - provider: 'alipay', - orderInfo: alipayRequest, - success: (e) => { - uni.showToast({ - title: "支付成功" - }) - setTimeout(res => { - that.$emit('onChangeFun', { - action: 'pay_complete' - }); - }, 2000) - }, - fail: (e) => { - uni.showModal({ - content: "支付失败", - showCancel: false, - success: function(res) { - if (res.confirm) { - //点击确认的操作 - that.$emit('onChangeFun', { - action: 'pay_fail' - }); - } else if (res.cancel) { - - } - } - }) - }, - complete: () => { + if (that.isAli == false) { + if (this.$wechat.isWeixin()) { + //微信公众号内支付 + } else { + //h5支付 + console.log('进入h5支付宝'); uni.hideLoading(); - }, - }); - // #endif + that.formContent = res.data.alipayRequest; + uni.setStorage({ + key: 'orderNo', + data: that.order_id + }); + that.$nextTick(() => { + document.forms['punchout_form'].submit(); + }) + this.alipayQueryPay() + } + } else { + this.aliPay(that.order_id) + } + // //#ifdef H5 + // if (this.$wechat.isWeixin()) { + // //微信公众号内支付 + // } else { + // //h5支付 + // uni.hideLoading(); + // that.formContent = res.data.alipayRequest; + // uni.setStorage({key: 'orderNo', data:that.order_id}); + // that.$nextTick(() => { + // document.forms['punchout_form'].submit(); + // }) + // } + // //#endif + // // #ifdef APP-PLUS + // let alipayRequest = res.data.alipayRequest; + // uni.requestPayment({ + // provider: 'alipay', + // orderInfo: alipayRequest, + // success: (e) => { + // uni.showToast({ + // title: "支付成功" + // }) + // setTimeout(res => { + // that.$emit('onChangeFun', { + // action: 'pay_complete' + // }); + // }, 2000) + // }, + // fail: (e) => { + // uni.showModal({ + // content: "支付失败", + // showCancel: false, + // success: function(res) { + // if (res.confirm) { + // //点击确认的操作 + // that.$emit('onChangeFun', { + // action: 'pay_fail' + // }); + // } else if (res.cancel) { + + // } + // } + // }) + // }, + // complete: () => { + // uni.hideLoading(); + // }, + // }); + // // #endif break; } }).catch(err => { @@ -229,57 +353,57 @@ }); }) }, - weixinPay(jsConfig){ + weixinPay(jsConfig) { let that = this; // #ifdef MP - uni.requestOrderPayment({ - timeStamp: jsConfig.timeStamp, - nonceStr: jsConfig.nonceStr, - package: jsConfig.packages, - signType: jsConfig.signType, - paySign: jsConfig.paySign, - ticket: jsConfig.ticket, - success: function(ress) { - uni.hideLoading(); - wechatQueryPayResult(that.order_id).then(res => { - uni.hideLoading(); - return that.$util.Tips({ - title: "支付成功", - icon: 'success' - }, () => { - that.$emit('onChangeFun', { - action: 'pay_complete' - }); - }); - }).cache(err => { - uni.hideLoading(); - return that.$util.Tips({ - title: err - }); - }) - }, - fail: function(e) { - uni.hideLoading(); - return that.$util.Tips({ - title: '取消支付' - }, () => { - that.$emit('onChangeFun', { - action: 'pay_fail' - }); - }); - }, - complete: function(e) { - uni.hideLoading(); - if (e.errMsg == 'requestPayment:cancel') return that.$util - .Tips({ - title: '取消支付' - }, () => { - that.$emit('onChangeFun', { - action: 'pay_fail' - }); - }); - }, - }) + uni.requestOrderPayment({ + timeStamp: jsConfig.timeStamp, + nonceStr: jsConfig.nonceStr, + package: jsConfig.packages, + signType: jsConfig.signType, + paySign: jsConfig.paySign, + ticket: jsConfig.ticket, + success: function(ress) { + uni.hideLoading(); + wechatQueryPayResult(that.order_id).then(res => { + uni.hideLoading(); + return that.$util.Tips({ + title: "支付成功", + icon: 'success' + }, () => { + that.$emit('onChangeFun', { + action: 'pay_complete' + }); + }); + }).cache(err => { + uni.hideLoading(); + return that.$util.Tips({ + title: err + }); + }) + }, + fail: function(e) { + uni.hideLoading(); + return that.$util.Tips({ + title: '取消支付' + }, () => { + that.$emit('onChangeFun', { + action: 'pay_fail' + }); + }); + }, + complete: function(e) { + uni.hideLoading(); + if (e.errMsg == 'requestPayment:cancel') return that.$util + .Tips({ + title: '取消支付' + }, () => { + that.$emit('onChangeFun', { + action: 'pay_fail' + }); + }); + }, + }) // #endif // #ifdef H5 let datas = { @@ -313,7 +437,7 @@ }); }) } - + }).cache(errW => { uni.hideLoading(); return that.$util.Tips({ @@ -462,4 +586,4 @@ font-size: 0.3rpx; color: #999; } - + \ No newline at end of file diff --git a/components/productWindow/index.vue b/components/productWindow/index.vue index 268913d..c6e8703 100644 --- a/components/productWindow/index.vue +++ b/components/productWindow/index.vue @@ -41,7 +41,7 @@ - + 分期方案 { preOrderApi({ "preOrderType": preOrderType, "orderDetails": orderDetails }).then(res => { - uni.navigateTo({ - url: '/pages/users/order_confirm/index?preOrderNo=' + res.data.preOrderNo - }); + if(type==0){ + uni.navigateTo({ + url: '/pages/users/order_confirm/index?preOrderNo=' + res.data.preOrderNo + }); + }else if(type==1){ + console.log('判断2'); + uni.navigateTo({ + url: '/pages/users/order_confirms/index?preOrderNo=' + res.data.preOrderNo + }); + } + }).catch(err => { return util.Tips({ title: err diff --git a/pages.json b/pages.json index 0d8f9ac..21cd345 100644 --- a/pages.json +++ b/pages.json @@ -541,6 +541,20 @@ } } }, + { + "path": "order_confirms/index", + "style": { + "navigationBarTitleText": "提交订单", + // "navigationStyle": "custom", + "app-plus": { + // #ifdef APP-PLUS + "titleNView": { + "type": "default" + } + // #endif + } + } + }, { "path": "order_improves/index", "style": { diff --git a/pages/goods_details/index.vue b/pages/goods_details/index.vue index c3e9b5d..36a7229 100644 --- a/pages/goods_details/index.vue +++ b/pages/goods_details/index.vue @@ -228,9 +228,12 @@
-
+
+
- - - + + + + + + {{payResult}} + + + 订单编号 + {{orderId}} + + + 下单时间 + {{order_pay_info.createTime?order_pay_info.createTime:'-'}} + + + 支付方式 + 支付宝支付 + + + 支付金额 + {{order_pay_info.payPrice}} + + + + 失败原因 + {{msg}} + + + + + + + - - - - - - - - - - - {{addressInfo.realName}} - {{addressInfo.phone}} - - - [默认] - {{addressInfo.province}}{{addressInfo.city}}{{addressInfo.district}}{{addressInfo.detail}} - - - - 设置收货地址 - - - - - - - - - {{system_store.name}} - {{system_store.phone}} - - {{system_store.address}}{{", " + system_store.detailedAddress}} - - - - - - 暂无门店信息 - - - - - - - - - - - - - - - - - - 完善身份信息   {{sfxx}} - 填写资料 加速审核 - - - - - - - - - - - - - 优惠券 - {{couponTitle}} - - - - - - 积分抵扣 - - {{useIntegral ? "剩余积分":"当前积分"}} - {{useIntegral ? orderInfoVo.surplusIntegral : orderInfoVo.userIntegral || 0}} - - - - - - - - - 快递费用 - - +¥{{orderInfoVo.freightFee}} - - 免运费 - - - - 联系人 - - - - - - 联系电话 - - - - - - - - 商品总价: - ¥{{orderInfoVo.proTotalFee || 0}} - - - - 备注信息 - - {{markNum ? markNum : 150}}/150 - - - - - - - -
- - 分期计划 - {{installmentobj.name}} - - - - 首付金额 - ¥{{downPaymentAmount}} - - - 还款周期(间隔) - {{fenqiobj.cycle}}天 - - - 还款期数 - {{fenqiobj.downPaymentNumber}} - - - 每期还款 - ¥{{fenqiobj.repaymentAmount}} - - - 合计付款 - ¥{{totalAmount}} - - - -
-
- - - - 增值服务: - ¥0.00 - - - 暂无: - ¥0.00 - - - - 优惠券抵扣: - -¥{{orderInfoVo.couponFee}} - - - 积分抵扣: - -¥{{orderInfoVo.deductionPrice}} - - - 运费: - +¥{{orderInfoVo.freightFee}} - - - -
- - - - - - 我已阅读并同意《隐私协议》《租赁服务协议》《用户协议》《意外保障协议》 - - - 合计: - ¥{{orderInfoVo.payFee || 0}} - - 立刻申请 - - - - - + - - \ No newline at end of file diff --git a/pages/users/alipay_returns/alipay_return.vue b/pages/users/alipay_returns/alipay_return.vue index 8616393..8bc2a2b 100644 --- a/pages/users/alipay_returns/alipay_return.vue +++ b/pages/users/alipay_returns/alipay_return.vue @@ -68,6 +68,7 @@ // this.orderId='installment236' this.order_pay_info.payPrice=e.total_amount this.time=e.timestamp + // this.orderId='order92934171248038859056274' this.alipayQueryPay(); // // #ifdef H5 // var url = window.location.search; diff --git a/pages/users/order_confirm/index.vue b/pages/users/order_confirm/index.vue index a103662..923751a 100644 --- a/pages/users/order_confirm/index.vue +++ b/pages/users/order_confirm/index.vue @@ -316,13 +316,13 @@ title: '微信快捷支付', payStatus: 1, }, - { - "name": "余额支付", - "icon": "icon-yuezhifu", - value: 'yue', - title: '可用余额:', - payStatus: 1, - }, + // { + // "name": "余额支付", + // "icon": "icon-yuezhifu", + // value: 'yue', + // title: '可用余额:', + // payStatus: 1, + // }, // #ifndef MP { "name": "支付宝支付", @@ -443,6 +443,7 @@ // }); this.preOrderNo = options.preOrderNo || 0; this.addressChangeId = options.addressId || 0; + this.addressId= options.addressId this.is_address = options.is_address ? true : false; if (this.isLogin) { this.getloadPreOrder(); @@ -697,6 +698,7 @@ * 获取默认收货地址或者获取某条地址信息 */ getaddressInfo: function() { + console.log(this.addressId,'this.addressIdthis.addressIdthis.addressId'); if (this.addressId) { getAddressDetail(this.addressId).then(res => { if (res.data) { @@ -746,7 +748,7 @@ onAddress: function() { uni.redirectTo({ - url: '/pages/users/user_address_list/index?preOrderNo=' + this.preOrderNo + url: '/pages/users/user_address_list/index?preOrderNo=' + this.preOrderNo+'&type='+0 }); }, realName: function(e) { diff --git a/pages/users/order_confirms/index.vue b/pages/users/order_confirms/index.vue new file mode 100644 index 0000000..f2c270d --- /dev/null +++ b/pages/users/order_confirms/index.vue @@ -0,0 +1,1456 @@ + + + + diff --git a/pages/users/order_list/index.vue b/pages/users/order_list/index.vue index 0691d4f..4aefed5 100644 --- a/pages/users/order_list/index.vue +++ b/pages/users/order_list/index.vue @@ -17,14 +17,19 @@ - + 全部 {{orderData.orderCount || 0}} + + 未支付 + {{orderData.unPaidCount || 0}} + 待审核 {{orderData.notAuditCount || 0}} + 待签约 {{orderData.unsignedCount || 0}} @@ -76,8 +81,8 @@ 驳回原因: {{item.auditRejectReason}} - - + 立即付款 + 取消订单 立即签约 @@ -151,7 +156,7 @@ loadTitle: '加载更多', //提示语 orderList: [], //订单数组 orderData: {}, //订单详细统计 - orderStatus: 0, //订单状态 + orderStatus: 10, //订单状态 page: 1, limit: 20, payMode: [{ diff --git a/pages/users/user_address/index.vue b/pages/users/user_address/index.vue index d8e721f..116dcc5 100644 --- a/pages/users/user_address/index.vue +++ b/pages/users/user_address/index.vue @@ -433,7 +433,8 @@ if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(value.phone)) return that.$util.Tips({ title: '请输入正确的手机号码' }); - if (that.region == '省-市-区') return that.$util.Tips({ + // console.log(that.region.toString(),'that.regionthat.region'); + if (that.region.toString() == '省,市,区') return that.$util.Tips({ title: '请选择所在地区' }); if (!value.detail) return that.$util.Tips({ diff --git a/pages/users/user_address_list/index.vue b/pages/users/user_address_list/index.vue index d65c290..7d99cf5 100644 --- a/pages/users/user_address_list/index.vue +++ b/pages/users/user_address_list/index.vue @@ -99,7 +99,8 @@ secKill: false, //是否是秒杀 theme: app.globalData.theme, locationContent: '授权位置信息,提供完整服务', - locationStatus: false + locationStatus: false, + type:0, }; }, computed: mapGetters(['isLogin']), @@ -114,6 +115,8 @@ } }, onLoad(options) { + console.log(options,'optionsoptions'); + this.type=options.type if (this.isLogin) { this.preOrderNo = options.preOrderNo || 0; this.getAddressList(true); @@ -378,10 +381,18 @@ }, goOrder: function(item) { if (this.preOrderNo) { - uni.redirectTo({ - url: '/pages/users/order_confirm/index?is_address=1&preOrderNo=' + this.preOrderNo + - '&addressId=' + item.id - }) + if(this.type==0){ + uni.redirectTo({ + url: '/pages/users/order_confirm/index?is_address=1&preOrderNo=' + this.preOrderNo + + '&addressId=' + item.id + }) + }else { + uni.redirectTo({ + url: '/pages/users/order_confirms/index?is_address=1&preOrderNo=' + this.preOrderNo + + '&addressId=' + item.id + }) + } + } }, },