question_two.js 2.2 KB
// pages/my/question_two/question_two.js
const app=getApp();
Page({

  /**
   * 页面的初始数据
   */
  data: {
        category:{},
        list:[]
  },
        //电话客服
        call_kefu() {
                wx.makePhoneCall({
                        phoneNumber: '087165708327',
                        success: function () {
                                console.log("拨打电话成功!")
                        },
                        fail: function () {
                                console.log("拨打电话失败!")
                        }
                })
        },
  //返回
  get_my(){
          wx.navigateBack({
                  
          })
  },
  // 问题详情
  getdetails_issue(e) {
    wx.navigateTo({
            url: '../commonProblems/commonProblems?id=' + e.currentTarget.dataset.id + '&name=' + e.currentTarget.dataset.name
    })
  },
  //渲染问题
  fetchProblem(){
          let that=this
          let url ='/wxapp/user/questionChildren?id='+this.data.id
          app.post(url).then(r=>{
                  if(r.code==1){
                          console.log(r)
                          that.setData({
                                  category:r.data.category,
                                  list:r.data.list
                          })
                  }
          })
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
          this.setData({
                  id:options.id
          })
          this.fetchProblem();
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})