|
@@ -343,7 +343,7 @@
|
|
|
<el-popover placement="bottom" popper-class="popper-open" trigger="hover" content="打开保存目录">
|
|
|
<i class="el-icon-folder-opened" slot="reference" style="padding-left: 5px; cursor: pointer; font-size: 22px; vertical-align: middle;" @click="openFolder()"></i>
|
|
|
</el-popover>
|
|
|
- <el-button type="danger" style="margin-left: 20px;" @click="exportFile()" :loading="loading">开始处理</el-button>
|
|
|
+ <el-button type="danger" style="margin-left: 20px;" @click="exportFile()" :loading="exportLoading">开始处理</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -654,11 +654,11 @@ export default {
|
|
|
continue;
|
|
|
} else {
|
|
|
if(!this.$refs.headerRef.authority.isAuthority){
|
|
|
- if(size > 1024*500){
|
|
|
+ if(size > 1024*300){
|
|
|
setTimeout(() => {
|
|
|
this.$notify.error({
|
|
|
title: '提示',
|
|
|
- message: '免费版,文件最大不能超过500KB!'
|
|
|
+ message: '免费版,文件最大不能超过300KB!'
|
|
|
});
|
|
|
}, 200)
|
|
|
continue;
|
|
@@ -738,10 +738,10 @@ export default {
|
|
|
continue;
|
|
|
} else {
|
|
|
if(!this.$refs.headerRef.authority.isAuthority){
|
|
|
- if(size > 1024*500){
|
|
|
+ if(size > 1024*300){
|
|
|
this.$notify.error({
|
|
|
title: '提示',
|
|
|
- message: '免费版,文件最大不能超过500KB!'
|
|
|
+ message: '免费版,文件最大不能超过300KB!'
|
|
|
});
|
|
|
continue;
|
|
|
}
|