shopCart.js 11.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 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 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
import {
  request
} from "../../request/index.js"
const a = getApp()
Page({
  data: {
    imagesUrl: a.globalData.baseUrl,
    statusTop: a.globalData.statusHeight,
    active: 1,
    _num: 1, // 1 车唛  2 4S店
    S4sShopList: [], // 4s店
    shopCart: [],
    num: 1, // 购物数量
    editor: 1, // 1 编辑 2 完成
    selected: true, // 选中
    selectAllStatus: false, // 全选 
    all_pay: '', // 购物车商品总价 
    gou_arr: [], //  购物车的ID数组, 如[47, 48] 
    msg: '',
    Cheid: [],
    numS4: '', //某件购物车商品的数量
    it_cloose: false,
    it_car: false,
    type: 1,
  },
  onLoad: function (options) {},
  onShow: function () {
    this.setData({
      _num: 1
    })
    this.getShopCart()
  },
  async getShopCart() { // 渲染购物车页面
    let that = this
    wx.showLoading({
      title: '加载中',
    })
    that.setData({
      selectAllStatus: false
    })
    try {
      const {
        data: {
          data
        }
      } = await request({
        url: 'api/gou/indexNew',
        data: {
          type: that.data.type
        }
      })
      console.log(data);
      if (data.length != 0) {
        data.forEach(item => {
          item.selected = false;
        })
        that.setData({
          selectAllStatus: false,
          it_car: false,
        })
        wx.hideLoading()
      } else {
        that.setData({
          it_car: true,
        })
        wx.hideLoading()
      }
      that.setData({
        shopCart: data,
      })


      console.log(that.data.shopCart);
    } catch (err) {
      console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popTest()
    }
  },
  countMinus(e) { //  商品数量减
    let that = this
    let a = e.currentTarget.dataset.id
    that.data.shopCart.forEach((value, index) => {
      if (value.id == a) {
        request({
          method: 'get',
          url: 'api/gou/delGou',
          data: {
            id: e.currentTarget.dataset.id,
          }
        }).then(res => {
          that.getShopCart()
        }).catch(err => {
          console.log(err);
        })
      }
    });

  },
  countPlus(e) { //  商品数量加 
    let that = this
    let a = e.currentTarget.dataset.id
    that.data.shopCart.forEach((value, index) => {
      if (value.id == a) {
        request({
          method: 'get',
          url: 'api/gou/addGou',
          data: {
            id: e.currentTarget.dataset.id,
          }
        }).then(res => {
          console.log(res, "加+1");
          that.getShopCart()
        }).catch(err => {
          console.log(err);
          that.setData({
            msg: err.msg
          })
          that.popMaskTest()
        })
      }
    });

  },
  totalMoney() { //购物车商品总价
    let that = this
    let gou_arr = that.data.Cheid.join(',')
    request({
      url: 'api/gou/suan',
      data: {
        gou_arr: gou_arr
      }
    }).then(res => {
      that.setData({
        all_pay: res.data.data.all_pay
      })
    }).catch(err => {
      console.log(err);
    })
  },
  selectList(e) { // 单选  选中
    let that = this
    let list = []
    if (that.data._num == 1) {
      list = that.data.shopCart
    } else {
      list = that.data.S4sShopList
    }
    let send = e.currentTarget.dataset.index
    let idList = that.data.Cheid;
    list.forEach((item, index) => {
      if (send == index) {
        if (item.selected == false) {
          item.selected = true
          if (idList.indexOf(item.id) == -1) {
            idList.push(item.id)
          }
        } else {
          item.selected = false
          var x = idList.indexOf(item.id);
          if (x != -1) {
            idList.splice(x, 1)
          }
        }
      }
    })
    if (idList.length == list.length) {
      that.setData({
        selectAllStatus: true
      })
    } else {
      that.setData({
        selectAllStatus: false
      })
    }
    if (that.data._num == 1) {
      that.setData({
        shopCart: list,
        Cheid: idList
      })
      that.totalMoney()
    } else {
      that.setData({
        S4sShopList: list,
        Cheid: idList
      })
      that.totalMoney4S()
    }

  },
  async checkedAll() { // 是否全选
    let that = this
    let token = wx.getStorageSync('token')
    let cont = that.data._num
    if (token) {

      let list = []
      if (cont == 1) {
        list = that.data.shopCart
      } else {
        list = that.data.S4sShopList
      }
      let idList = []
      let status = that.data.selectAllStatus;
      if (that.data.selectAllStatus) {
        list.forEach(item => {
          item.selected = false;
        })
        status = false;
      } else {
        list.forEach(item => {
          if (!item.selected) {
            item.selected = true;
          }
          idList.push(item.id)
        })
        status = true;
      }
      if (cont == 1) {
        that.setData({
          Cheid: idList,
          selectAllStatus: status,
          shopCart: list
        })
        that.totalMoney()
      } else {
        that.setData({
          Cheid: idList,
          selectAllStatus: status,
          S4sShopList: list
        })
        that.totalMoney4S()
      }
    } else {
      that.goLogin()
    }
  },
  toPayStore() { // 去结算   车唛 
    console.log(this.data.Cheid, "Cheid");
    let that = this
    let cheid = that.data.Cheid
    let gouarr = this.data.Cheid.join(',')
    if (cheid.length != 0) {
      wx.navigateTo({
        url: '/pages/true4Sorder/true4Sorder?gouarr=' + gouarr
      })
    } else {
      // that.goLogin()
      a.popTest('请选择要购买的商品')
    }

  },
  async delStoreAll(e) { //车唛 删除
    let that = this
    let ids = e.currentTarget.dataset.id
    let list = that.data.shopCart
    try {
      const {
        data
      } = await request({
        url: 'api/gou/deleteGou',
        data: {
          ids: ids
        }
      })
      console.log(data);
      a.popSuccessTest(data.msg)
      setTimeout(() => {
        that.getShopCart()
      }, 1500);
    } catch (err) {
      console.log(err);
      a.popTest(err.msg)
    }


  },
  changeTitle(e) { // 切换 4sdian 车唛 
    let way = e.currentTarget.dataset.num

    this.setData({
      _num: way,
      editor: 1,
      all_pay: 0,
    })
    if (way == 2) {
      this.getS4sShopList()
    } else {
      this.onShow()
    }
    console.log(this.data._num);
  },
  toggleEditor() { //  编辑 完成  切换
    if (this.data.editor == 1) {
      this.setData({
        editor: 2
      })
    } else {
      this.setData({
        editor: 1
      })
    }
  },
  toChedetailsImg(e) {
    let id = e.currentTarget.dataset.id
    wx.navigateTo({
      url: '/pages/productdetailsImg/productdetailsImg?id=' + id
    })
  },
  // -------------------------------------------------------------------------------
  async getS4sShopList() { // 4s 店
    let that = this;
    console.log(that.data.selectAllStatus);
    that.setData({
      selectAllStatus: false
    })
    try {
      const {
        data: {
          data
        }
      } = await request({
        url: 'api/shop4s/peiGouList',
      })
      let obj = []
      if (data.length != 0) {
        data.forEach(item => {
          item.selected = false;
          // obj.push(item.id)
        })
        that.setData({
          Cheid: obj,
          selectAllStatus: false
        })
      }
      that.setData({
        S4sShopList: data,
      })
      console.log(data);
      // that.totalMoney4S()
    } catch (err) {
      console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popTest()

    }
  },
  toproductdetailsImg(e) { //购物车详情
    // console.log(e);
    let id = e.currentTarget.dataset.id
    wx.navigateTo({
      url: '/pages/goAccessoriesDetailIMG/goAccessoriesDetailIMG?id=' + id
    })
  },
  toPayStore4S() { // 结算 4s店
    console.log(this.data.Cheid);
    let that = this
    let Cheid = that.data.Cheid
    let gouarr = this.data.Cheid.join(',')
    if (Cheid.length != 0) {
      wx.navigateTo({
        url: '/pages/4SorderShop/4SorderShop?gouarr=' + gouarr
      })
    } else {
      a.popTest('请选择要购买的商品')
    }
  },
  totalMoney4S() { //购物车商品总价
    let that = this
    // let token = wx.getStorageSync('token')
    let Cheid = that.data.Cheid
    if (Cheid.length != 0) {
      let gou_arr = that.data.Cheid.join(',')
      request({
        url: 'api/shop4s/gouSuan',
        data: {
          gou_arr: gou_arr
        }
      }).then(res => {
        that.setData({
          all_pay: res.data.data.all_pay
        })
        // console.log(res);
      }).catch(err => {
        console.log(err);
        that.setData({
          msg: err.msg
        })
        that.popMaskTest()
      })
    }
  },
  countMinus4S(e) { //  商品数量减
    let that = this
    let a = e.currentTarget.dataset.id
    that.data.S4sShopList.forEach((value, index) => {
      if (value.id == a) {
        request({
          method: 'get',
          url: 'api/shop4s/peiGouDel',
          data: {
            id: e.currentTarget.dataset.id,
          }
        }).then(res => {
          // console.log(res, "减-1");
          that.getS4sShopList()
        }).catch(err => {
          console.log(err);
          that.setData({
            msg: err.msg
          })
          that.popMaskTest()
        })
      }
    });

  },
  countPlus4S(e) { //  商品数量加 
    let that = this
    let a = e.currentTarget.dataset.id
    that.data.S4sShopList.forEach((value, index) => {
      if (value.id == a) {
        request({
          method: 'get',
          url: 'api/shop4s/peiGouAdd',
          data: {
            id: e.currentTarget.dataset.id,
          }
        }).then(res => {
          // console.log(res, "加+1");
          that.getS4sShopList()
        }).catch(err => {
          console.log(err);
          that.setData({
            msg: err.msg
          })
          that.popMaskTest()
        })
      }
    });

  },
  async delStoreShopAll(e) { //4s店 删除
    let that = this
    let ids = e.currentTarget.dataset.id
    let list = that.data.S4sShopList
    try {
      const {
        data
      } = await request({
        url: 'api/shop4s/deleteGou',
        data: {
          ids: ids
        }
      })
      //  console.log(data);
      that.setData({
        msg: data.msg,
        // S4sShopList: list.filter(item => item.selected == false)
      })
      that.popMaskTest()
      setTimeout(() => {
        that.getS4sShopList()
      }, 1000);
    } catch (err) {
      that.setData({
        msg: err.msg
      })
      that.popMaskTest()
    }

  },
  goGuang() {
    wx.switchTab({
      url: '/pages/home/home'
    })
  },
  async delStoreAllche() {
    let that = this
    let ids = that.data.Cheid.toString()
    try {
      const {
        data
      } = await request({
        url: 'api/gou/deleteGou',
        data: {
          ids: ids
        }
      })
      console.log(data);
      that.setData({
        msg: data.msg,

      })
      that.popMaskTest()
      setTimeout(() => {
        that.getShopCart()
      }, 1000);


    } catch (err) {
      that.setData({
        msg: err.msg
      })
      that.popTest()
    }

  },
  popTest() {
    wx.showToast({
      title: this.data.msg,
      icon: 'none', //如果要纯文本,不要icon,将值设为'none'
      duration: 1300
    })
  },
  popMaskTest() {
    wx.showToast({
      title: this.data.msg,
      duration: 1300,
      icon: 'fail',
      mask: true //是否有透明蒙层,默认为false 
      //如果有透明蒙层,弹窗的期间不能点击文档内容 
    })
  },
  goLogin() {
    wx.showModal({
      title: '提示',
      content: '您尚未登录,前往登录',
      success: function (res) {
        if (res.confirm) {
          wx.navigateTo({
            url: '/pages/authorization/authorization?num=1'
          })

        } else {
          // wx.switchTab({
          //   url: '/pages/home/home'
          // })
        }
      }
    })
  },
})