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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
<template>
  <!-- 零件管理 -->
  <div id="choose" class="global-content">
    <!-- 筛选 -->
    <storage-inquer
      byfilter="零件编号"
      :groupshow="true"
      :derive="true"
      :dele="false"
      :imexcel="true"
      :temp="true"
      :set-limit="true"
      :use-limit="true"
      :use-limit-value="useLimitValue"
      :filterList="filterList"
      @addmodal="addmodal"
      @inquer="inquer"
      @derive="derive"
      @importfile="importfile"
      @changeUseLimitValue="changeUseLimitValue"
      @setAllLimit="onOpenLimitModal"
    />
    <!-- table -->
    <div class="table">
      <table-container
        :wipelist="wipelist"
        :tableHead="tableHead"
        :tableData="tableData"
        :editShow="true"
        :delShow="true"
        :currentPage="page"
        :pageSize="pageSize"
        :totle="totle"
        :naxnumShow="false"
        @edit="edit"
        @del="del"
        @CurrentChange="CurrentChange"
        @SizeChange="SizeChange"
      />
    </div>
 
    <transition name="modal">
      <modal v-if="addmodalShow" :modabg="true" @cancel="addmodalShow = false">
        <p slot="title">零件管理-{{ title }}</p>
        <div class="height" slot="centent">
          <choose-edit
            @cancel="addmodalShow = false"
            :rowitem="rowitem"
            @addsubmit="addsubmit"
            :containerTypeList="containerTypeList"
          />
        </div>
      </modal>
    </transition>
 
    <limit-modal :visible.sync="limitModalVisible"></limit-modal>
  </div>
</template>
 
<script>
import { TableContainer, Modal } from '@/components/index';
import StorageInquer from '../../components/storage-inquer';
import chooseEdit from '../../components/chooseEdit';
import { exportTableList } from '@/utils/excel';
import { getymdhms } from '@/utils/date';
import { getCache, setCache, removeToken } from '@/utils/sessionStorage';
const { edterchoose } = require('@/components/tableContainer/tableHead');
import {
  itemSearch,
  ItemDelete,
  ImportItemInfo,
  GetAllItem,
  SearchStorageEnable,
  UpdateStorageEnable
} from '@/api/enterchoose';
import { ContainerTypeSearch } from '@/api/inventory';
import XLSX from 'xlsx';
import LimitModal from './components/limitModal.vue';
export default {
  data() {
    return {
      title: '',
      tableData: [],
      modalShow: false,
      addmodalShow: false,
      wipelist: ['inOrderCode'],
      rowitem: {},
      totle: 0,
      page: 1,
      pageSize: 20,
      pageNum: 0,
      inuqerobg: {},
      containerTypeList: [],
      filterList: [
        {
          value: '零件编号',
          label: '零件编号'
        },
        {
          value: '零件描述',
          label: '零件描述'
        },
        {
          value: '生产班线',
          label: '生产班线'
        }
      ],
      useLimitValue: false,
      limitModalVisible: false
    };
  },
  components: { TableContainer, StorageInquer, Modal, chooseEdit, LimitModal },
  computed: {
    tableHead() {
      return edterchoose;
    }
  },
  mounted() {
    this.searchStorageEnable(f => {
      if (f) {
        this.itemSearch();
        this.ContainerTypeSearch();
      }
    });
  },
  methods: {
    //查询
    inquer(e) {
      this.inuqerobg = e;
      this.page = 1;
      this.itemSearch();
    },
    //导入
    importfile(e) {
      this.readExcel(e);
    },
    //导出
    derive() {
      let tHeader = [];
      let filterVal = [];
      GetAllItem().then(res => {
        res.forEach(item => (item.isLock = item.isLock == 1 ? '是' : item.isLock == 0 ? '否' : item.isLock));
        this.tableHead.forEach(item => {
          tHeader.push(item.columnDescription);
          filterVal.push(item.columnName);
        });
        exportTableList(tHeader, filterVal, res, '零件管理' + getymdhms());
      });
    },
    searchStorageEnable(callback) {
      SearchStorageEnable()
        .then(d => {
          if (d.code === 0) {
            this.useLimitValue = true;
          } else {
            this.useLimitValue = false;
          }
          callback && callback(true);
        })
        .catch(err => {
          callback && callback(false);
        });
    },
    changeUseLimitValue() {
      let msg = '是否确认要';
      if (this.useLimitValue) {
        msg += '关闭';
      } else {
        msg += '启用';
      }
      msg += '上下线判断?';
      this.$confirm(msg, '系统提示', {
        type: 'warning'
      })
        .then(() => {
          this.dealChangeUseLimitValue();
        })
        .catch(() => {});
    },
    dealChangeUseLimitValue() {
      this.$Loading(true);
      let params = { storageEnable: 1 };
      if (this.useLimitValue) {
        params.storageEnable = 0;
      }
      UpdateStorageEnable(params)
        .then(d => {
          this.$Loading();
          if (d.code === 0) {
            this.useLimitValue = !this.useLimitValue;
            this.$message.success('操作成功');
          } else {
            let msg = d.msg || '操作失败';
            this.$alert(msg, '系统提示', { type: 'error' });
          }
        })
        .catch(() => {
          this.$Loading();
        });
    },
    //搜索零件
    itemSearch() {
      console.log(process.env.IMAGE_URL);
      var url = process.env.IMAGE_URL;
      this.$Loading(true);
      const { 零件编号: itemName, 零件描述: itemDes, 生产班线: createLine } = this.inuqerobg;
      itemSearch(this.page + '&onePageNum=' + this.pageSize, { itemName, itemDes, createLine }).then(res => {
        if (res.code == 0) {
          let data = res.data;
          data.forEach(item => {
            item.image = process.env.IMAGE_URL + item.image;
          });
          this.tableData = data;
          this.totle = res.num;
          this.pageNum = res.pageNum;
        }
        this.$Loading();
      });
    },
    CurrentChange(e) {
      this.page = e;
      this.itemSearch();
    },
    ContainerTypeSearch() {
      ContainerTypeSearch().then(res => {
        if (res != null && res != []) {
          let data = res || [];
          this.containerTypeList = data;
        }
      });
    },
    //页数
    SizeChange(e) {
      this.pageSize = e;
      this.itemSearch();
    },
    //编辑
    edit(row) {
      this.addmodalShow = true;
      this.rowitem = { ...row };
      this.title = '编辑';
    },
    //删除
    del(row) {
      const { itemName } = { ...row };
      this.$confirm('此操作将永久删除该零件信息, 是否继续?', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      })
        .then(() => {
          ItemDelete({ itemName }).then(res => {
            if (res.code == 0) {
              this.$message({
                type: 'success',
                message: '删除成功!'
              });
              this.itemSearch();
            }
          });
        })
        .catch(() => {
          this.$message({
            type: 'info',
            message: '已取消删除'
          });
        });
    },
    //新建
    addmodal() {
      this.rowitem = {};
      this.addmodalShow = true;
      this.title = '新建';
    },
    //新增修改后
    addsubmit() {
      this.addmodalShow = false;
      this.modalShow = false;
      this.itemSearch();
    },
    readExcel(e) {
      // 读取表格文件
      let _this = this;
      const files = e.file;
      // debugger;
      if (files.length <= 0) {
        return false;
      } else if (!/\.(xls|xlsx)$/.test(files.name.toLowerCase())) {
        this.$message({
          message: '上传格式不正确,请上传xls或者xlsx格式',
          type: 'warning'
        });
        return false;
      } else {
        // 更新获取文件名
        console.log(files);
      }
 
      const fileReader = new FileReader();
      fileReader.onload = ev => {
        try {
          const data = ev.target.result;
          const workbook = XLSX.read(data, {
            type: 'binary'
          });
          const wsname = workbook.SheetNames[0]; //取第一张表
          const ws = XLSX.utils.sheet_to_json(workbook.Sheets[wsname]); //生成json表格内容
          let list = [];
 
          ws.forEach(item => {
            list.push({
              itemName: item['零件编号'],
              itemDes: item['零件描述'],
              unit: item['单位'],
              price: item['单价'],
              weight: item['重量'],
              weightDifference: item['单个公差'],
              createLine: item['生产班线'],
              maxNum: item['装箱数量'],
              maxStorage: item['库容最大量'],
              minStorage: item['库容最小量'],
              overDueTime: item['超期时间(/天)']
            });
          });
          _this.ImportItemInfo(JSON.stringify(list));
        } catch (e) {
          return false;
        }
      };
      fileReader.readAsBinaryString(files);
    },
    //导入接口
    ImportItemInfo(list) {
      ImportItemInfo({ userName: getCache('userInfo').userName, items: list }).then(res => {
        if (res.code == 0) {
          this.$message({
            type: 'success',
            message: '导入成功'
          });
        } else {
          this.$message({
            type: 'warning',
            message: '导入失败!请按照模板填入内容'
          });
        }
      });
      this.itemSearch();
    },
    onOpenLimitModal() {
      this.limitModalVisible = true;
    }
  }
};
</script>
 
<style lang="scss" scoped>
#choose {
  .table {
    width: 100%;
    margin-top: 10px;
    height: calc(100% - 40px);
    overflow: hidden;
  }
}
</style>