qiushang 1 gadu atpakaļ
vecāks
revīzija
c805dd969e

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
 	"name": "XYAudio",
-	"version": "1.1.0.0",
+	"version": "2.1.0.0",
 	"author": "苏州星优办公软件有限公司",
 	"description": "An electron-vue project",
 	"license": "audio",

+ 2 - 2
src/renderer/components/header.vue

@@ -79,7 +79,7 @@
 				</div>
 				<div class="font-12" style="padding: 20px; margin-bottom: 10px;">
 					<div style="text-align: center; margin-bottom: 10px;">
-						<p style="font-size: 16px;font-weight: 600;color: #f73131;">非VIP限制文件大小为500KB</p>
+						<p style="font-size: 16px;font-weight: 600;color: #f73131;">非VIP限制文件大小为300KB</p>
 						<p style="font-size: 14px; font-weight: 600; margin-top: 15px;">开通会员即享以下权益</p>
 					</div>
 					<el-row :gutter="20" class="micon-list">
@@ -93,7 +93,7 @@
 						</el-col>
 						<el-col :span="6" class="micon-item">
 							<img src="../assets/image/member3.png" style="width: 60px;"/>
-							<p>免费升级</p>
+							<p>不限大小</p>
 						</el-col>
 						<el-col :span="6" class="micon-item">
 							<img src="../assets/image/member4.png" style="width: 60px;"/>

+ 5 - 5
src/renderer/components/home.vue

@@ -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;
 						}