qiushang 1 год назад
Родитель
Сommit
035c433416
1 измененных файлов с 17 добавлено и 5 удалено
  1. 17 5
      src/renderer/components/home.vue

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

@@ -78,7 +78,7 @@
 						</el-button-group>
 						<el-row type="flex" class="row-bg">
 							<el-col :span="1" style="text-align: right;">
-								<el-button style="margin-top: 8px;" type="primary" size="mini"
+								<el-button style="margin-top: 8px;" type="danger" size="mini"
 									icon="el-icon-arrow-left" circle @click="menuIndex=''"></el-button>
 							</el-col>
 							<el-col :span="23" style="padding: 0 15px;">
@@ -301,7 +301,7 @@
 								</template>
 								<template v-else>
 									<label v-if="handleData.split_type == 2" class="handle-label">截取时间:</label>
-									<label v-else class="handle-label">分割时:</label>
+									<label v-else class="handle-label">分割时:</label>
 									<el-time-picker arrow-control @change="selectTime" v-model="split_timeStr" placeholder="选择时间" style="width:120px;" size="small"></el-time-picker>
 								</template>
 							</div>
@@ -314,7 +314,7 @@
 							
 							<!-- 音量调整 -->
 							<div class="handle-item" v-if="menuIndex == '6'">
-								<label class="handle-label">音量调整:</label>
+								<label class="handle-label">音量大小:</label>
 								<el-slider class="info-input" v-model="handleData.volume" :min="0.5" :max="2.0" :step="0.05" style="margin-right: 10px;"></el-slider> {{handleData.volume}}
 							</div>
 							
@@ -657,7 +657,7 @@ export default {
 						if(size > 1024*500){
 							setTimeout(() => {
 								this.$notify.error({
-									title: '错误提示',
+									title: '提示',
 									message: '免费版,文件最大不能超过500KB!'
 								});
 							}, 200)
@@ -740,7 +740,7 @@ export default {
 					if(!this.$refs.headerRef.authority.isAuthority){
 						if(size > 1024*500){
 							this.$notify.error({
-								title: '错误提示',
+								title: '提示',
 								message: '免费版,文件最大不能超过500KB!'
 							});
 							continue;
@@ -1723,4 +1723,16 @@ export default {
 	.upload-img{
 		width: 220px;
 	}
+	
+	.el-tabs__item.is-active{
+		color: #F56C6C !important;
+	}
+	
+	.el-tabs__active-bar{
+		background-color: #F56C6C !important;
+	}
+	
+	.el-tabs__item:hover{
+		color: #F56C6C !important;
+	}
 </style>