Model_item.js 1.5 KB
const app=getApp()
Component({
  /**
   * 组件的属性列表
   */
  properties: {
    list: Array
  },

  /**
   * 组件的初始数据
   */
  data: {

  },

  /**
   * 组件的方法列表
   */
  methods: {
    look_more(e) {
      let login_new=app.globalData.login_new;
      // if(login_new==0){
      //       wx.showToast({
      //         title: '您还不是会员',
      //         icon:"none"
      //       })
      //       setTimeout(function(){
      //         wx.navigateTo({
      //           url: '/pages/login/login',
      //         })
      //       },1500)
      //       return false
      // }
      let id = e.currentTarget.dataset.id
      let token=wx.getStorageSync('token');
      if(token==''){
        wx.showToast({
          title: '请先登录',
            icon:'none',
            duration: 1300
        })
        setTimeout(function(){
          wx.navigateTo({
            url: '/pages/register/register',
          })
        },1300)
      }else{
        wx.navigateTo({
          url: '/pages/shop_detail/shop_detail?id=' + id
        })
      }
    },
  },
  lifetimes: {
    created() {
      // 在组件实例刚刚被创建时执行


    },
    attached() {
      // 在组件实例进入页面节点树时执行
    },
    ready() {
      // 在组件在视图层布局完成后执行
      this.setData({
        list: this.properties.list
      })

    },
    detached() {
      // 在组件实例被从页面节点树移除时执行
    },
  }
})