diff --git a/src/views/material/back/component/home.vue b/src/views/material/back/component/home.vue index 90ae08e2..575c562b 100644 --- a/src/views/material/back/component/home.vue +++ b/src/views/material/back/component/home.vue @@ -131,10 +131,10 @@ @click="handleSee(scope.row)" >查看 编辑 提交 { diff --git a/src/views/material/purchase/goodsAccept/detail.vue b/src/views/material/purchase/goodsAccept/detail.vue index 8ff1a66d..9ea918ad 100644 --- a/src/views/material/purchase/goodsAccept/detail.vue +++ b/src/views/material/purchase/goodsAccept/detail.vue @@ -448,7 +448,6 @@ export default { this.queryParams.id = this.Id; this.queryParams.taskId = this.taskId; this.queryParams.taskStage = 2; - this.queryParams.statusList = [2, 12]; getPurchaseDetailsList(this.queryParams).then((response) => { this.tableList = response.data.purchaseCheckDetailsList; this.tableList.forEach((item) => { diff --git a/src/views/material/purchase/goodsAccept/index.vue b/src/views/material/purchase/goodsAccept/index.vue index 43e68f62..1eab54ac 100644 --- a/src/views/material/purchase/goodsAccept/index.vue +++ b/src/views/material/purchase/goodsAccept/index.vue @@ -43,7 +43,7 @@ - + {{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }} - + - - - + + + - - + + @@ -124,156 +124,81 @@ /> - +
-
+
机具设备到货验收单
-
-
+
+
单据编号:{{printData.code}}
+ style="width: 50%;flex-shrink: 0;margin-bottom: 5px;font-size: 14px;"> 生产厂家(供应商):{{printData.supplierName}} -
- +
+ style="width: 50%;flex-shrink: 0;margin-bottom: 5px;font-size: 14px;"> 到货日期:{{printData.arrivalDate}}
- + - - - - + + + + - - + + - - + + - - - - - - - - + -
-
-
+
+
+
供应科:
+
+
+ +
+
+
-
-
+
+
生产技术科:
+
+
+ +
+
+
- -
-
- 库管班:{{printData.warehouseTeam}} +
+
库管班:
+
+
+ +
+
+ +
+
@@ -293,9 +218,11 @@ import { getPurchaseList,acceptOuterVerify,getPurchaseCheckFormByTaskId } from "@/api/purchase/goodsAccept"; import { downloadFile } from '@/utils/download' import { getToken } from '@/utils/auth' + import vueEasyPrint from "vue-easy-print"; export default { name: "GoodsAcceptList", dicts: ['purchase_task_status'], + components: { vueEasyPrint }, data() { return { // 遮罩层 @@ -354,7 +281,6 @@ this.queryParams.endTime=undefined } this.queryParams.taskStage= 2 - this.queryParams.statusList=[2,12] getPurchaseList(this.queryParams).then(response => { this.tableList = response.data.rows; this.total = response.data.total; @@ -444,7 +370,7 @@ handleExport() { this.download( "/material/purchase_check_info/export", - { ...this.queryParams,statusList:[2,12],taskStage: 2 }, + { ...this.queryParams,taskStage: 2 }, `新购到货验收_${new Date().getTime()}.xlsx` ); }, @@ -454,6 +380,21 @@ };