|
|
@@ -309,6 +309,19 @@
|
|
309
|
309
|
this.currentPage = 1
|
|
310
|
310
|
this.getTableData()
|
|
311
|
311
|
},
|
|
|
312
|
+ getPltList(){
|
|
|
313
|
+ const replaceResult = this.query.plateNo.replace(/[;,,;\s\r\n]+/g, ",").split(",");
|
|
|
314
|
+ this.query.plateNo = replaceResult;
|
|
|
315
|
+ },
|
|
|
316
|
+ getConList(){
|
|
|
317
|
+ const replaceResult = this.query.contractNo.replace(/[;,,;\s\r\n]+/g, ",").split(",");
|
|
|
318
|
+ console.log( this.query.contractNo,replaceResult)
|
|
|
319
|
+ this.query.contractNo = replaceResult;
|
|
|
320
|
+ },
|
|
|
321
|
+ getOrdList(){
|
|
|
322
|
+ const replaceResult = this.query.ordNo.replace(/[;,,;\s\r\n]+/g, ",").split(",");
|
|
|
323
|
+ this.query.ordNo = replaceResult;
|
|
|
324
|
+ },
|
|
312
|
325
|
showMaterial() {
|
|
313
|
326
|
this.$refs.PopupMaterial.show()
|
|
314
|
327
|
},
|