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
<template>
  <!-- 任务记录 -->
  <div id="taskdocuments" class="global-content">
    <!-- 筛选 -->
    <maintask-inquer
      byfilter="零件编号"
      :groupshow="false"
      :dele="false"
      :filterList="filterList"
      @addmodal="addmodal"
      @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';
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: '出库单号'
        }
      ]
    };
  },
  components: { TableContainer, maintaskInquer, Modal },
  computed: {
    tableHead() {
      return taskrecord;
    }
  },
  mounted() {
    this.TaskRecodeSearch();
  },
  methods: {
    //查询
    inquer(e) {
      this.inuqerobg = e;
      this.page = 1;
      this.TaskRecodeSearch();
    },
    //搜索用户
    TaskRecodeSearch() {
      const {
        零件编号: itemName,
        零件名称: itemDes,
        起始位: sourcePlace,
        目标位: toPlace,
        器具编号: containerName,
        任务状态: taskStatus,
        出库单号: outOrderCode
      } = this.inuqerobg;
      this.$Loading(true);
      TaskRecodeSearch(this.page + '&onePageNum=' + this.pageSize, {
        itemName,
        itemDes,
        sourcePlace,
        toPlace,
        containerName,
        taskStatus,
        outOrderCode,
        createTimeStart: this.inuqerobg.timepick ? this.inuqerobg.timepick[0] : '',
        createTimeEnd: this.inuqerobg.timepick ? this.inuqerobg.timepick[1] : ''
      }).then(res => {
        if (res.code == 0) {
          this.tableData = res.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>
#taskdocuments {
  .table {
    width: 100%;
    margin-top: 10px;
    height: calc(100% - 40px);
    overflow: hidden;
  }
}
</style>