VtuanList.js 3.9 KB
import {
  request
} from "../../request/index.js"
const a = getApp()
Page({
  data: {
    statusTop: a.globalData.statusHeight,
    imagesUrl: a.globalData.baseUrl,
    four: 4,
    msg: '',
    it_cloose: false,
    searchValue: '',
    star: 1,
    moreList: [],
    kw: '',


  },
  onLoad: function (options) {
    let that = this
    //  console.log(options);
    that.setData({
      // order_id: options.order_id,
    })
  },
  onShow: function () {
    let that = this
    that.getmoreList()
  },
  goback() {
    wx.navigateBack()
  },
  async common() {
    let that = this
    try {
      const {
        data: {
          data
        }
      } = await request({
        url: 'api/my2/myGuan',
        method: 'POST', //   
        data: {
          id: that.data.id
        }
      })
      //  console.log(data);
      that.setData({
        commonList: data,
      })
    } catch (err) {
      //  console.log(err);
      that.popTest(err.msg)
    }
  },
  async getmoreList() { //获取
    let that = this
    try {
      const {
        data: {
          data
        }
      } = await request({
        url: 'api/my2/myGuan',
        data: {
          kw: that.data.kw,
        }
      })
      //  console.log(data);
      if (data.length != 0) {
        that.setData({
          it_cloose: false
        })
      } else {
        that.setData({
          it_cloose: true
        })
      }
      that.setData({
        moreList: data,

      })
    } catch (err) {
      //  console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popTest()
    }
  },
  async clickAttention(e) { //关注
    let that = this
    let id = e.currentTarget.dataset.id
    try {
      const {
        data
      } = await request({
        url: 'api/index2/guan',
        data: {
          id: id
        }
      })
      //  console.log(data);
      if (data.code == 1) {
        that.setData({
          msg: data.msg
        })
        that.popSuccessTest()
      } else {
        that.setData({
          msg: data.msg
        })
        that.popTest()
      }
      that.getmoreList()


    } catch (err) {
      //  console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popTest()
    }
  },
  bindconfirm(e) {
    let that = this
    let kw = e.detail.value.input || e.detail.value
    that.setData({
      kw: kw
    })
    that.getmoreList()
  },
  getInput(e) {
    //  console.log(e);
    let that = this
    let kw = e.detail.value
    that.setData({
      kw: kw
    })
    that.getmoreList()
  },
  changed4S(e) { // 去4sd店
    let that = this
    let store_id = e.currentTarget.dataset.id
    a.globalData.stores_id = store_id
    wx.switchTab({
      url: '/pages/4Sstore/4Sstore'
    })
  },























  async public() {
    let that = this
    try {
      const {
        data: {
          data
        }
      } = await request({
        url: '',
        data: {
          goods_id: that.data.goods_id
        }
      })
      //  console.log(data);
      that.setData({
        public: data
      })
    } catch (err) {
      //  console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popTest()
    }
  },
  popTest() {
    wx.showToast({
      title: this.data.msg,
      icon: 'none', //如果要纯文本,不要icon,将值设为'none'
      duration: 1300
    })
  },
  goLogin() {
    wx.showModal({
      title: '提示',
      content: '您尚未登录,前往登录',
      success: function (res) {
        if (res.confirm) {
          wx.navigateTo({
            // url: '/pages/authorization/authorization'
          })

        } else {
          wx.switchTab({
            url: '/pages/home/home'
          })
        }
      }
    })
  },
  popSuccessTest() {
    wx.showToast({
      title: this.data.msg,
      icon: '', //默认值是success,就算没有icon这个值,就算有其他值最终也显示success
      duration: 1300, //停留时间
    })
  },
})