123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- // pages/welfareMall/order/orderCompletion.js
- import WelfareMall from '../../../api/welfareMall'
- import { parseTime } from '../../../utils/util'
- import {getMobileCache, getPhoneNumber as getPhoneNumberSync} from '../../../utils/user'
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- page: 1,
- pageSize: 10,
- lock: false,
- noResult: false,
- noMore: false,
- isLogin: false,
- orderDetail: null,
- orderSn: '',
- hidden: true,
- reason: '',
- inputValue: null,
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- var that = this;
- that.orderSn = options.ordersn
- this.setData({
- isLogin: getMobileCache() != '',
- orderSn: options.ordersn,
- })
- if(this.data.isLogin){
- this.getOrder(that.orderSn);
- this.data.orderSn = options.ordersn;
- }
- },
-
- /**
- *
- * 订单数据
- */
- getOrder: function(data) {
- WelfareMall.getOrder({
- mobile: getMobileCache(),
- orderSn: data,
- }).then(res => {
- if (res.code == 200) {
- this.userOrderistView(res.data)
- }
- this.data.lock = false
- }).catch(_ => {
- console.log(_)
- this.data.lock = false
- })
- },
- userOrderistView: function(data) {
- if (!data) {
- console.log("订单详情数据为空");
- return
- }
- //对象转换
- this.data.orderDetail = data
- this.setData({
- mobileTop:getMobileCache(),
- orderDetail: this.data.orderDetail
- })
- },
- /**
- *
- * 取消订单
- */
- toCancelOrder(e) {
- wx.showModal({
- title: '取消订单',
- content: '',
- showCancel: true,//是否显示取消按钮
- cancelText:"取消",//默认是“取消”
- cancelColor:'black',//取消文字的颜色
- confirmText:"确定",//默认是“确定”
- confirmColor: 'black',//确定文字的颜色
- success: res => {if (res.cancel) {
- //点击取消,默认隐藏弹框
- } else {
- //点击确定
- WelfareMall.cancelOrder({
- mobile: getMobileCache(),
- orderSn: this.data.orderSn,
- }).then(res => {
- if (res.code == 200) {
- wx.showToast({
- title: '取消订单成功',
- icon: 'none',
- duration: 1500
- });
- this.onLoad(this.options);
- }
- this.data.lock = false
- }).catch(_ => {
- console.log(_)
- this.data.lock = false
- })
- }
- },
- fail: function (res) {
- console.log(res)
- },//接口调用失败的回调函数
- })
-
- },
- /**
- * 获取订单参数
- */
- async goPay() {
- let res = await WelfareMall.getPayParams({
- mobile: getMobileCache(),
- orderSn: this.data.orderSn,
- openId: wx.getStorageSync('loginInfo').openId,
- thirdPartyName: 'coupon-activity',
- payCode: "HSAY-COUPON",
- });
- console.log(res);
- // res = res.wxPrePayVo
- wx.requestPayment({
- timeStamp: res.wxPrePayVo.timeStamp,
- package: res.wxPrePayVo.pack,
- nonceStr: res.wxPrePayVo.nonceStr,
- signType: res.wxPrePayVo.signType,
- paySign: res.wxPrePayVo.paySign,
- success: function (res) {
- //支付成功,跳转领取成功页面
- wx.reLaunch({
- url: '/pages/couponSuccess/couponSuccess'
- })
- },
- fail: function (res) {
- console.log('payerror')
- console.log(res);
- }
- })
- },
- /**
- * 取消
- */
- getMode: function(){
- this.setData({
- hidden: false,
- inputValue: '',
- });
- },
- /**
- * 取消
- */
- cancel: function(){
- this.setData({
- hidden: true,
- });
- },
- /**
- * 提交
- */
- confirm: function(){
- this.setData({
- hidden: false
- });
- var res = this.data.reason;
- console.log(res);
- if(res == null || res =='' || res == undefined){
- wx.showToast({
- title: '退款原因必填',
- icon: 'none',
- duration: 1500
- })
- } else {
- this.goRefund(res);
- }
- },
- /**
- * 退款原因
- */
- getReason: function(e){
- this.setData({
- reason: e.detail.value
- })
- },
- /**
- *
- * 申请退款
- */
- goRefund: function(reason) {
- WelfareMall.orderRefund({
- mobile: getMobileCache(),
- orderSn: this.data.orderSn,
- reason: reason,
- }).then(res => {
- if (res.code == 200) {
- this.cancel();
- this.onLoad(this.options);
- const url = "../refund/refund?orderSn=" + this.data.orderSn
- wx.navigateTo({
- url
- })
- }
- this.data.lock = false
- }).catch(_ => {
- console.log(_)
- this.cancel();
- this.data.lock = false
- })
-
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|