1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
<template>
<div class="app-data-upload-view" element-loading-background="rgba(57, 57, 57, 0.2)">
<input
ref="inputUpLoad"
type="file"
style="display: none"
accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
@change="fileChange"
/>
<div class="main-content">
<div v-if="!selectedFile" class="upload-container" @click="handleUpLoad">
<img class="icon-import" src="@/assets/img/icon-import.svg" />
<span class="select-file-text">{{ $t('components.appdatauploadview.selectfile') }}</span>
</div>
<div v-else class="data-info-container">
<div v-if="!isUploaded" class="message-container">
<div class="success-list" v-if="!isUploading">
{{ $t('components.appdatauploadview.selectfilesucess') }}
</div>
<div class="success-list" v-if="isUploading">
导入过程中,请稍候
</div>
</div>
<div v-else class="message-container">
<div class="result-list" v-if="Object.keys(responseResult).length > 0">
<ul>
<li class="title"><span>{{ $t('components.appdatauploadview.importresult') }}</span></li>
<li>
<span>
{{ $t('components.appdatauploadview.totaldata') }} {{ responseResult.total }} {{ $t('components.appdatauploadview.total') }},{{ $t('app.commonwords.wrong') }}[{{ responseResult.error }}],{{ $t('app.commonwords.success') }}[{{ responseResult.success }}]
</span>
</li>
<template
v-if="responseResult.errorInfos && responseResult.errorInfos.length !== 0">
<li class="title"><span>{{ $t('components.appdatauploadview.errorinfo') }}</span></li>
<li class="error-item" v-for="(item, index) in responseResult.errorInfos" :key="index">
<span v-if="item.index">{{ $t('components.appdatauploadview.start') }} {{item.index}} {{ $t('components.appdatauploadview.row') }}:</span><span v-html="item.errorinfo"></span>
</li>
</template>
</ul>
</div>
</div>
</div>
</div>
<el-row class="second-content">
<el-col>
<div class="import-template-message">{{ $t('components.appdatauploadview.datatemplatemessage') }}</div>
<div class="import-template">
<img class="icon-link" src="@/assets/img/icon-link.svg" />
<span style="cursor: pointer" @click="downloadTemp">
{{ this.viewparams.appDeLogicName + $t('components.appdatauploadview.datatemplate') }}</span
>
</div>
</el-col>
<div class="import-template-download-info" v-if="isUploaded && responseResult.errorfile" @click="downloadFeedbackMsg">
{{ $t('components.appdatauploadview.downloadinfo') }}
</div>
</el-row>
<el-row class="button-container">
<el-button type="primary" @click="handleCancel">{{ $t('components.appdatauploadview.cancel') }}</el-button>
<el-button
:disabled="!selectedFile"
:loading="isUploading"
type="primary"
class="primary-button"
@click="uploadServer"
>{{ $t('components.appdatauploadview.uploadserver') }}</el-button
>
</el-row>
</div>
</template>
<script lang="ts">
import axios from 'axios';
import { AppServiceBase, Util } from 'ibiz-core';
import { Vue, Component, Prop, Watch } from 'vue-property-decorator';
@Component({})
export default class AppDataUploadView extends Vue {
/**
* 传入视图参数
*
* @type {string}
* @memberof AppDataUploadView
*/
@Prop() protected dynamicProps!: string;
/**
* 视图参数
*
* @type {*}
* @memberof AppDataUploadView
*/
protected viewparams: any = {};
/**
* 视图上下文
*
* @type {*}
* @memberof AppDataUploadView
*/
protected viewdata: any = {};
/**
* 是否忽略错误
*
* @type {boolean}
* @memberof AppDataUploadView
*/
protected ignoreError: boolean = false;
/**
* 选择文件数据
*
* @type {*}
* @memberof AppDataUploadView
*/
protected selectedFile: any | null = null;
/**
* 是否上传完成
*
* @type {boolean}
* @memberof AppDataUploadView
*/
protected isUploaded: boolean = false;
/**
* 上传进度
*
* @type {number}
* @memberof AppDataUploadView
*/
protected uploadedProgress: number = 0;
/**
* 是否上传过程中
*
* @type {boolean}
* @memberof AppDataUploadView
*/
protected isUploading: boolean = false;
/**
* 导入结果集合
*
* @type {Array<*>}
* @memberof AppDataUploadView
*/
protected responseResult: any = {};
/**
* 视图参数变化
*
* @param {*} newVal
* @param {*} oldVal
* @memberof AppDataUploadView
*/
@Watch('dynamicProps', { immediate: true, deep: true })
onParamData(newVal: any, oldVal: any) {
if (newVal) {
this.viewparams = eval('(' + newVal.viewparam + ')');
this.viewdata = eval('(' + newVal.viewdata + ')');
this.ignoreError = this.viewparams?.ignoreError;
}
}
/**
* 选择文件
*
* @memberof AppDataUploadView
*/
public handleUpLoad() {
(this.$refs.inputUpLoad as any).click();
}
/**
* 取消
*
* @memberof AppDataUploadView
*/
public handleCancel() {
this.$emit('close', []);
}
/**
* 文件数据变化
*
* @memberof AppDataUploadView
*/
public fileChange($event: any) {
let obj = $event.target || $event.srcElement;
if (!obj.files) {
return;
}
this.selectedFile = obj.files?.[0];
}
/**
* 设置UI状态
*
* @memberof AppDataUploadView
*/
public setUIState(uploadedProgress: number, isUploading: boolean, isUploaded: boolean, result: any = {}) {
this.uploadedProgress = uploadedProgress;
this.isUploading = isUploading;
this.isUploaded = isUploaded;
this.responseResult = result;
}
/**
* 下载导入数据模板
*
* @memberof AppDataUploadView
*/
public downloadTemp() {
let requestUrl: string = '';
if (this.viewdata && this.viewdata.srfparentkey && this.viewdata.srfparentdename && this.viewdata.srfparentdename !== this.viewdata.appEntityName) {
requestUrl += `/${Util.srfpluralize(this.viewdata.srfparentdename)}/${this.viewdata.srfparentkey}`;
}
requestUrl += `/${Util.srfpluralize(this.viewparams.serviceName)}/importtemplate`;
if (this.viewparams.importId) {
requestUrl += `?srfimporttag=${this.viewparams.importId}`;
}
axios({
url: requestUrl,
method: 'get',
responseType: 'blob',
}).then((response: any) => {
if (response.status == 200) {
let fileName = response.headers['content-disposition']
.split(';')
.find((str: string) => str.indexOf('filename=') != -1)
?.slice(9);
fileName = decodeURIComponent(fileName);
let blob = new Blob([response.data], { type: 'application/vnd.ms-excel' });
let elink = document.createElement('a');
elink.download = fileName;
elink.style.display = 'none';
elink.href = URL.createObjectURL(blob);
document.body.appendChild(elink);
elink.click();
URL.revokeObjectURL(elink.href); // 释放URL 对象
document.body.removeChild(elink);
}
});
}
/**
* 下载导入反馈信息
*
* @memberof AppDataUploadView
*/
public downloadFeedbackMsg() {
if(!this.responseResult || !this.responseResult.errorfile || !this.responseResult.errorfile.fileid){
this.$throw(this.$t('components.appdatauploadview.downloaderror'));
return;
}
let downloadUrl: string = `${AppServiceBase.getInstance().getAppEnvironment().ExportFile}/${this.responseResult.errorfile.folder}/${this.responseResult.errorfile.fileid}`;
const headers = {};
axios({
method: 'get',
url: downloadUrl,
headers: headers,
responseType: 'blob'
}).then((response: any) => {
if (!response || response.status != 200) {
this.$throw(this.$t('components.appdatauploadview.downloaderror'));
return;
}
// 请求成功,后台返回的是一个文件流
if (response.data) {
// 获取文件名
const filename = `导入错误${this.responseResult.errorfile.fileid}.xlsx`;
let filetype = this.calcFilemime('xlsx');
// 用blob对象获取文件流
let blob = new Blob([response.data], { type: filetype });
// 通过文件流创建下载链接
var href = URL.createObjectURL(blob);
// 创建一个a元素并设置相关属性
let a = document.createElement('a');
a.href = href;
a.download = filename;
// 添加a元素到当前网页
document.body.appendChild(a);
// 触发a元素的点击事件,实现下载
a.click();
// 从当前网页移除a元素
document.body.removeChild(a);
// 释放blob对象
URL.revokeObjectURL(href);
} else {
this.$throw(this.$t('components.appfileupload.downloaderror'));
}
}).catch((error: any) => {
console.error(error);
});
}
/**
* 计算文件mime类型
*
* @param filetype 文件后缀
* @memberof AppDataUploadView
*/
public calcFilemime(filetype: string): string {
let mime = "application/vnd.ms-excel";
switch (filetype) {
case ".xlsx":
mime = "application/vnd.ms-excel";
break;
case ".wps":
mime = "application/kswps";
break;
case ".doc":
mime = "application/msword";
break;
case ".docx":
mime = "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
break;
case ".txt":
mime = "text/plain";
break;
case ".zip":
mime = "application/zip";
break;
case ".png":
mime = "image/png";
break;
case ".gif":
mime = "image/gif";
break;
case ".jpeg":
mime = "image/jpeg";
break;
case ".jpg":
mime = "image/jpeg";
break;
case ".rtf":
mime = "application/rtf";
break;
case ".avi":
mime = "video/x-msvideo";
break;
case ".gz":
mime = "application/x-gzip";
break;
case ".tar":
mime = "application/x-tar";
break;
}
return mime;
}
/**
* 上传服务器
*
* @memberof AppDataUploadView
*/
public uploadServer() {
if (!this.selectedFile) {
return;
}
try {
let requestUrl: string = '';
this.setUIState(0, true, false);
if (this.viewdata && this.viewdata.srfparentkey && this.viewdata.srfparentdename) {
requestUrl += `/${Util.srfpluralize(this.viewdata.srfparentdename)}/${this.viewdata.srfparentkey}`;
}
requestUrl += `/${Util.srfpluralize(this.viewparams.serviceName)}/importdata2`;
if (this.viewparams.importId) {
requestUrl += `?srfimporttag=${this.viewparams.importId}`;
}
const data = new FormData();
data.append('file', this.selectedFile);
axios
.post(requestUrl, data, {
headers: { 'Content-Type': 'multipart/form-data' },
onUploadProgress: (progressEvent: any) => {
this.uploadedProgress = Math.floor((progressEvent.loaded / progressEvent.total) * 100);
},
})
.then((res: any) => {
const result: any = {};
if (res && res.status && res.status == 200) {
const { data: data } = res;
const {errorinfo,success,total,errorfile} = data;
result.total = total ? Number(total) : 0;
result.success = success ? Number(success) : 0;
result.errorfile = errorfile;
if(errorinfo && Object.keys(errorinfo).length >0){
result.error = Object.keys(errorinfo).length;
result.errorInfos = [];
Object.keys(errorinfo).forEach((item:any) =>{
result.errorInfos.push({index: Number(item) + 1, errorinfo: errorinfo[item].errorInfo});
})
}
}
this.setUIState(0, false, true, result);
}).catch((error: any) => {
const errorResult: any = {};
if (error && error.status && error.status !== 200) {
errorResult.errorInfos = [];
errorResult.errorInfos.push({ errorInfo: error.data?.message });
}
this.setUIState(0, false, true, errorResult);
});
} catch (error: any) {
this.setUIState(0, false, true, { errorInfos:[{errorInfo: error.data}] });
}
}
}
</script>
<style lang='less'>
@import './app-data-upload.less';
</style>