sureorder.js 8.8 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 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
// pages/partneritem/sureorder/sureorder.js
const app = getApp();

Page({

  /**
   * 页面的初始数据
   */
  data: {
    compareid: '',
    orderInfo: '',
    orderPrice: '',
    ordername: '',
    orderphone: '',
    orderaddres: '',
    orderleave: '',
    storeId:'',
    payment: '',
    ressIndex: 0,
    addressCon: [],
    secretary: false,
    wxtary: '',
    coupon:true,
    checked:false,
    couponlist:false,
    couponcontent:'',
    couponmoney:'请选择',
    orderId:'',
    selectid:'',
    couponId:0,
    isService:2,
    nocouponid:0,
    total:'',
    shopname:'请选择'
    
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    let compareId = options.compareId;
    this.setData({
      compareid: compareId
    })

    this.getOrder()
  },
  // 获取订单确认
  getOrder:function(e){
    var that = this;
    var url = "/api/portal/Compare/sure";
    var params = {
      compareId: that.data.compareid,
      token:wx.getStorageSync('token'),
    }
    app.post(url, params).then((res) => {
      console.log(res)
      that.setData({
        orderInfo: res.compare,
        orderPrice: res,
        addressCon: res.compare.address,
        wxtary: res.secretary,
        // couponId:res.coupon.id,
        // nocouponid: res.coupon.id,
        //couponmoney:res.free,
        storeId: res.compare.address[0].id,
        total: res.all_price

        // couponcontent: res.coupon
      })





    }).catch((essMsg) => {})
  },


  // 获取姓名
  orderName: function (e) {
    this.setData({
      ordername: e.detail.value
    })
  },
  // 获取手机号
  orderPhone: function (e) {
    this.setData({
      orderphone: e.detail.value
    })
  },
  // 获取服务地址
  orderAddress: function (e) {
    this.setData({
      orderaddres: e.detail.value
    })
  },
  // 获取留言
  orderLeave: function (e) {
    this.setData({
      orderleave: e.detail.value
    })
  },
  // 获取门店
  bindAddres: function (e) {
    this.setData({
      ressIndex: e.detail.value,
      storeId: this.data.addressCon[e.detail.value].id,
      shopname: this.data.addressCon[e.detail.value].name

    })

    console.log(this.data.shopname)
  },
  // 咨询客服
  secreTap: function () {
    let that = this;
    that.setData({
      secretary: true
    })
  },


  checkboxChange(e){
      let newchecked=this.data.checked;
    if (newchecked==false){
        this.setData({
          checked:true,
          isService:1
        })
    } else if (newchecked == true){
      this.setData({
        checked: false,
        isService: 2
      })
      }

    console.log(this.data.isService)
  },
  //获取优惠券
  chosecoupon(){
    let that=this;
    that.setData({
      couponlist:true
    })


    var url = '/api/portal/Compare/couponListShow';
    var params = {
      token: wx.getStorageSync('token'),
      compareId: that.data.compareid

    }
    app.post(url, params).then((res) => {


      let newcoupon = res;

      for (var obj of newcoupon){
        console.log()
          obj.selectcoupon=false;
      }

      that.setData({
        couponcontent: newcoupon
      })

      console.log(that.data.couponcontent)

      let newtwocouponcontent = that.data.couponcontent

      for (var obj of newtwocouponcontent){
        console.log(that.data.selectid)

        if (that.data.selectid == obj.couponLogId){
          obj.selectcoupon=true
        }
          
      }

      that.setData({
        couponcontent: newtwocouponcontent
      })
      console.log(that.data.couponcontent)

    }).catch((err) => {

    })

  },
//选择优惠券
  selectcouponitem(e) {
      let that = this;

    let selectcouponid = e.currentTarget.dataset.couponid;
      let newcouponcontent = that.data.couponcontent;
     

      for (var obj of newcouponcontent) {
        if (selectcouponid == obj.couponLogId) {
          console.log(obj.selectcoupon)
              if (obj.selectcoupon==false) {
                obj.selectcoupon = true;
                let money = Number(obj.ticket_money)
                let newtotal=that.data.total-money;
                newtotal = newtotal.toFixed("2")
                console.log(newtotal)

                that.setData({
                  couponId: e.currentTarget.dataset.couponid,
                  couponmoney: obj.ticket_money,
                  selectid: obj.couponLogId,
                  couponlist:false,
                  total: newtotal

                })
              } else if (obj.selectcoupon == true) {

                console.log(999)
                obj.selectcoupon = false;
                let money = Number(obj.ticket_money)
                let newtotal = that.data.total + money;

                  that.setData({
                    couponId: that.data.nocouponid,
                    couponmoney: '请选择',
                    selectid:'',
                    total:newtotal

                  })
               
              }


          } else {
              obj.selectcoupon = false
          }

          that.setData({
              couponcontent: newcouponcontent,
          })


      }

  
  },

  // 确认支付
  paymentTap: function(){
    let that = this;

    console.log(that.data.shopname)

    if (that.data.ordername==''){
      wx.showToast({
        title: '姓名不能为空',
        icon: 'none'
      })

      return false;
    }

    if (that.data.orderphone == '') {
      wx.showToast({
        title: '手机号不能为空',
        icon: 'none'
      })

      return false;
    }

    let reg = /^[1][3,4,5,6,7,8][0-9]{9}$/;
    let phone = that.data.orderphone;
    if (!reg.test(phone)) {
      wx.showToast({
        title: '请填写正确的手机号',
        icon: 'none'
      })

      return false;
    }

    if(that.data.isService==1){

      if (that.data.orderaddres == '') {
        wx.showToast({
          title: '服务地址不能为空',
          icon: 'none'
        })

        return false;
      }
    }

    if (that.data.shopname=='请选择'){
        wx.showToast({
          title: '请选择门店',
          icon:'none'
        })

        return false
    }

    // if (that.data.orderleave == '') {
    //   wx.showToast({
    //     title: '留言不能为空',
    //     icon: 'none'
    //   })

    //   return false;
    // }


    let url = "/api/portal/Compare/toPay";
    let params = {
      compareId: that.data.compareid,
      token:wx.getStorageSync("token"),
      name: that.data.ordername,
      tel: that.data.orderphone,
      address: that.data.orderaddres,
      storeId:that.data.storeId,
      isService: that.data.isService,
      else: that.data.orderleave,
      couponId: that.data.couponId,



    }
    app.post(url, params).then((res) => {
      console.log(res);
      that.setData({
        payment: res,
        orderId:res,
      })

      that.weixinpay()
    }).catch((errMsg) => {})
  },


weixinpay(){
  let that=this;
  var url = '/api/portal/Compare/pay';
  var params = {
    token: wx.getStorageSync('token'),
    orderId: that.data.orderId

  }
  app.post(url, params).then((res) => {
    console.log(res);
    that.payment(res)




  }).catch((err) => {

  })
},

  payment(res) {
    wx.requestPayment({
      timeStamp: res.timeStamp,
      nonceStr: res.nonceStr,
      package: res.package,
      signType: res.signType,
      paySign: res.paySign,
      success(res) {
        console.log(res)
        wx.navigateBack({
          checked:true
        })

        // if (res.errMsg == 'requestPayment:ok') {
        //   wx.switchTab({
        //     url: '../../order/order',
        //   })
        // }
      },
      fail(res) { }
    })
  },


  // 关闭小秘书弹层
  hideTap: function () {
    let that = this;
    that.setData({
      secretary: false,
      couponlist:false
    })
  },
  // 一键复制
  bindCopy: function () {
    let that = this;
    wx.setClipboardData({
      data: that.data.wxtary,
      success: function (res) {
        wx.getClipboardData({
          success: function (res) {
            if (res.confirm) {
              console.log('确定')
            } else if (res.cancel) {
              console.log('取消')
            }
          }
        })
      }
    })
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {

  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {

  }
})