file_choose.js 3.7 KB
// pages/file_manage/file_manage.js
// 请注意常量的命名必须是Page
const Page = require('../../utils/ald-stat.js').Page;
const app = getApp();
Page({

  /**
   * 页面的初始数据
   */
  data: {
    datalist: [],
    files_id: '',
    show: true,//是否显示选择项
    hadData: true
  },
  goaddfile() {
    wx.navigateTo({
      url: '/pages/addfile/addfile',
      success: function (res) { },
      fail: function (res) { },
      complete: function (res) { },
    })
  },
  setstate(e) {
    let that = this;
    let index = e.currentTarget.dataset.index;
    let datalist = this.data.datalist;
    let url = 'user/setDefaultFilesId';
    let header = {
      'XX-Token': wx.getStorageSync('token'),
      'XX-Device-Type': ''
    }
    let params = {
      fields_id: e.currentTarget.id
    }
    app.post(url, params, header).then((res) => {
      for (let obj of datalist) {
        obj.state = false;
      }
      datalist[index].state = true;
      that.setData({
        datalist: datalist
      })
      wx.showToast({
        title: '切换成功',
        icon: 'success',
        duration: 1000,
        success: function(res) {
          
        },
        fail: function(res) {},
        complete: function(res) {},
      })
      setTimeout(()=>{
        wx.switchTab({
          url: '/pages/index/index',
        })
      },1000)
      // wx.showModal({
      //   title: '提示',
      //   content: '设置成功',
      //   showCancel: false,
      //   success: function (res) {
      //     if (res.cancel) {
      //     } else {
            
      //     }
      //   },
      //   fail: function (res) { },
      //   complete: function (res) { },
      // })

    }).catch((errMsg) => {
      console.log(errMsg)
    })

  },
  //获取档案列表
  getFilesList() {
    let that = this;
    let header = {
      'XX-Token': wx.getStorageSync('token'),
      'XX-Device-Type': ''//不知道啥含义
    }
    let url = 'user/getFilesList';
    app.post(url, {}, header).then((res) => {
      let list = res;

      for (let obj of list) {
        obj.state = false;
        if (obj.id == that.data.files_id) {
          obj.state = true
        }
      }
      that.setData({
        datalist: list
      })
      console.log(res)
    }).catch((errMsg) => {
      console.log(errMsg)
    })
  },
  //编辑档案
  goeditfile(e) {
    console.log(e.currentTarget.dataset.obj)
    wx.navigateTo({
      url: '/pages/editfile/editfile?obj=' + JSON.stringify(e.currentTarget.dataset.obj),
      success: function (res) { },
      fail: function (res) { },
      complete: function (res) { },
    })

  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    let that = this;
    app.setStatisticsVisitorLog('/pages/file_manage/file_manage');
    if (options.files_id != undefined) {
      that.setData({
        files_id: options.files_id
      })
    }
    if (options.show != undefined) {
      that.setData({
        show: false
      })
    }
    that.getFilesList();
  },

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

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    let that = this;
    that.getFilesList();
  },

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

  },

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

  },

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

  },

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

  },

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

  }
})