From e4bb381c896015c4b87faa002ba6875c06a2fd16 Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期四, 26 十二月 2024 14:33:10 +0800
Subject: [PATCH] 同步检测中心cnas修改

---
 src/components/do/b3-work-time-management/work-time-statistics.vue |  137 ++++++++++++++++++++++++++-------------------
 1 files changed, 80 insertions(+), 57 deletions(-)

diff --git a/src/components/do/b3-work-time-management/work-time-statistics.vue b/src/components/do/b3-work-time-management/work-time-statistics.vue
index 8f32955..e0f5a48 100644
--- a/src/components/do/b3-work-time-management/work-time-statistics.vue
+++ b/src/components/do/b3-work-time-management/work-time-statistics.vue
@@ -44,21 +44,24 @@
         <el-button size="small" type="primary"  @click="handleUp" v-show="currentTable == 'value1'&&up">瀵� 鍏�</el-button>
       </div>
 		</div>
-    <el-radio-group v-model="currentTable" size="small" :key="'111'" style="margin-top: 10px;">
-      <el-radio-button label="value0">
-        鍘熷宸ユ椂
-      </el-radio-button>
-      <el-radio-button label="value1">
-        淇宸ユ椂
-      </el-radio-button>
-    </el-radio-group>
+    <div style="text-align: left">
+      <el-radio-group v-model="currentTable" size="small" :key="'111'" style="margin-top: 10px;">
+        <el-radio-button label="value0">
+          鍘熷宸ユ椂
+        </el-radio-button>
+        <el-radio-button label="value1">
+          淇宸ユ椂
+        </el-radio-button>
+      </el-radio-group>
+    </div>
     <div class="table">
       <ValueTable ref="ValueTable0"
-        v-if="currentTable == 'value0'"
+        v-if="currentTable == 'value0'" :isColumnWidth="true"
+                  :isShowZero="true"
 				:url="$api.auxiliaryOriginalHours.selectAuxiliaryOriginalHours"
 				:componentData="componentData" :key="upIndex" />
-      <ValueTable ref="ValueTable1"
-        v-if="currentTable == 'value1'"
+      <ValueTable ref="ValueTable1" :isShowZero="true"
+        v-if="currentTable == 'value1'" :isColumnWidth="true"
 				:url="$api.auxiliaryCorrectionHours.selectAuxiliaryCorrectionHours"
         :inputUrl="$api.auxiliaryCorrectionHours.upload"
 				:componentData="componentData0"
@@ -81,48 +84,48 @@
       down:false,
       up:false,
       componentData: {
-					entity: {
-						month: getYearAndMonthAndDays().split('-')[0]+'-'+getYearAndMonthAndDays().split('-')[1],
-						name: null,
-						departLims: null,
-					},
-					isIndex: true,
-					showSelect: false,
-					select: false,
-					do: [],
-					tagField: {},
-					linkEvent: {},
-					selectField: {},
-					requiredAdd: [],
-					requiredUp: [],
-          accept:聽'.xlsx',
-          inputType:聽'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
-          cellSpecialStyle:{
-            redColorByKey:'Hours'
-          }
+        entity: {
+          month: getYearAndMonthAndDays().split('-')[0]+'-'+getYearAndMonthAndDays().split('-')[1],
+          name: null,
+          departLims: null,
+        },
+        isIndex: true,
+        showSelect: false,
+        select: false,
+        do: [],
+        tagField: {},
+        linkEvent: {},
+        selectField: {},
+        requiredAdd: [],
+        requiredUp: [],
+        accept:聽'.xlsx',
+        inputType:聽'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
+        cellSpecialStyle:{
+          redColorByKey:'Hours'
+        },
 			},
       componentData0: {
-					entity: {
-						month: getYearAndMonthAndDays().split('-')[0]+'-'+getYearAndMonthAndDays().split('-')[1],
-						name: null,
-						departLims: null,
-						orderBy: {
-							field: 'id',
-							order: 'desc'
-						}
-					},
-					isIndex: true,
-					showSelect: false,
-					select: false,
-					do: [],
-					tagField: {},
-					linkEvent: {
-						},
-					selectField: {},
-					requiredAdd: [],
-					requiredUp: [],
-          accept:聽'.xlsx',
-          inputType:聽'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+        entity: {
+          month: getYearAndMonthAndDays().split('-')[0]+'-'+getYearAndMonthAndDays().split('-')[1],
+          name: null,
+          departLims: null,
+          orderBy: {
+            field: 'id',
+            order: 'desc'
+          }
+        },
+        isIndex: true,
+        showSelect: false,
+        select: false,
+        do: [],
+        tagField: {},
+        linkEvent: {
+        },
+        selectField: {},
+        requiredAdd: [],
+        requiredUp: [],
+        accept:聽'.xlsx',
+        inputType:聽'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
 			},
       entity:{
         month:getYearAndMonthAndDays(),
@@ -201,13 +204,33 @@
         // params:entity,
       },{responseType: "blob"}).then(res => {
         this.outLoading = false
-        this.$message.success('瀵煎嚭鎴愬姛')
         const blob = new Blob([res],{ type: 'application/octet-stream' });
-        const url = URL.createObjectURL(blob);
-        const link = document.createElement('a');
-        link.href = url;
-        link.download = entity.month+'宸ユ椂缁熻琛�.xlsx';
-        link.click();
+        //灏咮lob 瀵硅薄杞崲鎴愬瓧绗︿覆
+        let reader = new FileReader();
+        reader.readAsText(blob, 'utf-8');
+        reader.onload = () => {
+          try {
+            let result = JSON.parse(reader.result);
+            if (result.message) {
+              this.$message.error(result.message);
+            } else {
+              const url = URL.createObjectURL(blob);
+              const link = document.createElement('a');
+              link.href = url;
+              link.download = entity.month+'宸ユ椂缁熻琛�.xlsx';
+              link.click();
+              this.$message.success('瀵煎嚭鎴愬姛')
+            }
+          } catch (err) {
+            console.log(err);
+            const url = URL.createObjectURL(blob);
+            const link = document.createElement('a');
+            link.href = url;
+            link.download = entity.month+'宸ユ椂缁熻琛�.xlsx';
+            link.click();
+            this.$message.success('瀵煎嚭鎴愬姛')
+          }
+        }
       })
     },
     handleUp(){

--
Gitblit v1.9.3