123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- import {
- get,
- post
- } from '../../utils/http';
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- current: 0,
- currentDay: '2021-11-29',
- startDay: '1998-04-20',
- endDay: '2021-11-29',
- homeData: {},
- list: [],
- total: 0,
- page: 1
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- let date = new Date()
- let year = date.getFullYear()
- let month = date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1
- let day = date.getDate() < 10 ? '0'+date.getDate() : date.getDate()
- console.log(year,month,day)
- this.setData({
- currentDay: `${year}-${month}-${day}`,
- startDay: '1998-04-20',
- endDay: `${year}-${month}-${day}`,
- })
- this.getHomeData();
- this.getOrderList();
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- if(this.data.page * 10 < this.data.total) {
- this.getOrderList(++this.data.page)
- }
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- },
- /**
- * 切换状态
- */
- onTabsChange(e) {
- let current = e.currentTarget.dataset.id
- if(current == this.data.current) {
- return;
- }
- this.setData({
- current,
- page: 1,
- },() => {
- this.getOrderList(1)
- })
- },
- /**
- * 选择时间
- */
- bindDateChange: function(e) {
- console.log('picker发送选择改变,携带值为', e.detail.value)
- this.setData({
- [e.currentTarget.dataset.date]: e.detail.value,
- })
- },
- /**
- * 订单搜索
- */
- onSearchOrder() {
- this.getOrderList();
- },
- /**
- * 获取首页统计数据
- */
- getHomeData() {
- get('api/home',{},(res) => {
- this.setData({
- homeData: res.data
- })
- })
- },
- /**
- * 首页订单列表
- */
- getOrderList(_page) {
- let { list,current,page,startDay,endDay } = this.data;
- get('api/order/list',{
- start_day: startDay,
- end_day: endDay,
- type: current,
- page: _page || page,
- limit: 10
- },(res) => {
- if (_page == 1 || page == 1) {
- list = []
- this.data.page = 1
- }
- list.push(...res.data.list)
- this.setData({
- list,
- total: res.data.total,
- spinning: false
- })
- console.log(res)
- })
- }
- })
|