company.js 1.4 KB
// pages/matrix/company/company.js
const app = getApp();
Page({

  /**
   * 页面的初始数据
   */
  data: {
    open:!1
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.setData({
      id: options.id
    }), this.getDetail(), this.tuijian();
  },
  getDetail(){
    let url = '/api/Company/detail', a = this;
    let params = {id:a.data.id};
    app.post(url,params).then((res)=>{
      a.setData({detailInfo:res})
    })
  },
  openText(){
    this.setData({open:!this.data.open})
  },
  onfocus(){
    let url ='/api/company/setFollow', params = {
      id: this.data.id,
      header: true
    }; app.post(url,params).then((res)=>{
      this.setData({
        'detailInfo["focus"]': true
      })
    })
  },
  canclefocus() {
    let url = '/api/interact/deleteFollow', params = {
      id: this.data.id,
      header: true
    }; app.post(url, params).then((res) => {
      this.setData({
        'detailInfo["focus"]':""
      })
    })
  },
  // 推荐企业
  tuijian(){
    let url ='/api/Company/recommend';
    app.post(url,{header:true}).then((r)=>{
      console.log(r)
    })
  },
  onReady: function () {},
  onShow: function () {},
  onHide: function () {},
  onUnload: function () {},
  onPullDownRefresh: function () {},

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

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {

  }
})