Browse Source

1225

master
lichong 3 months ago
parent
commit
5a4b711654
  1. 2
      package.json
  2. 17
      src/renderer/src/views/sale.vue

2
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",

17
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,

Loading…
Cancel
Save