|  | @@ -1,7 +1,6 @@
 | 
	
		
			
				|  |  |  <template>
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |    <div class="layout_container">
 | 
	
		
			
				|  |  | -    <header>
 | 
	
		
			
				|  |  | +    <header class="round-header">
 | 
	
		
			
				|  |  |        <el-date-picker
 | 
	
		
			
				|  |  |            v-model="dateRange"
 | 
	
		
			
				|  |  |            type="daterange"
 | 
	
	
		
			
				|  | @@ -25,14 +24,13 @@
 | 
	
		
			
				|  |  |          <el-input v-model="templateSearch" placeholder="输入模板名称检索" clearable>
 | 
	
		
			
				|  |  |            <template #prepend>模板检索</template>
 | 
	
		
			
				|  |  |          </el-input>
 | 
	
		
			
				|  |  | -        <div style="height: 4px"></div>
 | 
	
		
			
				|  |  |          <el-tree
 | 
	
		
			
				|  |  |              ref="tree"
 | 
	
		
			
				|  |  |              :data="templates"
 | 
	
		
			
				|  |  |              :props="defaultProps"
 | 
	
		
			
				|  |  |              @node-click="handleNodeClick"
 | 
	
		
			
				|  |  |              @node-contextmenu="handleNodeRightClick"
 | 
	
		
			
				|  |  | -            style="height: 100%; overflow-y: auto"
 | 
	
		
			
				|  |  | +            style="height: 95%; overflow-y: auto"
 | 
	
		
			
				|  |  |              :filter-node-method="filterNode"
 | 
	
		
			
				|  |  |              highlight-current
 | 
	
		
			
				|  |  |          >
 | 
	
	
		
			
				|  | @@ -94,7 +92,6 @@
 | 
	
		
			
				|  |  |        </div>
 | 
	
		
			
				|  |  |      </div>
 | 
	
		
			
				|  |  |    </div>
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |    <div class="overlay" v-show="menuVisible" @click="menuVisible = false">
 | 
	
		
			
				|  |  |      <div id="menu" class="menu-box">
 | 
	
		
			
				|  |  |        <div class="menu-title">{{ rightClickData.label }}</div>
 | 
	
	
		
			
				|  | @@ -255,6 +252,7 @@ import { getGreatestRole } from '@/utils/permission'
 | 
	
		
			
				|  |  |  import { formatDate, getDateRangeFormatDate } from '@/utils/date'
 | 
	
		
			
				|  |  |  import { createWorkSheet, writeExcelFile } from '@/utils/excel'
 | 
	
		
			
				|  |  |  import HuanZheZhuYuanTianShu from '../../components/reports/huanZheZhuYuanTianShu.vue'
 | 
	
		
			
				|  |  | +import {startLoading} from "@/utils/loading";
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  const medtypes = initMedtypes()
 | 
	
		
			
				|  |  |  const selectedMedtypes = ref([])
 |