Vinspection.js 1.9 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: 5,
    msg: '',
    currentIndex: 0,
    autoplay: true,
    interval: 3000,
    indicatorDots: true,
    indicator: '#F9F9F9',
    indicatorActive: '#E8370F',
    currentdenx: 0,
    six: 14,
  },
  onLoad: function (options) {
    let that = this
    //  console.log(options);
    that.setData({
      // order_id: options.order_id,
    })
  },
  onShow: function () {},
  goback() {
    wx.navigateBack()
  },
  goGrouBuying() {
    wx.navigateTo({
      url: '/pages/VgrouBuying/VgrouBuying'
    })
  },
  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, //停留时间
    })
  },
})