diff --git a/src/layout/workSummary.vue b/src/layout/workSummary.vue
index 81475bf..b43924f 100644
--- a/src/layout/workSummary.vue
+++ b/src/layout/workSummary.vue
@@ -11,8 +11,10 @@
:suffix-icon="Search" />
-
+
搜索
@@ -81,6 +83,7 @@ export default {
goodsIdQuery: '',
standIdQuery: '',
workDateQuery: null,
+ workEndDateQuery: null,
shortcuts: [
{
text: '今天',
@@ -129,6 +132,7 @@ export default {
goodsId: this.goodsIdQuery.trim(),
lackStatus: this.lackStatusQuery == -99 ? null : this.lackStatusQuery,
workDate: timeFormatter(this.workDateQuery),
+ workEndDate: timeFormatter(this.workEndDateQuery),
userName: store.getters.getUserName
}
getWorkSummary(request).then(res => {
@@ -192,6 +196,7 @@ export default {
goodsId: this.goodsIdQuery.trim(),
lackStatus: this.lackStatusQuery == -99 ? null : this.lackStatusQuery,
workDate: timeFormatter(this.workDateQuery),
+ workEndDate: timeFormatter(this.workEndDateQuery),
userName: store.getters.getUserName
}
downloadWorkSummaryExcel(request).then(res => {