|  | @@ -97,12 +97,14 @@ export default defineComponent({
 | 
	
		
			
				|  |  |      const reportSrc = ref('');
 | 
	
		
			
				|  |  |      const detailVisiable = ref(false);
 | 
	
		
			
				|  |  |      const gotoRecode = (row: any) => {
 | 
	
		
			
				|  |  | +      if (!row.id) {
 | 
	
		
			
				|  |  | +        message.error('暂无评测记录');
 | 
	
		
			
				|  |  | +        return;
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  |        const tockn = userStore.getToken;
 | 
	
		
			
				|  |  |        reportSrc.value =
 | 
	
		
			
				|  |  |          vaildUrl() +
 | 
	
		
			
				|  |  | -        `/instrument/#/evaluat-report?id=${
 | 
	
		
			
				|  |  | -          row.id || '1693935536619667457'
 | 
	
		
			
				|  |  | -        }&Authorization=${tockn}`;
 | 
	
		
			
				|  |  | +        `/instrument/#/evaluat-report?id=${row.id}&Authorization=${tockn}`;
 | 
	
		
			
				|  |  |        detailVisiable.value = true;
 | 
	
		
			
				|  |  |      };
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -348,7 +350,8 @@ export default defineComponent({
 | 
	
		
			
				|  |  |            {/* 只有评测的时候才有 */}
 | 
	
		
			
				|  |  |            {props.isDisabled &&
 | 
	
		
			
				|  |  |            !props.isCLassWork &&
 | 
	
		
			
				|  |  | -          props.item.trainingType === 'EVALUATION' ? (
 | 
	
		
			
				|  |  | +          props.item.trainingType === 'EVALUATION' &&
 | 
	
		
			
				|  |  | +          props.item?.recordId ? (
 | 
	
		
			
				|  |  |              <>
 | 
	
		
			
				|  |  |                <NSpace size={6}>
 | 
	
		
			
				|  |  |                  <n-button
 |