riku
2026-01-16 1f9e43b7bbb848c7ee2aaa89ffece17002b2c915
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
import {
  useLoading
} from '../../behaviors/loading';
import {
  sceneTypeList
} from '../../common/dataSceneTypes';
import {
  fetchPublish,
  fetchPublishedTask,
  deleteTask
} from '../../services/patrol/fetchSelfPatrol';
import dayjs from 'dayjs';
import ActionSheet, {
  ActionSheetTheme
} from 'tdesign-miniprogram/action-sheet';
 
Page({
  behaviors: [useLoading],
  /**
   * 页面的初始数据
   */
  data: {
    placeholder: '搜索企业',
    // 搜索条件
    searchOptions: {
      districtText: null,
      townText: null,
      sceneType: null,
      period: null,
    },
 
    unfinishedList: [],
    // 常按选中的自巡查索引
    longPressIndex: undefined,
    finishedList: [],
 
    newTask: false,
 
    dialog: {
      show: false,
      title: '确认删除当前自巡查任务?',
      message: '',
    },
  },
 
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad(options) {
    this.init();
    this._startLoad();
  },
 
  onShow() {
    this.getTabBar().init();
  },
 
  onPullDownRefresh() {
    this._startLoad();
  },
 
  onReachBottom() {
    this._loadMore();
  },
 
  init() {
    this.setData({
      ['searchOptions.period']: dayjs().format('YYYY-MM-DD'),
      ['searchOptions.sceneType']: sceneTypeList()[0].value,
    });
  },
 
  _fetchData(page) {
    return fetchPublishedTask(this.data.searchOptions.period).then(res => {
      const unfinishedList = [],
        finishedList = [];
      res.data.forEach(r => {
        if (r.finished < r.total) {
          unfinishedList.push(r);
        } else {
          finishedList.push(r);
        }
      });
      this.setData({
        unfinishedList,
        finishedList
      });
      // if (this.data.newTask) {
      //   wx.pageScrollTo({
      //     duration: 0,
      //     offsetTop: 0,
      //     scrollTop: 0,
      //     selector: '.panel-wrap',
      //     success: (res) => {},
      //     fail: (res) => {},
      //     complete: (res) => {},
      //   })
      // }
      return res.head;
    });
  },
 
  // 常按待完成的自巡查任务
  handleAction(e) {
    this.setData({
      longPressIndex: e.target.dataset.index
    });
    ActionSheet.show({
      theme: ActionSheetTheme.List,
      selector: '#t-action-sheet',
      context: this,
      items: [{
        label: '删除',
      }, ],
    });
    console.log(e);
  },
 
  // 删除自巡查任务
  handleSelected(e) {
    const {
      index
    } = e.detail;
    switch (index) {
      // 删除
      case 0:
        const {
          longPressIndex, unfinishedList
        } = this.data;
        const seleted = unfinishedList[longPressIndex];
        this.setData({
          dialog: {
            show: true,
            title: '确认删除当前历史记录?',
            message: seleted.finished > 0 ? '当前自巡查已有上传记录!' : '',
          },
        });
        break;
 
      default:
        break;
    }
  },
 
  // 场景类型更改
  handleSceneChange(e) {
    const {
      sceneValue
    } = e.detail;
    this.setData({
      ['searchOptions.sceneType']: sceneValue[0],
    });
    this._startLoad();
  },
 
  // 时间更改
  handleTimeChange(e) {
    const {
      timeValue
    } = e.detail;
    this.setData({
      ['searchOptions.period']: timeValue + '-01',
    });
    this._startLoad();
  },
 
  // 筛选条件弹出框
  showFilterPopup() {
    this.setData({
      show: true,
    });
  },
 
  showFilterPopupClose() {
    this.setData({
      show: false,
    });
  },
 
  // 弹出框重置
  reset(e) {
    this.onPopupSearch(e);
  },
 
  // 弹出框确认
  confirm(e) {
    this.onPopupSearch(e);
  },
 
  onPopupSearch(e) {
    const {
      searchOptions
    } = this.data;
    const {
      districtText,
      townText
    } = e.detail;
    searchOptions.districtText = districtText;
    searchOptions.townText = townText;
    this.setData({
      show: false,
      searchOptions,
    });
    this._startLoad();
  },
 
  // 弹出框关闭
  close(e) {
    this.setData({
      show: e.detail.visible
    });
  },
 
  dialogConfirm() {
    const {
      longPressIndex,
      unfinishedList
    } = this.data;
    const seleted = unfinishedList[longPressIndex];
    // deleteTask(seleted.guid).then(res=>{
    //   unfinishedList.splice(longPressIndex, 1)
    //   this.setData({ 
    //     unfinishedList,
    //     ['dialog.show']: false 
    //   });
    // })
    unfinishedList.splice(longPressIndex, 1)
    this.setData({
      unfinishedList,
      ['dialog.show']: false
    });
  },
 
  dialogClose() {
    this.setData({
      ['dialog.show']: false
    });
  },
 
  navToPublishTask() {
    wx.navigateTo({
      url: '/pages/selfpatrol/publish/index',
      events: {
        uploadOver: () => {
          this._startLoad();
        },
      },
    });
  },
});