ke_junjie
2025-06-04 bb6e2230bb8ded3c5546bc4e4c282ee343754475
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
<template>
  <!-- 任务记录 -->
  <div id="taskrecord" class="global-content">
    <!-- 筛选 -->
    <maintask-inquer
      byfilter="零件编号"
      :groupshow="true"
      :dele="false"
      :addmodalshow="false"
      :derive="true"
      :tasktypeshow="true"
      :filterList="filterList"
      @addmodal="addmodal"
      @derive="derive"
      @inquer="inquer"
    />
    <!-- table -->
    <div class="table">
      <table-container
        :wipelist="wipelist"
        :tableHead="tableHead"
        :tableData="tableData"
        :editShow="true"
        :delShow="true"
        :operation="false"
        :currentPage="page"
        :pageSize="pageSize"
        :totle="totle"
        :naxnumShow="false"
        @edit="edit"
        @del="del"
        @SizeChange="SizeChange"
        @CurrentChange="CurrentChange"
      />
    </div>
  </div>
</template>
 
<script>
import { TableContainer, Modal } from '@/components/index';
import maintaskInquer from '../components/maintask-inquer';
const { taskrecord } = require('@/components/tableContainer/tableHead');
import { TaskRecodeSearch, TaskRecodeDelete } from '@/api/taskrecord';
import { exportTableList } from '@/utils/excel';
import { getymdhms, getimestampDate } from '@/utils/date';
export default {
  data() {
    return {
      title: '',
      tableData: [],
      modalShow: false,
      addmodalShow: false,
      wipelist: ['inOrderCode'],
      rowitem: {},
      totle: 0,
      page: 1,
      pageSize: 20,
      pageNum: 0,
      inuqerobg: {},
      filterList: [
        {
          value: '零件编号',
          label: '零件编号'
        },
        {
          value: '零件名称',
          label: '零件名称'
        },
 
        {
          value: '起始位',
          label: '起始位'
        },
        {
          value: '目标位',
          label: '目标位'
        },
        {
          value: '任务状态',
          label: '任务状态'
        },
        {
          value: '器具编号',
          label: '器具编号'
        },
        {
          value: '出库单号',
          label: '出库单号'
        }
        // {
        //   value: '任务类型',
        //   label: '任务类型'
        // }
      ],
      tranLinelist: [
        {
          tranLine: 68,
          title: '1号出口'
        },
        {
          tranLine: 51,
          title: '2号出口'
        },
        {
          tranLine: 64,
          title: '3号出口'
        },
        {
          tranLine: 67,
          title: '4号出口'
        },
        {
          tranLine: 34,
          title: '5号出口'
        },
        {
          tranLine: 30,
          title: '6号出口'
        },
        {
          tranLine: 19,
          title: '7号出口'
        },
        {
          tranLine: 12,
          title: '8号出口'
        },
        {
          tranLine: 47,
          title: '1号入口'
        },
        {
          tranLine: 48,
          title: '2号入口'
        },
        {
          tranLine: 61,
          title: '3号入口'
        },
        {
          tranLine: 65,
          title: '4号入口'
        },
        {
          tranLine: 32,
          title: '5号入口'
        },
        {
          tranLine: 15,
          title: '7号入口'
        }
      ]
    };
  },
  components: { TableContainer, maintaskInquer, Modal },
  computed: {
    tableHead() {
      return taskrecord;
    }
  },
  mounted() {
    this.TaskRecodeSearch();
  },
  methods: {
    //查询
    inquer(e) {
      this.inuqerobg = e;
      this.page = 1;
      this.TaskRecodeSearch();
    },
    //导出
    derive() {
      let tHeader = [];
      let filterVal = [];
      this.tableHead.forEach(item => {
        tHeader.push(item.columnDescription);
        filterVal.push(item.columnName);
      });
      let obj = { ...this.inuqerobg };
      console.log(obj);
      const {
        零件编号: itemName,
        零件名称: itemDes,
        起始位: sourcePlace,
        目标位: toPlace,
        器具编号: containerName,
        任务状态: taskStatus,
        出库单号: outOrderCode,
        taskType
      } = obj;
      this.$Loading(true);
      TaskRecodeSearch('1&onePageNum=99999999', {
        itemName,
        itemDes,
        sourcePlace,
        toPlace,
        containerName,
        taskStatus,
        outOrderCode,
        taskType,
        createTimeStart: obj.timepick ? obj.timepick[0] : '',
        createTimeEnd: obj.timepick ? obj.timepick[1] : ''
      }).then(res => {
        if (res.code == 0) {
          let data = res.data;
          data.forEach(item => {
            item.taskType =
              item.taskType == 1 ? '入库' : item.taskType == 2 ? '出库' : item.taskType == 3 ? '移库' : item.taskType;
            item.isMainOut = item.isMainOut == 1 ? '是' : item.isMainOut == 0 ? '否' : item.isMainOut;
            item.createTime = item.createTime ? getimestampDate(item.createTime) : '';
            item.doTime = item.doTime ? getimestampDate(item.doTime) : '';
            item.finishTime = item.finishTime ? getimestampDate(item.finishTime) : '';
            item.taskCreateTime = item.taskCreateTime ? getimestampDate(item.taskCreateTime) : '';
            this.tranLinelist.forEach(element => {
              if (item.sourcePlace == element.tranLine) {
                item.sourcePlace = element.title;
              }
              if (item.toPlace == element.tranLine) {
                item.toPlace = element.title;
              }
            });
          });
          exportTableList(tHeader, filterVal, data, '任务记录' + getymdhms());
        }
        this.$Loading();
      });
    },
    //搜索用户
    TaskRecodeSearch() {
      let obj = { ...this.inuqerobg };
      console.log(obj);
      const {
        零件编号: itemName,
        零件名称: itemDes,
        起始位: sourcePlace,
        目标位: toPlace,
        器具编号: containerName,
        任务状态: taskStatus,
        出库单号: outOrderCode,
        taskType
      } = obj;
      this.$Loading(true);
 
      TaskRecodeSearch(this.page + '&onePageNum=' + this.pageSize, {
        itemName,
        itemDes,
        sourcePlace,
        toPlace,
        containerName,
        taskStatus,
        outOrderCode,
        taskType,
        createTimeStart: obj.timepick ? obj.timepick[0] : '',
        createTimeEnd: obj.timepick ? obj.timepick[1] : ''
      }).then(res => {
        if (res.code == 0) {
          let data = res.data;
          data.forEach(item => {
            item.taskType =
              item.taskType == 1 ? '入库' : item.taskType == 2 ? '出库' : item.taskType == 3 ? '移库' : item.taskType;
            item.isMainOut = item.isMainOut == 1 ? '是' : item.isMainOut == 0 ? '否' : item.isMainOut;
            this.tranLinelist.forEach(element => {
              if (item.sourcePlace == element.tranLine) {
                item.sourcePlace = element.title;
              }
              if (item.toPlace == element.tranLine) {
                item.toPlace = element.title;
              }
            });
          });
          this.tableData = data;
          this.totle = res.num;
          this.pageNum = res.pageNum;
        }
        this.$Loading();
      });
    },
    CurrentChange(e) {
      console.log(e);
      this.page = e;
      this.TaskRecodeSearch();
    },
    SizeChange(e) {
      this.pageSize = e;
      this.TaskRecodeSearch();
    },
    //编辑
    edit(row) {
      this.addmodalShow = true;
      this.rowitem = { ...row };
      this.title = '编辑';
    },
    //删除
    del(row) {
      console.log(row);
      const { id } = { ...row };
      this.$confirm('此操作将永久删除, 是否继续?', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      })
        .then(() => {
          TaskRecodeDelete({ id }).then(res => {
            if (res.code == 0) {
              this.$message({
                type: 'success',
                message: '删除成功!'
              });
              this.TaskRecodeSearch();
            }
          });
        })
        .catch(() => {
          this.$message({
            type: 'info',
            message: '已取消删除'
          });
        });
    },
    //新建
    addmodal() {
      this.rowitem = {};
      this.addmodalShow = true;
      this.title = '新建';
    },
    //新增修改后
    addsubmit() {
      this.addmodalShow = false;
      this.modalShow = false;
      this.TaskRecodeSearch();
    }
  }
};
</script>
 
<style lang="scss" scoped>
#taskrecord {
  .table {
    width: 100%;
    margin-top: 10px;
    height: calc(100% - 40px);
    overflow: hidden;
  }
}
</style>