From 8fd9e43b8ae22e64c62afee56c24df682f8c47c9 Mon Sep 17 00:00:00 2001
From: zhuo <2089219845@qq.com>
Date: 星期日, 16 三月 2025 15:57:54 +0800
Subject: [PATCH] 成品下单下载为pdf

---
 src/views/performance/manHour/workTimeStatistics.vue |   29 +++++++++++------------------
 1 files changed, 11 insertions(+), 18 deletions(-)

diff --git a/src/views/performance/manHour/workTimeStatistics.vue b/src/views/performance/manHour/workTimeStatistics.vue
index daffdf6..8f7dc37 100644
--- a/src/views/performance/manHour/workTimeStatistics.vue
+++ b/src/views/performance/manHour/workTimeStatistics.vue
@@ -37,20 +37,16 @@
         </div>
       </div>
       <div class="table">
-        <TableCard :showForm="false" :showTitle="false">
-          <template v-slot:table>
-            <limsTable
-              :column="tableColumn"
-              :table-data="tableData"
-              :table-loading="tableLoading"
-              :page="page"
-              style="padding: 0 15px"
-              :height="'calc(100vh - 290px)'"
-              @pagination="pagination"
-            >
-            </limsTable>
-          </template>
-        </TableCard>
+        <limsTable
+          :column="tableColumn"
+          :table-data="tableData"
+          :table-loading="tableLoading"
+          :page="page"
+          style="padding: 0 15px"
+          :height="'calc(100vh - 290px)'"
+          @pagination="pagination"
+        >
+        </limsTable>
       </div>
     </div>
   </div>
@@ -58,13 +54,11 @@
 
 <script>
 import { getYearAndMonthAndDays } from "@/utils/date";
-import TableCard from "@/components/TableCard/index.vue";
 import limsTable from "@/components/Table/lims-table.vue";
 import { selectAuxiliaryAllByMonth } from "@/api/performance/manHour";
 export default {
   components: {
-    limsTable,
-    TableCard,
+    limsTable
   },
   data() {
     return {
@@ -118,7 +112,6 @@
       selectAuxiliaryAllByMonth(this.queryParams)
         .then((res) => {
           this.tableLoading = false;
-          if (res.code === 201) return;
           this.tableData = res.data;
         })
         .catch(() => {

--
Gitblit v1.9.3