You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
2.1 KiB
122 lines
2.1 KiB
let common = getApp().globalData.commonFun; |
|
let util = getApp().globalData.utilFun; |
|
Page({ |
|
|
|
/** |
|
* 页面的初始数据 |
|
*/ |
|
data: { |
|
page: 1, |
|
list: [] |
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面加载 |
|
*/ |
|
onLoad: function(options) { |
|
|
|
}, |
|
getList() { |
|
if (this.data.page == 1) { |
|
this.setData({ |
|
list: [] |
|
}) |
|
} |
|
let url = 'api/gps-lists' |
|
let data = { |
|
salesman_id: wx.getStorageSync('userInfo').id, |
|
page: this.data.page, |
|
limit: 10 |
|
} |
|
util.httpRequest(url, data).then((res) => { |
|
console.log(res) |
|
if (res.code == '200') { |
|
this.setData({ |
|
list: this.data.list.concat(res.data) |
|
}) |
|
} |
|
}) |
|
}, |
|
details(e) { |
|
let item = JSON.stringify(e.currentTarget.dataset.item) |
|
wx.navigateTo({ |
|
url: `../GPSform/GPSform?item=${item}`, |
|
}) |
|
}, |
|
add() { |
|
wx.navigateTo({ |
|
url: '../GPSform/GPSform?num=1', |
|
}) |
|
}, |
|
/** |
|
* 生命周期函数--监听页面初次渲染完成 |
|
*/ |
|
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.getList() |
|
} |
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面隐藏 |
|
*/ |
|
onHide: function() { |
|
this.setData({ |
|
page: 1 |
|
}) |
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面卸载 |
|
*/ |
|
onUnload: function() { |
|
this.setData({ |
|
page: 1 |
|
}) |
|
}, |
|
|
|
/** |
|
* 页面相关事件处理函数--监听用户下拉动作 |
|
*/ |
|
onPullDownRefresh: function() { |
|
|
|
}, |
|
|
|
/** |
|
* 页面上拉触底事件的处理函数 |
|
*/ |
|
onReachBottom: function() { |
|
this.setData({ |
|
page: this.data.page + 1 |
|
}) |
|
this.getList() |
|
}, |
|
|
|
/** |
|
* 用户点击右上角分享 |
|
*/ |
|
onShareAppMessage: function() { |
|
|
|
} |
|
}) |