diff --git a/src/views/material/part/partAccept/index.vue b/src/views/material/part/partAccept/index.vue index 9d63d8bd..bd8c260b 100644 --- a/src/views/material/part/partAccept/index.vue +++ b/src/views/material/part/partAccept/index.vue @@ -442,7 +442,7 @@ import { getToken } from '@/utils/auth' const currentTime = formatTime(new Date()); this.download( "/material/part_arrived/export", - { ...this.queryParams}, + { ...this.queryParams, taskStage: 2}, `配件新购到货_${currentTime}.xlsx` ); }, diff --git a/src/views/material/part/partAcceptTwo/index.vue b/src/views/material/part/partAcceptTwo/index.vue index 00b5407f..4f7a1194 100644 --- a/src/views/material/part/partAcceptTwo/index.vue +++ b/src/views/material/part/partAcceptTwo/index.vue @@ -455,7 +455,7 @@ import { getToken } from '@/utils/auth' const currentTime = formatTime(new Date()); this.download( "/material/part_arrived/export", - { ...this.queryParams}, + { ...this.queryParams, taskStage: 2}, `配件新购到货_${currentTime}.xlsx` ); }, diff --git a/src/views/material/part/partArrived/component/home.vue b/src/views/material/part/partArrived/component/home.vue index a736c41b..b4cea269 100644 --- a/src/views/material/part/partArrived/component/home.vue +++ b/src/views/material/part/partArrived/component/home.vue @@ -675,7 +675,7 @@ export default { const currentTime = formatTime(new Date()); this.download( "/material/part_arrived/export", - { ...this.queryParams}, + { ...this.queryParams, taskStage: 1}, `配件新购到货__${currentTime}.xlsx` ); },