|
@@ -20,7 +20,7 @@ export const JeecgListMixin = {
|
|
ipagination:{
|
|
ipagination:{
|
|
current: 1,
|
|
current: 1,
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
- pageSizeOptions: ['10', '20', '30', '50', '100', '200'],
|
|
|
|
|
|
+ pageSizeOptions: ['10', '20', '30', '50', '100', '150', '200', '300'],
|
|
showTotal: (total, range) => {
|
|
showTotal: (total, range) => {
|
|
return range[0] + "-" + range[1] + " 共" + total + "条"
|
|
return range[0] + "-" + range[1] + " 共" + total + "条"
|
|
},
|
|
},
|
|
@@ -53,6 +53,7 @@ export const JeecgListMixin = {
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
if(!this.disableMixinCreated){
|
|
if(!this.disableMixinCreated){
|
|
|
|
+ this.pageInit();
|
|
console.log(' -- mixin created -- ')
|
|
console.log(' -- mixin created -- ')
|
|
this.loadData();
|
|
this.loadData();
|
|
//初始化字典配置 在自己页面定义
|
|
//初始化字典配置 在自己页面定义
|
|
@@ -71,6 +72,13 @@ export const JeecgListMixin = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods:{
|
|
methods:{
|
|
|
|
+ pageInit() {
|
|
|
|
+ // 页面初始化操作
|
|
|
|
+ },
|
|
|
|
+ exportXlsBefore(){
|
|
|
|
+ // 导出内容前置操作,返回boolean
|
|
|
|
+ return true;
|
|
|
|
+ },
|
|
loadData(arg) {
|
|
loadData(arg) {
|
|
if(!this.url.list){
|
|
if(!this.url.list){
|
|
this.$message.error("请设置url.list属性!")
|
|
this.$message.error("请设置url.list属性!")
|
|
@@ -311,6 +319,9 @@ export const JeecgListMixin = {
|
|
window.location.href = url;
|
|
window.location.href = url;
|
|
},
|
|
},
|
|
handleExportXls(fileName){
|
|
handleExportXls(fileName){
|
|
|
|
+ if (!this.exportXlsBefore()) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
if(!fileName || typeof fileName != "string"){
|
|
if(!fileName || typeof fileName != "string"){
|
|
fileName = "导出文件"
|
|
fileName = "导出文件"
|
|
}
|
|
}
|
|
@@ -318,11 +329,30 @@ export const JeecgListMixin = {
|
|
if(this.selectedRowKeys && this.selectedRowKeys.length>0){
|
|
if(this.selectedRowKeys && this.selectedRowKeys.length>0){
|
|
param['selections'] = this.selectedRowKeys.join(",")
|
|
param['selections'] = this.selectedRowKeys.join(",")
|
|
}
|
|
}
|
|
|
|
+ let that = this;
|
|
console.log("导出参数",param)
|
|
console.log("导出参数",param)
|
|
|
|
+ this.exportXlsLoading = true;
|
|
|
|
+ this.$message.info("导出中请耐心等待")
|
|
downFile(this.url.exportXlsUrl,param).then((data)=>{
|
|
downFile(this.url.exportXlsUrl,param).then((data)=>{
|
|
if (!data) {
|
|
if (!data) {
|
|
this.$message.warning("文件下载失败")
|
|
this.$message.warning("文件下载失败")
|
|
return
|
|
return
|
|
|
|
+ } else {
|
|
|
|
+ if (data['type'] === 'application/json') {
|
|
|
|
+ that.blobToJson(data).then(json =>{
|
|
|
|
+ console.log(json);
|
|
|
|
+ if (json['result']) {
|
|
|
|
+ if (json['result']['code'] === 200) {
|
|
|
|
+ that.$message.info(json['result']['message'])
|
|
|
|
+ } else {
|
|
|
|
+ that.$message.error(json['result']['message'])
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.$message.success("导出成功!请等待文件下载!")
|
|
}
|
|
}
|
|
if (typeof window.navigator.msSaveBlob !== 'undefined') {
|
|
if (typeof window.navigator.msSaveBlob !== 'undefined') {
|
|
window.navigator.msSaveBlob(new Blob([data],{type: 'application/vnd.ms-excel'}), fileName+'.xls')
|
|
window.navigator.msSaveBlob(new Blob([data],{type: 'application/vnd.ms-excel'}), fileName+'.xls')
|
|
@@ -337,6 +367,10 @@ export const JeecgListMixin = {
|
|
document.body.removeChild(link); //下载完成移除元素
|
|
document.body.removeChild(link); //下载完成移除元素
|
|
window.URL.revokeObjectURL(url); //释放掉blob对象
|
|
window.URL.revokeObjectURL(url); //释放掉blob对象
|
|
}
|
|
}
|
|
|
|
+ }).catch(err => {
|
|
|
|
+ this.$message.error("文件较大或导出时发生错误")
|
|
|
|
+ }).finally((fin)=> {
|
|
|
|
+ this.exportXlsLoading = false;
|
|
})
|
|
})
|
|
},
|
|
},
|
|
/* 导入 */
|
|
/* 导入 */
|
|
@@ -411,6 +445,20 @@ export const JeecgListMixin = {
|
|
let url = getFileAccessHttpUrl(text)
|
|
let url = getFileAccessHttpUrl(text)
|
|
window.open(url);
|
|
window.open(url);
|
|
},
|
|
},
|
|
|
|
+ blobToJson(blob) {
|
|
|
|
+ return new Promise((resolve, reject) =>{
|
|
|
|
+ const reader = new FileReader();
|
|
|
|
+ reader.readAsText(blob, 'utf-8');
|
|
|
|
+ reader.onload = () =>{
|
|
|
|
+ try {
|
|
|
|
+ const json = JSON.parse(reader.result);
|
|
|
|
+ resolve(json);
|
|
|
|
+ } catch (e) {
|
|
|
|
+ reject(e);
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+ });
|
|
|
|
+ },
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|