distributionChanged.js 11.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 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
import {
  request
} from "../../request/index.js"

const a = getApp()
Page({
  data: {
    imagesUrl: a.globalData.baseUrl,
    inviter_id: '',
    id: '',
    names: '',
    phone: '',
    msg: '',
    imgtap: false,
    type: 0,
    detaillist: {},
    shifu: {},
    shi: '',
    fen_di: '',
    itemid: '',
    wait: 0,
    showModalStatus: false,
    jump_img: '',
    jump_url: '',
    jump_id: '',
    obj: '',
    // 展示弹出
    bind4sClerk: '',
    showClerk: false,
    // 从4s选择页拿回的数据
    s4_id: '',
    s4_name: '',
    // 测试
    code: 0,
    // 店员列表
    ClerkList: '',
    // 选中的店员
    ClerkName: '',
    // 选中的店员ID
    ClerkId: '',
    // 步骤条
    steps: [{
        text: '选择店员',
      },
      {
        text: '确认信息',
      },
      {
        text: '成功支付',
      },
    ],
    activeSteps: 0
  },

  onLoad: function (options) {
    let that = this
     console.log(options);
    that.setData({
      id: options.id,
      s4_id: wx.getStorageSync('s4_id'),
      s4_name: wx.getStorageSync('s4_name'),
      inviter_id: options.inviter_id
    })
    that.getdetails()

  },
  onShow: function () {
    this.setData({
      s4_id: wx.getStorageSync('s4_id'),
      s4_name: wx.getStorageSync('s4_name')
    })
    console.log(this.data.s4_id, this.data.s4_name)
    // 测试
    // this.showModal()

  },
  // //唤起弹窗
  chooseClerk() {
    let that = this
    let s4id = that.data.s4id
    // 测试
    that.setData({
      bind4sClerk: true
    })
  },
  // 点击选选择经销商
  show4s() {
    wx.navigateTo({
      url: '/pages/Vmore4SList/Vmore4SList',
    })
  },
  // 点击选择店员
  async showClerk() {
    let that = this
    let s4_name = that.data.s4_name
    if (s4_name) {
      that.setData({
        showClerk: true
      })
      try {
        const {
          data
        } = await request({
          url: '/api/shop4s/clerkList',
          data: {
            s4_id: that.data.s4_id
          }
        })
      } catch (err) {
        that.setData({
          ClerkList: err.data
        })
      }
    } else {
      wx.showToast({
        title: '请先绑定4S店',
      })
    }
  },
  // 关闭绑定弹窗
  onClose() {
    this.setData({
      bind4sClerk: false,
      activeSteps: 0
    });
  },
  // 选择绑定数据弹窗关闭
  onshowClose() {
    this.setData({
      showClerk: false,
    });
  },
  // 用户选选择的店员
  onSelect(event) {
    this.setData({
      ClerkName: event.detail.name,
      ClerkId: event.detail.id
    })
    console.log(this.data.ClerkId, this.data.s4_id)
  },
  // 点击确定,发送4s和店员数据
  send4sClerk(e) {
    let that = this
    // 绑定4s和店员的判空
    if (that.data.ClerkName && that.data.s4_name && that.data.activeSteps == 0) {
      that.setData({
        // bind4sClerk: false,
        bindClerk: false,
        activeSteps: that.data.activeSteps + 1
      })
    } else if (that.data.activeSteps == 2) {
      that.setData({
        bind4sClerk: false,
      })

      that.getsubmit()
    } else {
      wx.showToast({
        icon: 'none',
        title: '请选择门店及店员',
      })
    }

  },
  async getdetails() {
    let that = this
    try {
      const {
        data: {
          data
        }
      } = await request({
        url: 'api/active/order',
        data: {
          id: that.data.id
        }
      })
      console.log(data, '抽奖数据')
      that.setData({
        detaillist: data,
        shi: data.active.price,
        itemid: data.id,
        jump_img: data.active.jump_img2,
        jump_url: data.active.jump_url,
        jump_id: data.active.id
      })
      console.log(data);
      console.log(this.data.jump_url);
    } catch (err) {
      //  console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popMaskTest()
    }
  },

  changeChe(e) { //同放积分
    let that = this
    that.setData({
      itemid: e.currentTarget.dataset.id
    })
    if (that.data.imgtap) {
      that.setData({
        imgtap: false,
        type: 0
      })
      that.actualPacket()
    } else {
      that.setData({
        imgtap: true,
        type: 1
      })
      that.actualPacket()
    }
  },
  async actualPacket() {
    let that = this
    const {
      data: {
        data
      }
    } = await request({
      url: 'api/active/shiPay',
      data: {
        id: that.data.itemid,
        type: that.data.type
      }
    })
    //  console.log(data);
    that.setData({
      shifu: data,
      shi: data.shi,
      fen_di: data.di
    })

  },
  formSubmit(e) {
    let that = this
    console.log('form发生了submit事件,携带数据为:', e.detail.value)
    if (e.detail.value.phone != '' && e.detail.value.names != '') {
      let phone = e.detail.value.phone
      if (phone.length == 11) {
        if (!(/^1[3456789]\d{9}$/.test(phone))) {
          wx.showToast({
            title: '手机号有误',
            icon: 'none',
            duration: 1000
          })
        } else if (that.data.activeSteps == 1) {
          that.setData({
            activeSteps: that.data.activeSteps + 1,
            obj: e.detail.value,
          })
          console.log(that.data.obj, '修改过的个人信息')
        } else {
          that.setData({
            obj: e.detail.value,
          })
          console.log(that.data.obj)
          // 调出绑定
          that.chooseClerk()
          // that.getsubmit()
          that.Subscribe()
        }
      } else {
        that.setData({
          msg: '手机号有误'
        })
        that.popMaskTest()
      }
    } else if (e.detail.value.names == '') {
      that.setData({
        msg: '姓名不能为空'
      })
      that.popMaskTest()
    } else if (e.detail.value.phone == '') {
      that.setData({
        msg: '手机号不能为空'
      })
      that.popMaskTest()
    } else {
      that.setData({
        msg: '姓名或手机号不能为空'
      })
      that.popMaskTest()
    }

  },

  async getsubmit() {
    console.log('')
    let that = this
    let obj = that.data.obj

    try {

      const {
        data
      } = await request({
        url: 'api/active/pay',
        data: {
          inviter_id: that.data.inviter_id,
          name: obj.names,
          phone: obj.phone,
          id: that.data.itemid,
          type: that.data.type,
          s4_clerk_id: that.data.ClerkId
        }
      })
      //  console.log(data);
      if (data.code == 1) {
        if (data.data != null) {
          if (data.data.type == 0) {
            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);
                that.setData({
                  wait: 1
                })
                if (that.data.jump_img != '') {
                  that.Subscribe()
                  that.showModal()
                } else {
                  wx.redirectTo({
                    url: '/pages/binding4S/binding4S',
                  })
                }
                if(wx.getStorageSync('is_share')){
                  that.DefaultFollow()
                }
              },
              fail(res) {
                //  console.log(res)
                wx.redirectTo({
                  url: '/pages/binding4S/binding4S',
                })
              }
            })
          } else if (data.data.type == 1) {
            //  console.log(that.data.jump_img);
            if (that.data.jump_img != '') {
              that.showModal()
            } else {
              that.setData({
                wait: 1
              })
              a.popSuccessTest(data.msg)
              setTimeout(() => {
                wx.redirectTo({
                  url: '/pages/binding4S/binding4S',
                })
              }, 1500);
            }
          } else {
            console.log(that.data.jump_img);
            if (that.data.jump_img != '') {
              that.showModal()
            } else {
              that.setData({
                wait: 1
              })
              a.popSuccessTest(data.msg)
              setTimeout(() => {
                wx.redirectTo({
                  url: '/pages/binding4S/binding4S',
                })
              }, 1500);
            }
          }
        } else {
          that.setData({
            msg: data.msg
          })
          that.popMaskTest()
        }
      }
    } catch (err) {
      //  console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popMaskTest()
    }
  },
  jumpImgUrl() {
    let that = this
    let draw_id = that.data.jump_url
    let draw_pos = draw_id.indexOf('id')
    let draw_length = draw_id.length
    let result = draw_id.substring(draw_pos + 3, draw_length)
    console.log(result, '截取结果')
    wx.navigateTo({
      // url: '/pages/webview/webview?url=' + encodeURIComponent(that.data.jump_url)
      url: '/package/pages/LuckDraw/LuckDraw?id=' + result +'&userMsg=' + JSON.stringify(that.data.obj)
      // url: '/pages/LuckDraw/LuckDraw?id=' + result
    })
    that.hideModal()
  },
  offclose() {
    this.hideModal()
  },

  popMaskTest() {
    wx.showToast({
      title: this.data.msg,
      icon: 'none',
      duration: 2000,
      mask: true //是否有透明蒙层,默认为false 
      //如果有透明蒙层,弹窗的期间不能点击文档内容 
    })
  },
  popSuccessTest() {
    wx.showToast({
      title: this.data.msg,
      icon: '', //默认值是success,就算没有icon这个值,就算有其他值最终也显示success
      duration: 2000, //停留时间
    })
  },
  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)
  },
  //调起订阅消息  报名成功
  Subscribe(){
    return new Promise((resolve, reject) => {
      wx.requestSubscribeMessage({
        tmplIds: ["-rXW7MPHBorK61LTJvKKY_yprWOJw26WVD0w5KjJTZs","g1HNEvLXjXE5LbvPiFti-DzPKzCg1bGP0sQ4yQH1SBw"],
        success: (res) => {
          console.log(res,'32222222');
          if (res['-rXW7MPHBorK61LTJvKKY_yprWOJw26WVD0w5KjJTZs'] === 'accept'&& res['g1HNEvLXjXE5LbvPiFti-DzPKzCg1bGP0sQ4yQH1SBw'] === 'accept'){
            wx.showToast({
              title: '订阅OK!',
              duration: 1000,
              success(data) {
                //成功
                resolve()
              }
            })
          }
        },
        fail(err) {
          //失败
          console.error(err);
          reject()
        }
      })
    })
  },
  // 分享进入默认关注
  async DefaultFollow(){
    try {
      const {
        data
      } = await request({
        url: 'api/index2/guan1',
        data: {
          id: wx.getStorageSync('s4_id')
        }
      })
      //  console.log(data);
      if (data.code == 1) {
        that.setData({
          msg: data.msg
        })
      } 
    } catch (err) {
      //  console.log(err);
      that.setData({
        msg: err.msg
      })
    }
  }
})