Vnewslist.js 2.4 KB
import {
  request
} from "../../request/index.js"
const a = getApp()

Page({
  data: {
    baseUrl: a.globalData.baseUrl,
    statusTop: a.globalData.statusHeight,
    imagesUrl: a.globalData.imagesUrl,
    four: 4,
    msg: '',
    id: '',
    vewList: '',
    it_cloose: false,
  },
  onLoad: function (options) {
    let that = this
    //  console.log(options);
    that.setData({
      id: options.s4_id,
    })
    that.getNvewlist()
  },
  onShow: function () {

  },
  goback() {
    wx.navigateBack()
  },
  goNoticeDetail(e) {
    let id = e.currentTarget.dataset.id
    wx.navigateTo({
      url: '/pages/VnoticeDetail/VnoticeDetail?id=' + id
    })
  },
  async getNvewlist() {
    let that = this
    try {
      const {
        data: {
          data
        }
      } = await request({
        url: 'api/shop4s2/news',
        data: {
          s4_id: that.data.id
        }
      })
      //  console.log(data);
      if (data.length != 0) {
        that.setData({
          it_cloose: false,
        })
      } else {
        that.setData({
          it_cloose: true,
        })
      }
      that.setData({
        vewList: data,
      })



    } catch (err) {
      //  console.log(err);
      that.setData({
        msg: err.msg
      })
      that.popTest()
    }
  },
  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, //停留时间
    })
  },
})