| 
					
				 | 
			
			
				@@ -20,7 +20,7 @@ import { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } from 'naive-ui' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import Pagination from '@components/pagination' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import TheTooltip from '@components/TheTooltip' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-import AddMusic from '@views/music-library/project-music-sheet/module/klx/addMusic' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import AddMusic from './addMusic' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import { getMapValueByKey, getSelectDataFromObj } from '@/utils/objectUtil' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   appKey, 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -44,7 +44,7 @@ import { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import { filterTimes } from '@/utils/dateUtil' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import deepClone from '@/utils/deep.clone' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import { copyText, getOwnerName } from '@views/music-library/musicUtil' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-import UpdateMusic from '@views/music-library/project-music-sheet/module/klx/updateMusic' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import UpdateMusic from './updateMusic' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import MusicPreView from '@views/music-library/music-sheet/modal/musicPreView' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 export default defineComponent({ 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -72,7 +72,7 @@ export default defineComponent({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         // musicSheetType: null, //曲目类型(SINGLE:单曲 CONCERT:合奏) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         subjectId: null, //声部ID 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         subjectIds: null, //曲目声部ID集合 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        status: null, //曲目状态(0:停用,1:启用) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        clientStatus: null, //曲目状态(0:停用,1:启用) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         sourceType: null, //来源类型/作者属性(PLATFORM: 平台; ORG: 机构; PERSON: 个人) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         paymentType: null, //收费类型(FREE:免费;VIP:会员;CHARGE:单曲收费) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         userId: null, //所属人 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -253,7 +253,7 @@ export default defineComponent({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     const onChangeStatus = (row: any) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-      const statusStr = row.status ? '停用' : '启用' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      const statusStr = row.clientStatus ? '停用' : '启用' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       dialog.warning({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         title: '提示', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         content: `是否${statusStr}?`, 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -263,7 +263,7 @@ export default defineComponent({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           try { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             await musicSheetApplicationExtendStatus({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               ids: row.applicationExtendId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-              status: !row.status 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              status: !row.clientStatus 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             getList() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             message.success(`${statusStr}成功`) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -421,7 +421,7 @@ export default defineComponent({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           title: '上传时间', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           minWidth: '150px', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-          key: 'composer', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          key: 'createTime', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           render(row: any) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             return ( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               row.createTime 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -613,9 +613,9 @@ export default defineComponent({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 clearable 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </NFormItem> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            <NFormItem label="状态" path="status"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <NFormItem label="曲目状态" path="clientStatus"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               <NSelect 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                v-model:value={state.searchForm.status} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                v-model:value={state.searchForm.clientStatus} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 placeholder="请选择状态" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 options={ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                   [ 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -632,7 +632,7 @@ export default defineComponent({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 clearable 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </NFormItem> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            <NFormItem label="上传时间" path="authorFrom"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <NFormItem label="上传时间" path="times"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               <NDatePicker 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 v-model:value={state.searchForm.times} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 type="daterange" 
			 |