var app = getApp(); var util = require('../../utils/util.js') var WXAPI = require('../../utils/server.js'); Page({ data: { ispayOrder: false, pays: [], itemData: {}, userId: 0, paytype: 'bank_pay', //支付方式 cartId: 0, addrId: 0, //收货地址//测试-- btnDisabled: false, productData: [], address: {}, total: 0, yuan: 0, //临时储存先前的总价格 d_yuan: 0, //抵扣余额显示 vprice: 0, vid: 0, paswnum: 0, reduce_money: 0, //优惠金额 addemt: 1, //加入次数 vou: [], checked: false, score: 0, //用户积分 allowscore: 0, //当前订单可用积分 checked01: false, allow: 0, pass_num: 4, remind: true, title: '请输入支付密码', xsmoney: true, //控制显示金额 money: false, pay_xs: true, pages_sx: true, dz_stu: false, productAry: '', remark: '', options: '', }, go: function (e) { console.log(e); this.setData({ dz_stu: true, }); var url = e.currentTarget.dataset.url wx.navigateTo({ url: url }) }, //下拉刷新 onPullDownRefresh: function () { wx.showNavigationBarLoading() //在标题栏中显示加载 this.Settlement(); wx.hideNavigationBarLoading() //完成停止加载 wx.stopPullDownRefresh() //停止下拉刷新 }, //调取分享 onShareAppMessage: function (res) { var that = this; var id = that.data.productId; var title = that.data.title; return { title: title, path: '/product/detail?productId=' + id, success: function (res) { console.log('转发成功') }, fail: function (res) { console.log('转发失败') } } }, onLoad: function (options) { // console.log(options) var that = this; // that.get_plug(); var uid = app.globalData.userInfo.openid; // 微信id var plug_ins = app.globalData.userInfo.plug_ins; // 插件 var coupon = app.globalData.userInfo.coupon; // 优惠券状态 var wallet = app.globalData.userInfo.wallet; // 钱包状态 this.setData({ cartId: options.cartId, // 购物车id num1: options.num, type: options.type ? options.type : 0, //(1.直接结算 0购物车结算) bgcolor: '#FA5151', // 背景颜色 userId: uid, // 微信id plug_ins: plug_ins, // 插件 coupon: coupon, // 优惠券状态 wallet: wallet, // 钱包状态 options: options, }); this.Settlement(options); this.getWXTemplate(); }, getWXTemplate() { WXAPI.getWXTemplate({ storeId: 239, storeType: 1, type: 2, }).then(res => { if (res.code == 200) { var data = res.data wx.setStorageSync('logmsgId', [data.template_id]) } }) }, //页面加载完成函数 onReady: function () { }, onUnload() { //onUnload监听页面卸载 var that = this; // util.getUesrBgplus(that, app, true) //刷新显示购物车数量 // util.getUesrBgplus(that, app, false) //刷新显示购物车数量 var cartid = that.data.cartId var type = that.data.type // if (type == 1) { //直接结算离开页面清除购物车数量 // wx.request({ // url: app.d.ceshiUrl + '&action=product&m=delcart', // method: 'post', // data: { // carts: that.data.cartId, // 购物车id // }, // header: { // 'Content-Type': 'application/x-www-form-urlencoded' // }, // success: function (res) { // var status = res.data.status; // if (status == 1) { // that.setData({ // remind: false // }); // } else { // that.setData({ // remind: true // }); // } // }, // error: function (e) { // wx.showToast({ // title: '网络异常!', // duration: 2000 // }); // } // }); // } }, onShow: function () { var that = this; // console.log(that.data.dz_stu) // if (that.data.dz_stu) { // that.setData({ // dz_stu: false, // }); // // util.getUesrBgplus(that, app, false) // wx.navigateTo({ // url: '../order/pay?cartId=' + that.data.cartId, // }) // } // if (that.data.pages_sx) { // setTimeout(function () { // that.Settlement(); // }, 500); // } this.Settlement(that.data.options); }, //单选支付方式 updataRadio:function(e){ this.setData({ paytype: e.detail.value }) }, // 进入结算页面 Settlement: function (options) { var that = this; //更新地址信息 var addressId = wx.getStorageSync('addressId') WXAPI.settlement({ accessId: app.globalData.accessId, storeId: 239, storeType: 1, cart_id: that.data.cartId, coupon_id: 0, vipSource: 0, canshu: true, address_id: addressId, product: options.product, }).then(res => { if (res.code == 200) { //设置购物车刷新 app.d.purchase = 1; var data = res.data; if (that.data.allow) { data.coupon_money = Number(data.coupon_money) - Number(that.data.allow); } if (that.data.d_yuan) { data.coupon_money = Number(data.coupon_money) - Number(that.data.user_money); } var pays = [] if (data.payment.bank_pay == 1) { pays.push({'name':'公对公支付','icon':'/images/公对公.png','type':'bank_pay','checked':true}) } // if (data.payment.wallet_pay == 1) { // pays.push({'name':'余额支付','icon':'/images/钱包支付.png','type':'wallet_pay','checked':false}) // } that.setData({ productAry: options.product, addemt: data.addemt, // 是否有收货地址 address: data.address, // 收货地址 addrId: data.address.id ? data.address.id : '', // 收货地址id productData: data.products, // 商品信息 total: data.total, // 总价 money: data.reduce_money, // 优惠券金额 coupon_money: Number(parseFloat(data.coupon_money).toFixed(3).slice(0, -1)), // 优惠后金额 user_money: data.user_money, // 用户余额 // user_score: data.user_score, // 用户积分 coupon_id: data.coupon_id, // 优惠券id discount: data.discount, //控制优惠方式 scorebuy: data.grade_rate_amount, //积分消费规则 zhekou: data.preferential_amount ? data.preferential_amount : '', //会员折扣 freight: data.freight ? data.freight : 0, //运费 remind: false, pays: pays, }); } else { wx.showToast({ title: res.message, icon: 'none', duration: 2000, }); setTimeout(function () { wx.navigateBack() }, 600) } }); }, remarkInput: function(e) { this.setData({ remark: e.detail.value }) }, // 点击优惠券 tapMainMenu: function (e) { // 获取当前显示的一级菜单标识 var coupon_id = e.target.id; var taht = this; var showModalStatus = taht.data.showModalStatus; taht.getvou(coupon_id); taht.setData({ showModalStatus: false }); }, // 我的优惠券(可以使用的优惠券) my_coupon: function () { var that = this; wx.request({ url: app.d.ceshiUrl + '&action=Coupon&m=my_coupon', method: 'post', data: { openid: app.globalData.userInfo.openid, cart_id: that.data.cartId, // 购物车id }, header: { 'Content-Type': 'application/x-www-form-urlencoded' }, success: function (res) { var list = res.data.list; that.setData({ list: list, }); }, error: function (e) { wx.showToast({ title: '网络异常!', duration: 2000 }); } }); }, // 得到优惠券 getvou: function (id) { var that = this; wx.request({ url: app.d.ceshiUrl + '&action=Coupon&m=getvou', method: 'post', data: { cart_id: that.data.cartId, // 购物车id coupon_money: that.data.coupon_money, // 付款金额 openid: app.globalData.userInfo.openid, // 微信id coupon_id: id, // 优惠券id }, header: { 'Content-Type': 'application/x-www-form-urlencoded' }, success: function (res) { if (res.data.status == 0) { wx.showToast({ title: res.data.err, icon: 'none', duration: 2000 }); } else { that.setData({ coupon_id: res.data.id, // 优惠券id money: res.data.money, // 优惠券金额 total: res.data.zong, // 总金额 coupon_money: res.data.coupon_money, // 优惠券后金额 }); } }, error: function (e) { wx.showToast({ title: '网络异常!', duration: 2000 }); } }); }, // 选择支付方式 switchChange: function (e) { console.log(e) var that = this; var check = e.currentTarget.dataset.check; var index = e.currentTarget.dataset.index; var value = e.detail.value; var pays = that.data.pays[index]; var coupon_money = that.data.coupon_money; var user_money = that.data.user_money; if (value) { pays.checked = true; } else { pays.checked = false; } var pay_type = that.data.pays; var i = 0; var one_pay = ''; console.log(pay_type) for (var j = 0; j < pay_type.length; j++) { if (pay_type[j].checked) { i += 1; one_pay = pay_type[j].value; } } if (i == 0) { that.setData({ paytype: false, }); } else if (i == 1) { //单选支付方式时 设置支付方式 //如果是之前点击了钱包支付 需要还原金额 var yuan = that.data.yuan; if (yuan) { that.setData({ paytype: one_pay, coupon_money: yuan, d_yuan: false, }); } else { that.setData({ paytype: one_pay, }); } if (one_pay == 'wallet_Pay') { if (user_money < coupon_money) { wx.showToast({ title: '余额不足,请更换支付方式或选择组合支付!', icon: 'none', duration: 2000, }); for (var j = 0; j < pay_type.length; j++) { if (pay_type[j].value == 'wxPay') { pay_type[j].checked = true; } else { pay_type[j].checked = false; } } that.setData({ paytype: false, pays: pay_type }); } } } else if (i == 2) { console.log('两种支付方式') //两种支付方式时当支付金额大于用户余额 则抵扣全部余额 并验证 //否则 直接选择默认钱包支付 if (Number(user_money) >= Number(coupon_money)) { for (var j = 0; j < pay_type.length; j++) { if (pay_type[j].value == check) { pay_type[j].checked = true; } else { pay_type[j].checked = false; } } //设置支付方式和点击默认 that.setData({ paytype: check, pays: pay_type }); } else { // 组合支付 wx.showModal({ title: '组合支付', content: '是否使用余额抵用?', success: function (res) { if (res.confirm) { //组合支付 替换数据 var price = Number(coupon_money) - Number(user_money); //防止出现小数点后多余2位以上 .toFixed(2) that.setData({ paytype: 'wxPay', yuan: coupon_money, coupon_money: price.toFixed(2), d_yuan: user_money, }); } else if (res.cancel) { //设置支付方式和点击默认 for (var j = 0; j < pay_type.length; j++) { if (pay_type[j].value == 'wxPay') { pay_type[j].checked = true; } else { pay_type[j].checked = false; } } that.setData({ paytype: false, pays: pay_type }); //安全提示 wx.showToast({ title: '已取消', icon: 'none', duration: 2000, }); } } }) } } }, // 订阅消息 subscribeMessage() { var logmsgId = wx.getStorageSync('logmsgId') wx.requestSubscribeMessage({ tmplIds: logmsgId, success (res) { console.log(res); } }) }, // 提交订单支付 createProductOrderByWX: function (e) { var that = this; that.subscribeMessage() // if (that.data.ispayOrder) { // return // } // that.setData({ // ispayOrder: true // }) // var paytype = that.data.paytype; // if (paytype) { // that.setData({ // paytype: paytype, // }); // } else { // wx.showToast({ // title: '已为您选择默认支付方式', // icon: 'none', // duration: 2000, // }); // //当都没有选中时 循环找到默认的支付方式 在设置支付方式数据 // var pays = that.data.pays, // j = 0; // for (j = 0; j < pays.length; j++) { // if (pays[j].value == 'wxPay') { // pays[j].checked = true; // } else { // pays[j].checked = false; // } // } // that.setData({ // pays: pays, // paytype: 'wxPay', // }); // paytype = 'wxPay'; // return; // } // that.setData({ // form_id: e.detail.formId, // }); var address = that.data.address; if (address) { // // 收货地址存在 // if (paytype == 'wallet_Pay') { // if (that.data.pay_xs) { // wx.showModal({ // title: '余额支付', // content: '是否使用余额支付?', // success: function (res) { // if (res.confirm) { // //组合支付 替换数据 // that.createProductOrder(); // console.log('用户点击确定'); // } else if (res.cancel) { // that.setData({ // ispayOrder: false // }) // wx.hideLoading() // console.log('用户点击取消') // } // } // }) // } else { // wx.showModal({ // title: '订单提交', // content: '是否使用消费金支付?', // success: function (res) { // if (res.confirm) { // //组合支付 替换数据 // that.createProductOrder(); // console.log('用户点击确定'); // } else if (res.cancel) { // this.setData({ // ispayOrder: false // }) // wx.hideLoading() // console.log('用户点击取消') // } // } // }) // } // } else { // that.createProductOrder(); // } that.createProductOrder(); } else { // 没有收货地址 wx.showToast({ title: "请添加收货地址!", icon: 'none', duration: 3000 }); } }, // 确认订单 createProductOrder: function () { var that = this; var remarkArr = [] remarkArr.push(that.data.remark) let remarkStr = JSON.stringify(remarkArr) WXAPI.orderPayment({ accessId: app.globalData.accessId, storeId: 239, storeType: 1, cart_id: that.data.cartId, address_id: that.data.addrId, coupon_id: 0, remarks: remarkStr, vipSource: 0, product: that.data.productAry, pay_type: that.data.paytype, }).then(res => { if (res.code == 200) { var data = res.data var jsonstr = JSON.stringify(data) var result = { orderStr: jsonstr, price: data.total } wx.navigateTo({ url: "/pages/order/payment?orderId="+data.sNo+"&price="+data.total, }) // that.leaveSettlement(result) } else { wx.showToast({ title: res.message, icon: 'none', duration: 2000 }); } }); // this.setData({ // btnDisabledbtnDisabled: false, // pages_sx: false // }) // var paytype = that.data.paytype; // var type1 = that.data.type1; // app.d.purchase = 1; //设置购物车刷新 // wx.request({ // url: app.d.ceshiUrl + '&action=product&m=payment', // method: 'post', // data: { // uid: that.data.userId, // 微信id // cart_id: that.data.cartId, // 购物车id // type: paytype, // 支付方式 // total: that.data.coupon_money, // 付款金额 // coupon_id: that.data.coupon_id, // 优惠券ID // allow: that.data.allow, // 用户使用消费金 // name: that.data.name, // 满减金额名称 // reduce_money: that.data.reduce_money, // 满减金额 // dkyuan: that.data.d_yuan, // freight: that.data.freight, // num: that.data.num1 ? that.data.num1 : 0, //直接购买数量 // typee: that.data.type ? that.data.type : 0, //购买类型1直接购买,0从购物车买 // }, // header: { // 'Content-Type': 'application/x-www-form-urlencoded' // }, // success: function (res) { // var data = res.data; // console.log(res) // if (data.status == 1) { // // 余额支付 // if (data.arr.pay_type == 'wallet_Pay') { // that.wallet_pay(data.arr); // } // if (data.arr.pay_type == 'wxPay') { // // 微信支付 // wx.showLoading({ // title: '加载中', // }) // that.wxpay(data.arr); // } // } else { // wx.showToast({ // title: res.data.err, // icon: 'none', // duration: 2500 // }); // } // }, // fail: function (e) { // wx.showToast({ // title: '网络异常!err:createProductOrder', // duration: 2000 // }); // } // }); // } }, //结算支付 leaveSettlement(result) { var that = this; WXAPI.leaveSettlement({ accessId: app.globalData.accessId, storeId: 239, storeType: 1, order_list: result.orderStr, price: result.price }).then(res => { if (res.code == 200) { var data = res.data console.log(data) } else { wx.showToast({ title: res.message, icon: 'none', duration: 2000 }); } }); }, // 发起钱包支付 wallet_pay: function (order) { wx.hideLoading() var that = this; var type1 = that.data.type1; // 决定是抽奖还是普通支付 if (type1 == 11) { var total = that.data.total; // 付款金额 } else { var total = that.data.coupon_money; // 付款金额 } if (that.data.coupon_id) { var coupon_id = that.data.coupon_id; } else { var coupon_id = ''; } /* 1.支付成功 2.支付失败:提示;清空密码;自动聚焦isFocus:true,拉起键盘再次输入 */ var coupon_money = that.data.coupon_money; var user_money = that.data.user_money; if (Number(user_money) >= Number(coupon_money)) { wx.request({ url: app.d.ceshiUrl + '&action=product&m=wallet_pay', method: 'post', data: { uid: app.globalData.userInfo.openid, // 微信支付 total: total, // 付款金额 }, header: { 'Content-Type': 'application/x-www-form-urlencoded' }, success: function (res) { var status = res.data.status; if (status) { if (app.globalData.userInfo.referee_openid && app.globalData.userInfo.openid && app.globalData.userInfo.referee_openid != 'undefined') { var referee_openid = app.globalData.userInfo.referee_openid; var openid = app.globalData.userInfo.openid that.promiss(that.refereeopenid, referee_openid, openid).then(res => { that.up_order(order); }) } else { //支付成功 修改订单 that.up_order(order); } } else { that.setData({ ispayOrder: false }) //支付失败:提示 wx.showToast({ title: '支付失败请重新下单!', icon: 'none', duration: 2000, }); } }, fail: function () { that.setData({ ispayOrder: false }) wx.showToast({ title: '网络异常!', duration: 2000 }); } }); } else { that.setData({ ispayOrder: false }) wx.showToast({ title: '余额不足,请更换支付方式!', icon: 'none', duration: 2000, }); } }, promiss: function (callback, referee_openid, openid) { return new Promise((s, l) => { callback(referee_openid, openid) s() }) }, // 调起微信支付 wxpay: function (order) { console.log(order) var that = this; app.d.order = order; this.setData({ order: order }) var d_yuan = Number(that.data.d_yuan), cmoney = Number(order.coupon_money), oid = order.order_id if (d_yuan) { cmoney = Number(cmoney) - Number(d_yuan); //防止出现小数点后多余2位以上 .toFixed(2) } cmoney = cmoney.toFixed(2); wx.request({ url: app.d.ceshiUrl + '&action=pay&m=pay', data: { cmoney: cmoney, // 付款金额 openid: app.globalData.userInfo.openid, // 微信id type: 1, }, method: 'POST', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT header: { 'Content-Type': 'application/x-www-form-urlencoded' }, // 设置请求的 header success: function (res) { if (res.data) { var dingdanhao = res.data.out_trade_no; console.log(order.sNo) that.up_out_trade_no(order, dingdanhao); that.setData({ trade_no: dingdanhao }) console.log(res) if (res.data.RETURN_MSG === "mch_id参数格式错误") { wx.showModal({ content: "请设置商户号!", showCancel: false, confirmText: "确定", success: function () { } }) wx.hideLoading() that.setData({ ispayOrder: false }) return } else if (res.data.RETURN_MSG === "签名错误") { wx.showModal({ content: "商户key异常!", showCancel: false, confirmText: "确定", success: function () { } }) wx.hideLoading() that.setData({ ispayOrder: false }) return } wx.requestPayment({ timeStamp: res.data.timeStamp, nonceStr: res.data.nonceStr, package: res.data.package, signType: 'MD5', paySign: res.data.paySign, success: function (res) { wx.hideLoading() //支付成功 修改订单 if (app.globalData.userInfo.referee_openid && app.globalData.userInfo.openid && app.globalData.userInfo.referee_openid != 'undefined') { var referee_openid = app.globalData.userInfo.referee_openid; var openid = app.globalData.userInfo.openid that.promiss(that.refereeopenid, referee_openid, openid).then(res => { that.up_order(order); }) } else { that.up_order(order); } }, fail: function (res) { wx.hideLoading() wx.showModal({ content: "取消支付!", showCancel: false, confirmText: "确定", success: function (res) { wx.redirectTo({ url: '../order/detail?orderId=' + oid + '&&type1=22', success: function () { that.setData({ ispayOrder: false }) } }) } }) } }) } }, fail: function () { wx.hideLoading() that.setData({ ispayOrder: false }) // 失败后 wx.showToast({ title: '网络异常!err:wxpay', duration: 2000 }); } }) }, //修改订单 up_order: function (order) { var that = this; var type1 = that.data.type1; var d_yuan = that.data.d_yuan; var cmoney = order.coupon_money; if (that.data.trade_no) { var trade_no = that.data.trade_no } else { var trade_no = '' } if (d_yuan) { cmoney = cmoney - d_yuan; } wx.request({ url: app.d.ceshiUrl + '&action=product&m=up_order', method: 'post', data: { coupon_id: order.coupon_id, // 优惠券id allow: that.data.allow, // 使用积分 coupon_money: order.coupon_money, // 付款金额 order_id: order.sNo, // 订单号 user_id: app.globalData.userInfo.openid, // 微信id d_yuan: d_yuan, trade_no: trade_no, pay: that.data.paytype, }, header: { 'Content-Type': 'application/x-www-form-urlencoded' }, success: function (res) { if (!res.data.status) { wx.showToast({ title: res.data.err, icon: 'none', duration: 2000 }); } var orderId = res.data.sNo; // 订单号 var oid = res.data.id; // 订单id var f_pname = res.data.pname; // 拼接的商品名称 var f_coupon_money = res.data.coupon_money; // 订单价格 var time = res.data.time; // 当前时间 var form_id = that.data.form_id; var user_id = app.globalData.userInfo.openid; // 微信id //控制首页刷新 app.d.indexchase = true; // 调用信息发送 console.log('信息发送', order.order_id) that.notice(orderId, order.order_id, f_coupon_money, user_id, form_id, f_pname); wx.showModal({ content: "支付成功!", showCancel: false, confirmText: "确定", success: function (res) { console.log('支付成功', order.order_id) wx.redirectTo({ url: '../order/detail?orderId=' + order.order_id + '&&type1=22', success: function () { that.setData({ ispayOrder: false }) } }) } }); } }) }, //储存推荐人 refereeopenid: function (referee_openid, openid) { wx.request({ url: app.d.ceshiUrl + '&action=app&m=referee_openid', method: 'post', data: { openid: openid, referee_openid: referee_openid, }, header: { 'Content-Type': 'application/x-www-form-urlencoded' }, success: function (res) { }, error: function (e) { wx.showToast({ title: '网络异常!', duration: 2000, }); }, }); }, //获取插件 get_plug: function (e) { var that = this; wx.request({ url: app.d.ceshiUrl + '&action=app&m=get_plug', method: 'post', data: { userid: app.globalData.userInfo.openid, }, header: { 'Content-Type': 'application/x-www-form-urlencoded' }, success: function (res) { var plug_ins = res.data; that.setData({ plug_coupon: plug_ins.coupon, plug_wallet: plug_ins.wallet, plug_integral: plug_ins.integral, pays: plug_ins.pays, red_packet: plug_ins.red_packet }); } }) }, //发送数据到客户微信上 notice: function (order_id, order_sn, price, user_id, form_id, f_pname) { wx.request({ url: app.d.ceshiUrl + '&action=getcode&m=Send_Prompt', method: 'post', data: { page: 'pages/order/detail?orderId=' + order_sn, order_sn: order_id, price: price + '元', user_id: user_id, form_id: form_id, f_pname: f_pname }, header: { 'Content-Type': 'application/x-www-form-urlencoded' }, success: function (res) { console.log(form_id) } }) }, // 弹窗 setModalStatus: function (e) { var taht = this; var showModalStatus = taht.data.showModalStatus; if (showModalStatus) { // 点击旁白 无需响应 } else { taht.my_coupon(); } var animation = wx.createAnimation({ duration: 200, timingFunction: "linear", delay: 0 }); //定义点击的类型 taht.animation = animation animation.translateY(300).step(); taht.setData({ animationData: animation.export() }) if (e.currentTarget.dataset.status == 1) { taht.setData({ showModalStatus: true }); } setTimeout(function () { animation.translateY(0).step() taht.setData({ animationData: animation }) if (e.currentTarget.dataset.status == 0) { taht.setData({ showModalStatus: false }); } }.bind(this), 200); }, up_out_trade_no: function (order, out_trade_no) { var that = this; var sNo = order.sNo; var d_yuan = that.data.d_yuan; var cmoney = order.coupon_money; if (d_yuan) { cmoney = cmoney - d_yuan; } wx.request({ url: app.d.ceshiUrl + '&action=order&m=up_out_trade_no', method: 'post', data: { coupon_id: order.coupon_id, // 优惠券id allow: that.data.allow, // 使用积分 coupon_money: order.coupon_money, // 付款金额 order_id: order.sNo, // 订单号 user_id: app.globalData.userInfo.openid, // 微信id d_yuan: d_yuan, trade_no: out_trade_no, pay: that.data.paytype, }, header: { 'Content-Type': 'application/x-www-form-urlencoded' }, success: function (res) { console.log(res) } }) }, });