|  | @@ -32,12 +32,13 @@
 | 
	
		
			
				|  |  |          <el-button type="primary">功能菜单<i class="el-icon-arrow-down el-icon--right"></i></el-button>
 | 
	
		
			
				|  |  |          <template #dropdown>
 | 
	
		
			
				|  |  |            <el-dropdown-menu>
 | 
	
		
			
				|  |  | -            <el-dropdown-item command="unSign" icon="Printer">解除签收</el-dropdown-item>
 | 
	
		
			
				|  |  | -            <el-dropdown-item command="dismissCount" divided icon="Printer">出院患者统计</el-dropdown-item>
 | 
	
		
			
				|  |  | -            <el-dropdown-item command="exportLateData" icon="Printer">导出迟交病案</el-dropdown-item>
 | 
	
		
			
				|  |  | -            <el-dropdown-item command="exportUnsignedData" icon="Printer">导出未签收病案</el-dropdown-item>
 | 
	
		
			
				|  |  | +            <el-dropdown-item command="unSign" icon="Link">解除签收</el-dropdown-item>
 | 
	
		
			
				|  |  | +            <el-dropdown-item command="dismissCount" divided icon="OfficeBuilding">出院患者统计</el-dropdown-item>
 | 
	
		
			
				|  |  | +            <el-dropdown-item command="exportLateData" icon="Clock">导出迟交病案</el-dropdown-item>
 | 
	
		
			
				|  |  | +            <el-dropdown-item command="exportUnsignedData" icon="Files">导出未签收病案</el-dropdown-item>
 | 
	
		
			
				|  |  |              <el-dropdown-item command="print1" divided icon="Printer">打印正面</el-dropdown-item>
 | 
	
		
			
				|  |  |              <el-dropdown-item command="print2" icon="Printer">打印反面</el-dropdown-item>
 | 
	
		
			
				|  |  | +            <el-dropdown-item command="quality" divided icon="DataLine">病案质控</el-dropdown-item>
 | 
	
		
			
				|  |  |            </el-dropdown-menu>
 | 
	
		
			
				|  |  |          </template>
 | 
	
		
			
				|  |  |        </el-dropdown>
 | 
	
	
		
			
				|  | @@ -239,7 +240,7 @@ import TailPage from '../../../components/inpatient/frontsheet-printpage/TailPag
 | 
	
		
			
				|  |  |  import { Export } from '../../../utils/ExportExcel'
 | 
	
		
			
				|  |  |  import SheetQuality from '@/components/inpatient/CaseFrontSheetQuality.vue'
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -let showSheetQuality = $ref(true)
 | 
	
		
			
				|  |  | +let showSheetQuality = $ref(false)
 | 
	
		
			
				|  |  |  let currentPage = $ref(1)
 | 
	
		
			
				|  |  |  const handleCurrentPageChange = (val) => {
 | 
	
		
			
				|  |  |    currentPage = val
 | 
	
	
		
			
				|  | @@ -423,6 +424,9 @@ const handleCommand = (val) => {
 | 
	
		
			
				|  |  |      case 'unSign':
 | 
	
		
			
				|  |  |        unArchiveBa()
 | 
	
		
			
				|  |  |        break
 | 
	
		
			
				|  |  | +    case 'quality':
 | 
	
		
			
				|  |  | +      showSheetQuality = true
 | 
	
		
			
				|  |  | +      break
 | 
	
		
			
				|  |  |    }
 | 
	
		
			
				|  |  |  }
 | 
	
		
			
				|  |  |  
 |