From 02bc3bfe47e3d5311a0bb041c94e70a34b1ca73c Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期二, 09 四月 2024 09:03:01 +0800
Subject: [PATCH] git ch
---
company/src/components/enterprise/importEmployees.vue | 71 ++++++++++++++++++++++++++++++++---
1 files changed, 64 insertions(+), 7 deletions(-)
diff --git a/company/src/components/enterprise/importEmployees.vue b/company/src/components/enterprise/importEmployees.vue
index ccba938..72e8cb1 100644
--- a/company/src/components/enterprise/importEmployees.vue
+++ b/company/src/components/enterprise/importEmployees.vue
@@ -1,43 +1,100 @@
<template>
<GlobalWindow
:title="title"
- width="100%"
+ width="30%"
:visible.sync="visible"
:confirm-working="isWorking"
@confirm="confirm"
>
<el-form class="demo-form-inline">
<el-form-item label="涓婁紶鍚嶅崟" required>
- <el-button type="primary" @click="clickRef">鐐瑰嚮涓婁紶</el-button>
- <el-button type="text">鍚嶅崟妯℃澘.EXCEL</el-button>
+ <div style="width: 100%;display: flex;align-items: center;">
+ <el-button type="primary" @click="clickRef">鐐瑰嚮涓婁紶</el-button>
+ <el-button type="text" @click="exportTemplate">鍚嶅崟妯℃澘.EXCEL</el-button>
+ </div>
+ <div style="font-size: 14px; color: black;" v-if="fileName">{{fileName}}</div>
</el-form-item>
</el-form>
- <input type="file" accept=".excel" ref="fileExcel" @change="result" />
+ <input type="file" style="position: fixed; left: 0; top: -50px;" accept=".xlsx" ref="fileExcel" @change="result" />
</GlobalWindow>
</template>
<script>
import BaseOpera from '@/components/base/BaseOpera'
import GlobalWindow from '@/components/common/GlobalWindow'
+ import { importExcel } from '@/api/business/member'
export default {
name: 'importEmployees',
extends: BaseOpera,
components: { GlobalWindow },
data () {
return {
- list: []
+ list: [],
+ price: 0,
+ type: null,
+ solutionId: null,
+ addList: [],
+ fileName: ''
}
},
methods: {
- open (title, arr) {
+ open (title, obj) {
this.title = title
+ this.addList = []
+ this.fileName = ''
+ this.type = obj.type
this.visible = true
+ this.solutionId = obj.solutionId
+ this.list = obj.arr
+ this.price = obj.price
+ },
+ // 瀵煎嚭妯℃澘
+ exportTemplate () {
+ // 鎶曚繚鐢宠
+ if (this.type === 1) {
+ window.open(process.env.VUE_APP_MEMBER1_URL)
+ } else {
+ window.open(process.env.VUE_APP_MEMBER_URL)
+ }
},
clickRef () {
this.$refs.fileExcel.click()
},
result (e) {
- console.log(e)
+ const data = new FormData()
+ data.append('file', e.target.files[0])
+ data.append('solutionId', this.solutionId)
+ importExcel(data)
+ .then(res => {
+ res.forEach(item => {
+ item.memberName = item.name
+ item.fee = ''
+ })
+ this.addList = res
+ this.fileName = e.target.files[0].name
+ })
+ .catch(err => {
+ this.$message.error(err)
+ this.fileName = ''
+ })
+ .finally(() => {
+ this.$refs.fileExcel.value = null
+ })
+ },
+ confirm () {
+ for (let i = 0; i < this.addList.length; i++) {
+ for (let a = 0; a < this.list.length; a++) {
+ if (this.addList[i].idCard === this.list[a].idcardNo) {
+ this.$message.warning(`[${this.addList[i].name}]鍛樺伐閲嶅`)
+ return
+ }
+ }
+ }
+ this.addList.forEach(item => {
+ item.fee = this.price || ''
+ })
+ this.$emit('result', this.addList)
+ this.visible = false
}
}
}
--
Gitblit v1.9.3