|  | @@ -6,7 +6,7 @@ import TheTooltip from "@components/TheTooltip";
 | 
	
		
			
				|  |  |  import AddMusic from "@views/music-library/project-music-sheet/module/klx/addMusic";
 | 
	
		
			
				|  |  |  import {getMapValueByKey, getSelectDataFromObj} from "@/utils/objectUtil";
 | 
	
		
			
				|  |  |  import {musicSheetAudioType, musicSheetAvailableType, musicSheetPaymentType, musicSheetSourceType, musicSheetType} from "@/utils/constant";
 | 
	
		
			
				|  |  | -import {musicSheetApplicationExtendCategoryList, musicSheetApplicationOwnerList, musicSheetPageByApplication, musicSheetStatusList} from "@views/music-library/api";
 | 
	
		
			
				|  |  | +import {musicSheetApplicationExtendCategoryList, musicSheetApplicationExtendStatus, musicSheetApplicationOwnerList, musicSheetPageByApplication, musicSheetStatusList} from "@views/music-library/api";
 | 
	
		
			
				|  |  |  import UpdateMusic from "@views/music-library/project-music-sheet/module/kt/updateMusic";
 | 
	
		
			
				|  |  |  import {subjectPage, sysApplicationPage} from "@views/system-manage/api";
 | 
	
		
			
				|  |  |  import {filterTimes} from "@/utils/dateUtil";
 | 
	
	
		
			
				|  | @@ -148,8 +148,8 @@ export default defineComponent({
 | 
	
		
			
				|  |  |          negativeText: '取消',
 | 
	
		
			
				|  |  |          onPositiveClick: async () => {
 | 
	
		
			
				|  |  |            try {
 | 
	
		
			
				|  |  | -            await musicSheetStatusList({
 | 
	
		
			
				|  |  | -              ids: new Array(row.id),
 | 
	
		
			
				|  |  | +            await musicSheetApplicationExtendStatus({
 | 
	
		
			
				|  |  | +              ids: row.applicationExtendId,
 | 
	
		
			
				|  |  |                status: !row.status
 | 
	
		
			
				|  |  |              })
 | 
	
		
			
				|  |  |              getList()
 | 
	
	
		
			
				|  | @@ -174,8 +174,8 @@ export default defineComponent({
 | 
	
		
			
				|  |  |          negativeText: '取消',
 | 
	
		
			
				|  |  |          onPositiveClick: async () => {
 | 
	
		
			
				|  |  |            try {
 | 
	
		
			
				|  |  | -            await musicSheetStatusList({
 | 
	
		
			
				|  |  | -              ids: checkedRowKeysRef.value,
 | 
	
		
			
				|  |  | +            await musicSheetApplicationExtendStatus({
 | 
	
		
			
				|  |  | +              ids: checkedRowKeysRef.value.join(','),
 | 
	
		
			
				|  |  |                status: status
 | 
	
		
			
				|  |  |              })
 | 
	
		
			
				|  |  |              getList()
 | 
	
	
		
			
				|  | @@ -521,7 +521,7 @@ export default defineComponent({
 | 
	
		
			
				|  |  |                    loading={state.loading}
 | 
	
		
			
				|  |  |                    columns={columns()}
 | 
	
		
			
				|  |  |                    data={state.dataList}
 | 
	
		
			
				|  |  | -                  rowKey={(row: any) => row.id}
 | 
	
		
			
				|  |  | +                  rowKey={(row: any) => row.applicationExtendId}
 | 
	
		
			
				|  |  |                    onUpdateCheckedRowKeys={handleCheck}
 | 
	
		
			
				|  |  |                ></NDataTable>
 | 
	
		
			
				|  |  |  
 |