|  | @@ -96,6 +96,7 @@
 | 
	
		
			
				|  |  |        <el-table-column label="创建时间" align="center" prop="createTime" :formatter="dateFormatter" />
 | 
	
		
			
				|  |  |        <el-table-column label="操作" align="center" fixed="right" min-width="100">
 | 
	
		
			
				|  |  |          <template #default="scope">
 | 
	
		
			
				|  |  | +          <el-button link type="primary" @click="openStatistics(scope.row.id)">数据统计</el-button>
 | 
	
		
			
				|  |  |            <el-button link type="primary" @click="openDetail(scope.row.id)">白名单</el-button>
 | 
	
		
			
				|  |  |            <el-button link type="primary" @click="openForm('update', scope.row.id)" v-hasPermi="['menduner:system:job-fair:update']">编辑</el-button>
 | 
	
		
			
				|  |  |            <!-- <el-button link type="danger" @click="handleDelete(scope.row.id)" v-hasPermi="['menduner:system:job-fair:delete']">删除</el-button> -->
 | 
	
	
		
			
				|  | @@ -209,6 +210,11 @@ const openDetail = (id) => {
 | 
	
		
			
				|  |  |    push({ name: 'JobFairDetail', params: { id } })
 | 
	
		
			
				|  |  |  }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +/** 打开招聘会统计 */
 | 
	
		
			
				|  |  | +const openStatistics = (id) => {
 | 
	
		
			
				|  |  | +  push({ name: 'JobFairStatistics', params: { id } })
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  /** 初始化 **/
 | 
	
		
			
				|  |  |  onMounted(() => {
 | 
	
		
			
				|  |  |    getList()
 |