experienceReportInitData: function () {
let _this = this;
wx.request({
url: '',
data: {
token: wx.getStorageSync('token'),
type: 1,
},
method: "POST",
header: app.globalData.header,
success: function (res) {
// console.log(res)
_this.setData({
reportList: res.data.list
})
},
fail: function (err) {
wx.showToast({
title: '网络错误, 请检查网络~',
icon: "none"
})
}
})