4SConfirmAnOrder.js 9.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
import {
  request
} from "../../request/index.js"
const a = getApp()
Page({
  data: {
    imagesUrl: a.globalData.baseUrl,
    img: false,
    img1: false,
    address_id: '', //地址ID;不传则找默认地址
    gou_arr: '', //购物车的ID数组[从购物车过来,传这个]
    id: '', //普通商品的ID[从商品详情过来,传id和gui_arr和num,单规格则传id和num]
    gui_arr: '', // 规格ID数组[从商品详情过来]
    num: '', //购买数量[从商品详情过来]
    ConfirmAnOrder: [],
    orderContent: '',
    address: {},
    order_no: '', // 订单号
    type: 3, //1=平台积分抵扣;2=4s店积分抵扣;3=不抵扣.
    bei: '选填,给商家留言', // 备注,
    service: '快递配送',
    shifu: {
      red_name: ''
    },
    all_pay: ' ', // 实付金额
    timeStamp: '',
    nonceStr: '',
    package: '',
    signType: 'MD5',
    paySign: '',
    pathed: 2,
    msg: '',
    list_id: '', // 优惠券id
    use_fen_id: '',
    no: '',
     // 配送改
     pei:[
      {
        name:'快递配送',
        id:1
      },
      // {
      //   name:'自提',
      //   id:2
      // },
    ],
    pei_type:1
  },

  onLoad: function (options) {
    let that = this
    //  console.log(options);
    if (options.gui_arr) {
      that.setData({
        id: options.id,
        num: options.num,
        gui_arr: options.gui_arr,
        no: options.no || '',
        s4_qiang_id: options.s4_qiang_id || ''
      })
    } else {
      that.setData({
        id: options.id,
        num: options.num,
        no: options.no || '',
        s4_qiang_id: options.s4_qiang_id || ''
      })
    }

    //  console.log(that.data.no, "no");
    that.getConfirmAnOrder()
  },
  onShow: function () {},
  // 配送改
  choosePeiType(e){
    this.setData({
      pei_type:e.currentTarget.dataset.type
    })
    console.log(this.data.pei_type)
  },
  goRedPacketd(e) {
    let order_no = e.currentTarget.dataset.order_no
    wx.navigateTo({
      url: '/pages/usePacket/usePacket?order_no=' + order_no
    })
  },
  getConfirmAnOrder() { // 确认订单
    let that = this
    request({
      url: 'api/gou/order',
      data: {
        id: that.data.id,
        num: that.data.num,
        gui_arr: that.data.gui_arr,
        address_id: that.data.address_id,
        s4_qiang_id: that.data.s4_qiang_id
      }
    }).then(res => {
      //  console.log(res.data.data);
      that.setData({
        ConfirmAnOrder: res.data.data.order_good,
        address: res.data.data.address ? res.data.data.address : {},
        address_id: res.data.data.address ? res.data.data.address.id : '',
        orderContent: res.data.data,
        all_pay: res.data.data.all_pay,
        order_no: res.data.data.order_no,
        use_fen_id: res.data.data.use_fen_id
      })
    }).catch(err => {
      //  console.log(err);
      if (err.code == 0) {
        that.setData({
          msg: err.msg
        })
        that.popTest()
        setTimeout(() => {
          wx.navigateBack({
            delta: 2, // 返回上一级页面。
          })
        }, 1300);
      }


    })
  },
  changeReceiverAddress() {
    wx.navigateTo({
      url: '/pages/receiverAddress/receiverAddress'
    })
  },
  goTOpay() { // 订单支付
    let that = this
    let obj = {
      order_no: that.data.order_no,
      type: that.data.type,
      bei: that.data.bei,
      address_id: that.data.address.id,
      list_id: that.data.list_id,
      pei_type:that.data.pei_type
    }
    if (obj.pei_type == 2 || obj.address_id) { //自提或已选择收货地址
      if (that.data.all_pay != 0) {
        request({
          url: 'api/gou/buy2',
          data: obj
        }).then(res => {
          if (res.data.data.type == 0) {
            wx.requestPayment({
              timeStamp: res.data.data.timeStamp,
              nonceStr: res.data.data.nonceStr,
              package: res.data.data.package,
              signType: 'MD5',
              paySign: res.data.data.paySign,
              success(res) {
                //  console.log(res);
                wx.redirectTo({
                  url: '/pages/MyOrder/MyOrder',
                })
              },
              fail(res) {
                wx.redirectTo({
                  url: '/pages/MyOrder/MyOrder',
                })
                //  console.log(res)
              }
            })
          } else {
            that.setData({
              msg: '支付成功'
            })
            that.popSuccessTest()
            setTimeout(() => {
              wx.redirectTo({
                url: '/pages/MyOrder/MyOrder',
              })
            }, 1300);
          }
        }).catch(err => {
          that.setData({
            msg: err.msg
          })
          this.popTest()
          //  console.log(err);
        })
      } else {
        wx.showModal({
          title: '提示',
          content: '您的积分可以完全抵扣! 纯积分支付商品不支持退款',
          success: function (res) {
            if (res.confirm) {
              request({
                url: 'api/gou/buy2',
                data: obj
              }).then(res => {
                that.setData({
                  msg: '支付成功'
                })
                that.popSuccessTest()
                setTimeout(() => {
                  wx.redirectTo({
                    url: '/pages/MyOrder/MyOrder',
                  })
                }, 1300);
              }).catch(err => {
                //  console.log(err);
                that.setData({
                  msg: err.msg
                })
                that.popTest()

              })

            } else {
              //  console.log('点击取消回调')
              that.setData({
                msg: '请重新选择付款方式'
              })
              that.popTest()
            }
          }
        })
      }
    } else {
      that.setData({
        msg: '请先选择收货地址'
      })
      that.popTest()
    }
  },
  async goxianTime() {
    let that = this
    let obj = {
      order_no: that.data.order_no,
      type: that.data.type,
      bei: that.data.bei,
      address_id: that.data.address.id,
      list_id: that.data.list_id
    }
    if (obj.address_id) {
      try {
        const {
          data
        } = await request({
          url: 'api/gou/buy2',
          data: obj
        })
        //  console.log(data);
        if (data.code == 1) {
          wx.requestPayment({
            timeStamp: data.data.timeStamp,
            nonceStr: data.data.nonceStr,
            package: data.data.package,
            signType: 'MD5',
            paySign: data.data.paySign,
            success(res) {
              //  console.log(res);
              wx.redirectTo({
                url: '/pages/MyOrder/MyOrder',
              })
            },
            fail(res) {
              wx.redirectTo({
                url: '/pages/MyOrder/MyOrder',
              })
              //  console.log(res)
            }
          })
        }

      } catch (err) {
        //  console.log(err);
        that.setData({
          msg: err.msg
        })
      }
    } else {
      that.setData({
        msg: '请先选择收货地址'
      })
      that.popTest()
    }
  },
  changeChe() { //同放积分
    if (this.data.img1) {
      this.setData({
        img1: false,
        img: true,
        type: 1
      })
      this.actualPacket()
    } else {
      if (this.data.img) {
        this.setData({
          img: false,
          type: 3
        })
        this.actualPacket()
      } else {
        this.setData({
          img: true,
          type: 1
        })
        this.actualPacket()

      }
    }


  },
  change4S() { //4S店积分
    if (this.data.img) {
      this.setData({
        img1: true,
        img: false,
        type: 2
      })
      this.actualPacket()
    } else {
      if (this.data.img1) {
        this.setData({
          img1: false,
          type: 3
        })

      } else {
        this.setData({
          img1: true,
          type: 2
        })
        this.actualPacket()

      }
    }


  },
  clickme() { //备注
    this.showModal();
  },
  formSubmit(e) { //备注提交信息
    this.setData({
      bei: e.detail.value.value
    })
    this.hideModal()
  },
  async actualPacket() {
    let that = this
    let obj = {}
    obj.list_id = that.data.list_id
    obj.order_no = that.data.order_no
    obj.type = that.data.type
    const {
      data
    } = await request({
      url: 'api/red/shiPay',
      data: obj
    })
    that.setData({
      shifu: data.data,
      all_pay: data.data.shi
    })

  },
  //显示对话框
  showModal() {
    // 显示遮罩层
    var animation = wx.createAnimation({
      duration: 200,
      timingFunction: "linear",
      delay: 0
    })
    this.animation = animation
    animation.translateY(300).step()
    this.setData({
      animationData: animation.export(),
      showModalStatus: true
    })
    setTimeout(function () {
      animation.translateY(0).step()
      this.setData({
        animationData: animation.export()
      })
    }.bind(this), 100)
  },
  //隐藏对话框
  hideModal() {
    // 隐藏遮罩层
    var animation = wx.createAnimation({
      duration: 200,
      timingFunction: "linear",
      delay: 0
    })
    this.animation = animation
    animation.translateY(300).step()
    this.setData({
      animationData: animation.export(),
    })
    setTimeout(function () {
      animation.translateY(0).step()
      this.setData({
        animationData: animation.export(),
        showModalStatus: false
      })
    }.bind(this), 100)
  },
  popTest() {
    wx.showToast({ //纯文字弹窗
      title: this.data.msg,
      icon: 'none', //如果要纯文本,不要icon,将值设为'none'
      duration: 1300
    })
  },
  popSuccessTest() { // 消息提示
    wx.showToast({
      title: this.data.msg,
      icon: '', //默认值是success,就算没有icon这个值,就算有其他值最终也显示success
      duration: 1300, //停留时间
    })
  },

})