index.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. const _Http = getApp().globalData.http;
  2. Component({
  3. properties: {
  4. list: {
  5. type: Array
  6. },
  7. userrole: {
  8. type: String
  9. }
  10. },
  11. options: {
  12. addGlobalClass: true
  13. },
  14. lifetimes: {
  15. attached: function () {
  16. getApp().globalData.Language.getLanguagePackage(this)
  17. this.setData({
  18. siteid: wx.getStorageSync('userMsg').siteid
  19. })
  20. }
  21. },
  22. methods: {
  23. showTips() {
  24. getApp().globalData.Language.showToast('请选择领域添加')
  25. },
  26. addToCart(e) {
  27. let {
  28. item
  29. } = e.currentTarget.dataset;
  30. _Http.basic({
  31. "id": 20220924095102,
  32. "content": {
  33. "sa_brandid": item.brand[0].sa_brandid, //品牌id
  34. "itemid": item.itemid, //货品id
  35. "qty": item.orderminqty, //数量
  36. "itemno": item.itemno, //货品编号
  37. tradefield: item.tradefield[e.detail.value || 0].tradefield || ''
  38. },
  39. }).then(res => {
  40. console.log("加入购物车", res)
  41. if (res.code != '1') return wx.showToast({
  42. title: res.msg,
  43. icon: "none"
  44. });
  45. _Http.basic({
  46. "id": 20220927093202,
  47. "content": {}
  48. }, false).then(res => {
  49. console.log("购物车数量", res)
  50. getApp().globalData.num = res.data.num;
  51. if (this.data.userrole == '经销商') getCurrentPages()[getCurrentPages().length - 1].selectComponent("#Float").setNum(res.data.num)
  52. setTimeout(() => {
  53. wx.showToast({
  54. title: getApp().globalData.Language.getMapText('加入成功'),
  55. icon: "none",
  56. icon: "none"
  57. });
  58. }, 200);
  59. });
  60. })
  61. }
  62. }
  63. })