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 @@ + style="display: inline-block;position: relative;top: 3px;left: 12px;margin-right: 24px;" multiple> @@ -91,7 +91,9 @@ @@ -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,