2020-02-26 15:38:56 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<el-dropdown split-button type="primary" size="mini">
|
|
|
|
|
|
<slot name="optionZone" class="option-button"></slot>
|
|
|
|
|
|
<el-dropdown-menu slot="dropdown">
|
2020-02-28 15:57:23 +08:00
|
|
|
|
<el-dropdown-item @click.native="showImportBox(1)" class="dropdown-content"><i class="el-icon-upload2"></i>{{$t('overall.importExcelLower')}}</el-dropdown-item>
|
|
|
|
|
|
<el-dropdown-item @click.native="showImportBox(2)" class="dropdown-content"><i class="el-icon-download"></i>{{$t('overall.exportExcelLower')}}</el-dropdown-item>
|
2020-02-26 15:38:56 +08:00
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
|
</el-dropdown>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2020-02-28 15:57:23 +08:00
|
|
|
|
<el-dialog :visible.sync="importBox.show" :title="importBox.title" :modal-append-to-body='false' :show-close="true" :width="importBox.width" @close="closeDialog" >
|
2020-02-26 15:38:56 +08:00
|
|
|
|
<div v-if="importBox.type==1">
|
|
|
|
|
|
<div class="upload-body">
|
|
|
|
|
|
<el-upload class="upload-demo" ref="uploadExcel" action="" :file-list="importFileList" :on-change="importChange" :auto-upload="false" accept=".xlsx,.xls">
|
|
|
|
|
|
<div slot="tip" class="el-upload__tip" >{{$t('overall.importTip')}}</div>
|
|
|
|
|
|
<button type="button" class="nz-btn nz-btn-size-normal nz-btn-style-normal">
|
|
|
|
|
|
<span class="top-tool-btn-txt" >{{$t('overall.upload')}}</span>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</el-upload>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div slot="footer" class="footer">
|
2020-02-28 15:57:23 +08:00
|
|
|
|
<div class="el-message-box__btns" style="text-align: right;">
|
|
|
|
|
|
<button @click="downloadTemplate" class="el-button el-button--default el-button--small">
|
2020-02-26 15:38:56 +08:00
|
|
|
|
<span>{{$t('overall.template')}}</span>
|
|
|
|
|
|
</button>
|
2020-02-28 15:57:23 +08:00
|
|
|
|
<button @click="importExcel" class="el-button el-button--default el-button--small">
|
2020-02-26 15:38:56 +08:00
|
|
|
|
<span>{{$t('overall.importExcel')}}</span>
|
|
|
|
|
|
</button>
|
2020-02-28 15:57:23 +08:00
|
|
|
|
<button @click="closeDialog" class="el-button el-button--default el-button--small" >
|
|
|
|
|
|
<span>{{$t('overall.cancel')}}</span>
|
|
|
|
|
|
</button>
|
2020-02-26 15:38:56 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div v-if="importBox.type == 2">
|
|
|
|
|
|
<div class="upload-body">
|
|
|
|
|
|
<button @click="exportCur" class="nz-btn nz-btn-size-normal nz-btn-style-light nz-btn-min-width-100">
|
|
|
|
|
|
<span>{{$t('overall.exportCur')}}</span>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<button @click="exportAll" class="nz-btn nz-btn-size-normal nz-btn-style-light nz-btn-min-width-100">
|
|
|
|
|
|
<span>{{$t('overall.exportAll')}}</span>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div slot="footer" class="footer">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div v-if="importBox.type==3">
|
|
|
|
|
|
<div class="upload-body result-body">
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<span class="result-title">{{$t('overall.result.total')}}:</span>
|
|
|
|
|
|
<span>{{importResult&&importResult.totalNum?importResult.totalNum:0}}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<span class="result-title">{{$t('overall.result.failed')}}:</span>
|
|
|
|
|
|
<span>{{importResult&&importResult.failNum?importResult.failNum:0}}</span>
|
|
|
|
|
|
<span class="result-title">{{$t('overall.result.success')}}:</span>
|
|
|
|
|
|
<span>{{importResult&&importResult.successNum?importResult.successNum:0}}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div class="result-title">{{$t('overall.result.failedDetail')}}:</div>
|
|
|
|
|
|
<div class="result-detail" v-if="importResult&&importResult.failDetail">
|
|
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="(item,index) in importResult.failDetail"><span>{{item.lineNo}}</span>:<span>{{item.errorMsg}}</span> </li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div slot="footer" class="footer">
|
2020-02-28 15:57:23 +08:00
|
|
|
|
<div class="el-message-box__btns">
|
|
|
|
|
|
<button @click="rollbackImport" class="el-button el-button--default el-button--small">
|
2020-02-26 15:38:56 +08:00
|
|
|
|
<span>{{$t('overall.rollbackImport')}}</span>
|
|
|
|
|
|
</button>
|
2020-02-28 15:57:23 +08:00
|
|
|
|
<button @click="closeDialog" class="el-button el-button--default el-button--small">
|
2020-02-26 15:38:56 +08:00
|
|
|
|
<span>{{$t('overall.cancel')}}</span>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import axios from 'axios'
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: "exportXLSX",
|
|
|
|
|
|
props:{
|
|
|
|
|
|
exportUrl:{type:String,required:true},
|
|
|
|
|
|
params:{type:Object},
|
|
|
|
|
|
exportFileName:{type:String},
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
data:function(){
|
|
|
|
|
|
return {
|
|
|
|
|
|
importBox:{show:false,title:this.$t('overall.importExcel'),type:1},
|
|
|
|
|
|
importFile:null,
|
|
|
|
|
|
importFileList:[],
|
|
|
|
|
|
importResult:null,
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
created(){
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
importChange:function(file,fileList){
|
|
|
|
|
|
if (fileList.length > 0) {
|
|
|
|
|
|
this.importFileList = [fileList[fileList.length - 1]]
|
|
|
|
|
|
}
|
|
|
|
|
|
this.importFile = this.importFileList[0];
|
|
|
|
|
|
this.validateFile();
|
|
|
|
|
|
},
|
|
|
|
|
|
validateFile:function(){
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
rollbackImport:function(){
|
|
|
|
|
|
this.$delete('/asset/cancelImport?seq='+this.importResult.seq).then(response=>{
|
|
|
|
|
|
if(response.code == 200 ){
|
|
|
|
|
|
this.$message({duration: 2000, type: 'success', message: this.$t("tip.saveSuccess")});
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.$message.error(response.msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
importExcel:function(){
|
|
|
|
|
|
if(this.importFile && this.importFile.raw){
|
|
|
|
|
|
let form = new FormData();
|
|
|
|
|
|
form.append('assetsExcelFile',this.importFile.raw);
|
|
|
|
|
|
this.$post('/asset/import',form,{'Content-Type': 'multipart/form-data'}).then(response=>{
|
|
|
|
|
|
if(response.code==200 && response.msg=='success'){
|
|
|
|
|
|
this.importResult=response.data;
|
|
|
|
|
|
this.$emit('afterImport')
|
|
|
|
|
|
this.importBox.type=3;
|
|
|
|
|
|
this.importBox.width='600px';
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
closeDialog:function(){
|
|
|
|
|
|
this.importBox.show=false;
|
|
|
|
|
|
this.importResult=null;
|
|
|
|
|
|
this.importFileList=[];
|
|
|
|
|
|
this.importFile=null;
|
|
|
|
|
|
},
|
|
|
|
|
|
downloadTemplate:function(){
|
|
|
|
|
|
let language=localStorage.getItem('nz-language-' + localStorage.getItem('nz-username')) || 'en'; //初始未选择默认 en 英文
|
|
|
|
|
|
let fileName=this.exportFileName+'-'+'template'+'.xlsx';
|
|
|
|
|
|
let xmlHttp = new XMLHttpRequest();
|
|
|
|
|
|
xmlHttp.responseType = "blob";
|
|
|
|
|
|
xmlHttp.onload=function(){
|
|
|
|
|
|
if(this.status === 200){
|
|
|
|
|
|
let blob=this.response;
|
|
|
|
|
|
let reader = new FileReader();
|
|
|
|
|
|
reader.readAsDataURL(blob); // 转换为base64,可以直接放入a标签href
|
|
|
|
|
|
reader.onload = function(e) {
|
|
|
|
|
|
// 转换完成后创建a标签下载
|
|
|
|
|
|
let a = document.createElement('a');
|
|
|
|
|
|
a.download = fileName;
|
|
|
|
|
|
a.href = e.target.result;
|
|
|
|
|
|
document.body.appendChild(a);
|
|
|
|
|
|
a.click();
|
|
|
|
|
|
a.remove();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
xmlHttp.open("GET",'/static/template/'+language+'/'+fileName,true);
|
|
|
|
|
|
xmlHttp.send();
|
|
|
|
|
|
},
|
|
|
|
|
|
formatJson(filterVal, jsonData) {
|
|
|
|
|
|
return jsonData.map(v => filterVal.map(j => v[j]))
|
|
|
|
|
|
},
|
|
|
|
|
|
exportCur:function(){
|
|
|
|
|
|
this.exportExcel();
|
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
|
},
|
|
|
|
|
|
exportAll:function(){
|
|
|
|
|
|
let params=JSON.parse(JSON.stringify(this.params));
|
|
|
|
|
|
params.pageSize=-1;
|
|
|
|
|
|
this.exportExcel(params);
|
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
|
},
|
|
|
|
|
|
exportExcel:function(params){
|
|
|
|
|
|
let temp=this;
|
|
|
|
|
|
if(!params){
|
|
|
|
|
|
params=temp.params;
|
|
|
|
|
|
}
|
|
|
|
|
|
axios.get(this.exportUrl,{responseType:'blob',params:params}).then(res=>{
|
|
|
|
|
|
let fileName=temp.exportFileName+'-'+temp.getTimeString()+'.xlsx';
|
|
|
|
|
|
if(window.navigator.msSaveOrOpenBlob){
|
|
|
|
|
|
// 兼容ie11
|
|
|
|
|
|
let blobObject = new Blob([res.data]);
|
|
|
|
|
|
window.navigator.msSaveOrOpenBlob(blobObject, fileName);
|
|
|
|
|
|
}else{
|
|
|
|
|
|
let url = URL.createObjectURL(new Blob([res.data]));
|
|
|
|
|
|
let a = document.createElement('a');
|
|
|
|
|
|
document.body.appendChild(a); //此处增加了将创建的添加到body当中
|
|
|
|
|
|
a.href = url;
|
|
|
|
|
|
a.download = fileName;
|
|
|
|
|
|
a.target = '_blank';
|
|
|
|
|
|
a.click();
|
|
|
|
|
|
a.remove(); //将a标签移除
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
showImportBox:function(type){
|
|
|
|
|
|
this.importBox.show=true;
|
|
|
|
|
|
this.importBox.type=type;
|
|
|
|
|
|
if(type == 1){//import
|
|
|
|
|
|
this.importBox.title=this.$t('overall.importExcel');
|
|
|
|
|
|
this.importBox.width='600px';
|
|
|
|
|
|
}else if(type == 2){//export
|
|
|
|
|
|
this.importBox.title=this.$t('overall.exportExcel');
|
|
|
|
|
|
this.importBox.width='300px';
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
getTimeString:function(){
|
|
|
|
|
|
let split='-';
|
|
|
|
|
|
let date=new Date();
|
|
|
|
|
|
let year=date.getFullYear();
|
|
|
|
|
|
let month=this.formatNum(date.getMonth()+1);
|
2020-02-28 17:09:38 +08:00
|
|
|
|
let day=this.formatNum(date.getDate());
|
2020-02-26 15:38:56 +08:00
|
|
|
|
let hours=this.formatNum(date.getHours());
|
|
|
|
|
|
let minutes=this.formatNum(date.getMinutes());
|
|
|
|
|
|
let seconds=this.formatNum(date.getSeconds());
|
2020-02-28 17:09:38 +08:00
|
|
|
|
console.log(day)
|
2020-02-26 15:38:56 +08:00
|
|
|
|
return year + split + month + split + day + ' ' + hours + split + minutes + split + seconds;
|
|
|
|
|
|
},
|
|
|
|
|
|
formatNum:function(num){
|
|
|
|
|
|
return num>9?num:'0'+num;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
/*去除上传文件动画start*/
|
|
|
|
|
|
/*.upload-demo {*/
|
|
|
|
|
|
/* display: flex;*/
|
|
|
|
|
|
/*}*/
|
|
|
|
|
|
/deep/ .el-list-enter-active,
|
|
|
|
|
|
/deep/ .el-list-leave-active {
|
|
|
|
|
|
transition: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
.nz-tab {
|
|
|
|
|
|
margin-bottom: 22px;
|
|
|
|
|
|
margin-left: 13px;
|
|
|
|
|
|
}
|
|
|
|
|
|
/deep/ .el-list-enter,
|
|
|
|
|
|
/deep/ .el-list-leave-active {
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
/deep/ .el-upload-list {
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
}
|
|
|
|
|
|
/*去除上传文件动画end*/
|
|
|
|
|
|
</style>
|
|
|
|
|
|
<style>
|
|
|
|
|
|
.el-dialog__body{
|
|
|
|
|
|
padding: 10px 20px 20px 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.el-button:focus, .el-button:hover {
|
|
|
|
|
|
color: unset;
|
|
|
|
|
|
border-color: unset;
|
|
|
|
|
|
background-color:unset;
|
|
|
|
|
|
}
|
|
|
|
|
|
.el-button--primary{
|
|
|
|
|
|
top:2px;
|
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
|
background-image: linear-gradient(180deg, #fff 0%, #E0E0E0 100%);
|
|
|
|
|
|
border: 0px;
|
|
|
|
|
|
color: #666;
|
|
|
|
|
|
-webkit-box-shadow: 0 0 1px 1px rgba(162,162,162,0.5);
|
|
|
|
|
|
box-shadow: 0 0 1px 1px rgba(162,162,162,0.5);
|
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
|
background-color: unset;
|
|
|
|
|
|
}
|
|
|
|
|
|
.el-button--primary:hover{
|
|
|
|
|
|
background-image: linear-gradient(180deg, #F0F0F0 0%, #D8D8D8 99%) !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
.el-button--mini{
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
height: 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.el-dropdown .el-button-group{
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
top:-2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.el-dropdown .el-dropdown__caret-button {
|
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
|
border-left: none;
|
|
|
|
|
|
top:0px;
|
|
|
|
|
|
left:2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.footer:before{
|
2020-02-28 15:57:23 +08:00
|
|
|
|
/*content: '';*/
|
|
|
|
|
|
/*clear:both;*/
|
|
|
|
|
|
/*display: block;*/
|
|
|
|
|
|
/*height: 40px;*/
|
2020-02-26 15:38:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
.upload-body{
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.result-detail li{
|
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.result-detail{
|
|
|
|
|
|
height: 100px;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.result-body{
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
}
|
|
|
|
|
|
.result-title{
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
2020-02-28 15:57:23 +08:00
|
|
|
|
/**dialog 在视图中居中显示start*/
|
|
|
|
|
|
.el-dialog{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
margin:0 !important;
|
|
|
|
|
|
position:absolute;
|
|
|
|
|
|
top:50%;
|
|
|
|
|
|
left:50%;
|
|
|
|
|
|
transform:translate(-50%,-50%);
|
|
|
|
|
|
/*height:600px;*/
|
|
|
|
|
|
max-height:calc(100% - 30px);
|
|
|
|
|
|
max-width:calc(100% - 30px);
|
|
|
|
|
|
}
|
|
|
|
|
|
.el-dialog .el-dialog__body{
|
|
|
|
|
|
flex:1;
|
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
/**dialog 在视图中居中显示end*/
|
|
|
|
|
|
.dropdown-content{
|
|
|
|
|
|
font-size: 14px !important;
|
|
|
|
|
|
}
|
2020-02-26 15:38:56 +08:00
|
|
|
|
</style>
|