Browse Source

删除多余的查询 20260323

master
Rui_Li 3 weeks ago
parent
commit
464d23eca8
  1. 13
      src/views/modules/finishedProductWarehouse/boxingPrint.vue
  2. 12546
      yarn.lock

13
src/views/modules/finishedProductWarehouse/boxingPrint.vue

@ -148,7 +148,7 @@ export default {
orderNo: '',
itemCode: '',
endDate: this.dayjs().format('YYYY-MM-DD 23:59:59'),
startDate: '',
startDate: this.dayjs().subtract(7, 'day').format('YYYY-MM-DD 00:00:00'),
},
reportFileVo: '',
boxNumber: 0,
@ -463,7 +463,7 @@ export default {
this.getAutoHeight()
},
activated() {
this.searchList()
//this.searchList()
},
methods: {
@ -527,6 +527,15 @@ export default {
},
//
searchList() {
//
if (this.queryData.startDate == null || this.queryData.startDate == '') {
this.$message.error('Satrt Date Can Not Be Empty!');
return false;
}
if (this.queryData.endDate == null || this.queryData.endDate == '') {
this.$message.error('End Date Can Not Be Empty!');
return false;
}
getSoBoxingList(this.queryData).then(({data}) => {
this.dataList = data.data
})

12546
yarn.lock
File diff suppressed because it is too large
View File

Loading…
Cancel
Save