From 5a4b711654681df07c76c91a755542a4760c0a2f Mon Sep 17 00:00:00 2001
From: lichong <18518571399@163.com>
Date: Wed, 25 Dec 2024 17:05:04 +0800
Subject: [PATCH] 1225

---
 package.json                    |  2 +-
 src/renderer/src/views/sale.vue | 17 +++++++++++------
 2 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/package.json b/package.json
index 4f0f5f7..8ff5020 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "electron",
-  "version": "1.0.0",
+  "version": "1.0.1",
   "description": "An Electron application with Vue",
   "main": "./out/main/index.js",
   "author": "lichong",
diff --git a/src/renderer/src/views/sale.vue b/src/renderer/src/views/sale.vue
index 0c3ce9a..6e07f4c 100644
--- a/src/renderer/src/views/sale.vue
+++ b/src/renderer/src/views/sale.vue
@@ -79,7 +79,7 @@
         </el-select>
         <el-upload :show-file-list="false" v-model="fileOriData" :before-upload="beforeAvatarUpload"
           :http-request="successSubmit" accept=".xls,.xlsx,.csv"
-          style="display: inline-block;position: relative;top: 3px;left: 12px;margin-right: 24px;">
+          style="display: inline-block;position: relative;top: 3px;left: 12px;margin-right: 24px;" multiple>
           <el-button type="success" size="large">
             <el-icon>
               <Upload />
@@ -91,7 +91,9 @@
       <template #footer>
         <div>
           <el-button @click="cancelDialog">取消</el-button>
-          <el-button type="primary" @click="submitImport"> 确认 </el-button>
+          <el-button type="primary" @click="submitImport" :disabled="importCount === 0">
+            确认({{ importCount }})
+          </el-button>
         </div>
       </template>
     </el-dialog>
@@ -268,10 +270,13 @@ export default {
       tableName: "",
       loading: false,
       fileOriData: null,
+      importCount: 0,
     }
   },
   methods: {
     openImport() {
+      this.importCount = 0
+      this.fileData = []
       this.importShow = true
     },
     beforeAvatarUpload(rawFile) {
@@ -291,14 +296,13 @@ export default {
       let file = opts.file
       this.fileDealData = []
       let fileReader = new FileReader()
-
       fileReader.onload = async function (e) {
         let data = this.result
         let workbook = XLSX.read(data, { type: 'binary' })
         let sheetName = workbook.SheetNames[0]
         let sheetData = XLSX.utils.sheet_to_json(workbook.Sheets[sheetName])
-        that.fileData = _.cloneDeep(sheetData)
-
+        that.fileData = _.concat(that.fileData, sheetData)
+        that.importCount++
       }
       fileReader.onerror = function (error) {
         ElMessage({
@@ -363,11 +367,12 @@ export default {
     async pageChange({ pageSize, currentPage }) {
       this.pageVO.currentPage = currentPage
       this.pageVO.pageSize = pageSize
-      console.log(186, this.pageVO);
       await this.updateSeach()
     },
     //关闭模态框
     cancelDialog() {
+      this.importCount = 0
+      this.fileData = []
       this.importShow = false
       this.dialogFrom = {
         visible: false,