homepage.js 5.8 KB
// pages/homepage/homepage.js
function getRandomColor() {
  let rgb = []
  for (let i = 0; i < 3; ++i) {
    let color = Math.floor(Math.random() * 256).toString(16)
    color = color.length == 1 ? '0' + color : color
    rgb.push(color)
  }
  return '#' + rgb.join('')
}

const app = getApp();

Page({

  /**
   * 页面的初始数据
   */
  data: {
    array: ['视频', '图片'],
    index: 0,
    jingmeiurl: '',
    picurl: '',
    videourl: '',
    thumbinal: '',
    pic: '',
    image: '',
    phoneshow: false,
    phonenum: '',
    footersel: 1,
    sortlist: []
  },
  bindPickerChange: function (e) {
    console.log('picker发送选择改变,携带值为', e.detail.value)
    this.setData({
      index: e.detail.value
    })
  },
  // 获取分类
  getkind() {
    let that = this;
    var url = 'index/home_type';
    var params = {}
    app.post(url, params, "post").then((res) => {
      console.log(res);
      that.setData({
        sortlist: res
      })


    }).catch((err) => {

    })
  },

  // 图片
  picbox() {
    let token = wx.getStorageSync("token");
    if (token == '') {
      wx.showToast({
        title: '请先登录',
        icon: 'none'
      })

      setTimeout(function () {
        wx.navigateTo({
          url: '/pages/index/index',
        })
      }, 1500)
    } else {
      wx.navigateTo({
        url: '/pages/pichezi/pichezi',
      })
    }

  },
  videobox() {
    let token = wx.getStorageSync("token");
    if (token == '') {
      wx.showToast({
        title: '请先登录',
        icon: 'none'
      })

      setTimeout(function () {
        wx.navigateTo({
          url: '/pages/index/index',
        })
      }, 1500)
    } else {
      // wx.navigateTo({
      //   url: '/pages/videobox/videobox',
      // })
      wx.navigateTo({

        url: '/pages/kind/kind',
      })
    }

  },
  hidewrap() {
    this.setData({
      phoneshow: false
    })
  },

  // 输入手机号
  enterphone(e) {
    this.setData({
      phonenum: e.detail.value
    })
  },
  yuyue() {
    let token = wx.getStorageSync("token");
    wx.navigateTo({
      url: '/pages/qujingdi/qujingdi',
    })
    // if(token==''){
    //   wx.showToast({
    //     title: '请先登录',
    //     icon:'none'
    //   })

    //   setTimeout(function(){
    //     wx.navigateTo({
    //       url: '/pages/index/index',
    //     })
    //   },1500)
    // }else{

    //   this.setData({
    //     phoneshow: true
    //   })
    // }

  },

  // 确人提交
  surebtn() {
    let that = this;
    if (!(/^1[3456789]\d{9}$/.test(that.data.phonenum))) {
      wx.showToast({
        title: '请输入正确手机号',
        icon: 'none'
      })
      return false;
    }
    var url = '/pay/appointment';
    var params = {
      phone: that.data.phonenum

    }
    app.post(url, params, "post").then((res) => {
      console.log(res);
      wx.showToast({
        title: '提交成功',
        icon: "none"
      })

      setTimeout(function () {
        that.setData({
          phoneshow: false
        })
      }, 1500)



    }).catch((err) => {

    })
  },
  enter() {

  },
  gosearch() {

    let token = wx.getStorageSync("token");
    if (token == '') {
      wx.showToast({
        title: '请先登录',
        icon: 'none'
      })

      setTimeout(function () {
        wx.navigateTo({
          url: '/pages/index/index',
        })
      }, 1500)
    } else {
      wx.navigateTo({
        url: '/pages/search/search?index=' + this.data.index,
      })
    }

  },
  govideo(e) {
    console.log(e)
    let id = e.currentTarget.dataset.id
    let token = wx.getStorageSync("token");
    if (token == '') {
      wx.showToast({
        title: '请先登录',
        icon: 'none'
      })

      setTimeout(function () {
        wx.navigateTo({
          url: '/pages/index/index',
        })
      }, 1500)
    } else {
      wx.navigateTo({
        url: '/pages/picbox/picbox?home_type_id=' + id
      })
    }

  },
  // 封面管理
  fengmian() {
    let that = this;
    var url = 'index/topimage';
    var params = {}
    app.post(url, params).then((res) => {
      console.log(res);
      this.setData({
        thumbinal: res.image,
      })
    }).catch((err) => {

    })
  },

  // 底部导航跳转
  footersel(e) {
    console.log(34343489)
    let id = e.currentTarget.dataset.id;
    console.log(id)
    if (id == 1) {
      wx.redirectTo({
        url: '/pages/homepage/homepage',
      })
    } else if (id == 2) {
      wx.redirectTo({
        url: '/pages/kind/kind',
      })
    } else if (id == 3) {
      wx.redirectTo({
        url: '/pages/cart/cart',
      })
    } else if (id == 4) {
      wx.redirectTo({
        url: '/pages/mine/mine',
      })
    }
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.fengmian()
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function (res) {
    this.videoContext = wx.createVideoContext('myVideo')
  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    let name=wx.getStorageSync('name');
    console.log('888888888',name)
    // 获取分类
    this.getkind()
  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {
    
  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {
    console.log(app.globalData.sharepic)

    return {
      title: '影视空镜头素材库',
      path: '/pages/startindex/startindex',
      imageUrl: app.globalData.sharepic
    }


  }
})