| 
					
				 | 
			
			
				@@ -14,10 +14,10 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <van-cell title="专业等级" > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 {{ form.subjectName }}<span v-if="form.level || form.level == 0">({{ form.level | formatLevel }})</span> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </van-cell> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            <van-cell v-for="(item, index) in practiceInfo" :key="index" :title="`练习曲${numberToCN(index)}`" @click="onOpen('practice', index)" is-link > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <van-cell v-for="(item, index) in practiceInfo" :key="index" :title="`练习曲${numberToCN(index)}`" @click="onOpen('practice', index)" :is-link="form.practiceSongIdList ? false : true" > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 {{ item.songName }} {{ item.songAuthor ? '-' + item.songAuthor : item.songAuthor }} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </van-cell> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            <van-cell v-for="(item, index) in performInfo" :key="index" :title="`演奏曲${numberToCN(index)}`" @click="onOpen('perform', index)" is-link > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <van-cell v-for="(item, index) in performInfo" :key="index" :title="`演奏曲${numberToCN(index)}`" @click="onOpen('perform', index)" :is-link="form.performSongIdList ? false : true" > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 {{ item.songName }} {{ item.songAuthor ? '-' + item.songAuthor : item.songAuthor }} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </van-cell> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <van-field v-model="form.name" disabled label="考级证书" > 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -514,7 +514,8 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         margin-right: 12px; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     .van-cell__value { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        width: 40%; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        width: calc(40% - .2rem); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        padding-right: .2rem; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         text-align: left; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         flex: auto; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         color: @--font-second-color; 
			 |