let common = getApp().globalData.commonFun; let util = getApp().globalData.utilFun; Page({ /** * 页面的初始数据 */ data: { order_arr: [], page: 1 }, /** * 生命周期函数--监听页面加载 */ onLoad: function(options) { }, getData() { let url = `api/order-wait?salesman_id=${wx.getStorageSync("userInfo").id}&limit=10&page=${this.data.page}` util.httpRequest(url).then((res) => { if (res.code == '200') { res.data.map(item=>{ item.car_model = item.car_model.split(",") }) this.setData({ order_arr: this.data.order_arr.concat(res.data) }) } console.log(this.data.order_arr) }) }, // 初审详情 firstDetails(e) { let det_type let index = e.currentTarget.dataset.index let id = e.currentTarget.dataset.id; if (e.currentTarget.dataset.type) { det_type = e.currentTarget.dataset.type } else if (this.data.order_arr[index].c_examine == 0 && (this.data.order_arr[index].c_examine_business == 0 || this.data.order_arr[index].c_examine_business == 1)) { det_type = 0 } else if (this.data.order_arr[index].c_examine == 1 && this.data.order_arr[index].c_examine_business == 1) { det_type = 1 } else if (this.data.order_arr[index].c_examine == 2 || this.data.order_arr[index].c_examine_business == 2) { det_type = 2 } wx.navigateTo({ url: `../../pages/toExamine/pages/first/first?det_id=${id}&det_type=${det_type}`, }) }, // 终审详情 endDetails(e) { let det_type let address = e.currentTarget.dataset.address let id = e.currentTarget.dataset.id; let index = e.currentTarget.dataset.index let type = e.currentTarget.dataset.type let name = e.currentTarget.dataset.name if (this.data.order_arr[index].z_examine == 0 && (this.data.order_arr[index].z_examine_business == 0 || this.data.order_arr[index].z_examine_business == 1)) { det_type = 0 } else if (this.data.order_arr[index].z_examine == 1 && this.data.order_arr[index].z_examine_business == 1) { det_type = 1 } else if (this.data.order_arr[index].z_examine == 2 || this.data.order_arr[index].z_examine_business == 2) { det_type = 2 } if (this.data.order_arr[index].z_examine !== null || this.data.order_arr[index].z_examine_business !== null) { wx.navigateTo({ url: `../../pages/toExamine/pages/finalJudgment/finalJudgment?det_id=${id}&det_type=${det_type}`, }) } if (type == 1) { wx.navigateTo({ url: `../../pages/toExamine/pages/finalJudgment/finalJudgment?det_id=${id}&det_type=4&name=${name}&address=${address}`, }) } }, //请款详情 requestfunds(e) { let det_type let id = e.currentTarget.dataset.id; let index = e.currentTarget.dataset.index let type = e.currentTarget.dataset.type let name = e.currentTarget.dataset.name if (this.data.order_arr[index].q_examine == 0 && (this.data.order_arr[index].q_examine_business == 0 || this.data.order_arr[index].q_examine_business == 1)) { det_type = 0 } else if (this.data.order_arr[index].q_examine == 1 && this.data.order_arr[index].q_examine_business == 1) { det_type = 1 } else if (this.data.order_arr[index].q_examine == 2 || this.data.order_arr[index].q_examine_business == 2) { det_type = 2 } if (this.data.order_arr[index].q_examine !== null || this.data.order_arr[index].q_examine_business !== null) { wx.navigateTo({ url: `../../pages/toExamine/pages/requestfunds/requestfunds?det_id=${id}&det_type=${det_type}`, }) } if (type == 1) { wx.navigateTo({ url: `../../pages/toExamine/pages/requestfunds/requestfunds?det_id=${id}&det_type=4`, }) } }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function() { }, /** * 生命周期函数--监听页面显示 */ onShow: function() { if (!wx.getStorageSync("userInfo")) { wx.showModal({ title: '提示', content: '前去登录', success(res) { if (res.confirm) { wx.switchTab({ url: `../../pages/my/my`, }) } else if (res.cancel) { console.log('用户点击取消') } } }) } else { this.getData() } }, /** * 生命周期函数--监听页面隐藏 */ onHide: function() { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function() { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function() { this.setData({ order_arr:[], page:1 }) this.getData() setTimeout(() => { wx.stopPullDownRefresh({}); }, 1000) }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function() { this.setData({ page: this.data.page + 1 }) this.getData() }, /** * 用户点击右上角分享 */ onShareAppMessage: function() { } })