company.js 856 字节
// pages/matrix/company/company.js
const app = getApp();
Page({

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

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.setData({
      id: options.id
    }), this.getDetail()
  },
  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})
  },
  onReady: function () {},
  onShow: function () {},
  onHide: function () {},
  onUnload: function () {},
  onPullDownRefresh: function () {},

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

  },

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

  }
})