// pages/welfareMall/writeOff/writeOff.js import WelfareMall from '../../../api/welfareMall' import { parseTime } from '../../../utils/util' import {getMobileCache, getPhoneNumber as getPhoneNumberSync} from '../../../utils/user' Page({ /** * 页面的初始数据 */ data: { page: 1, pageSize: 10, lock: false, noResult: false, noMore: false, mobileTop: 'TONY WU', hexiaoList: [], storeList: [], index: 0, }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { this.getHexiaoList(); this.getStoreListByStaff(); }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { }, // 订单数据 getHexiaoList: function() { WelfareMall.getHexiaoList({ page: this.data.page, pageSize: this.data.pageSize, mobile: getMobileCache(), }).then(res => { if (res.code == 200) { this.userHexiaoListView(res.data) } this.data.lock = false }).catch(_ => { console.log(_) this.data.lock = false }) }, userHexiaoListView: function(data) { if (!Array.isArray(data) || data.length == 0) { console.log("核销列表数据为空"); if (this.data.page == 1) { this.setData({ mobileTop:getMobileCache(), noResult: true }) } else { this.setData({ mobileTop:getMobileCache(), noMore: true }) } return } this.data.hexiaoList = data this.setData({ mobileTop:getMobileCache(), hexiaoList: this.data.hexiaoList }) }, // 根据职员获取门店列表 getStoreListByStaff: function() { WelfareMall.getStoreListByStaff({ mobile: getMobileCache(), }).then(res => { if (res.code == 200) { this.userstoreListView(res.data) } this.data.lock = false }).catch(_ => { console.log(_) this.data.lock = false }) }, userstoreListView: function(data) { if (!Array.isArray(data) || data.length == 0) { console.log("门店列表数据为空"); if (this.data.page == 1) { this.setData({ mobileTop:getMobileCache(), noResult: true }) } else { this.setData({ mobileTop:getMobileCache(), noMore: true }) } return } const storeNameList = [] data.forEach(v => { storeNameList.push(v.storeName) }) this.setData({ mobileTop:getMobileCache(), storeList: storeNameList }) }, bindPickerChange: function (e) { console.log(e) this.setData({ index: e.detail.value }) }, })