企业证件管理基础
This commit is contained in:
		
							parent
							
								
									5b6f0d8556
								
							
						
					
					
						commit
						07085014c4
					
				
							
								
								
									
										53
									
								
								src/api/fta/credentialmanagement/index.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								src/api/fta/credentialmanagement/index.ts
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,53 @@ | ||||
| import request from '@/config/axios' | ||||
| 
 | ||||
| // 企业证件 VO
 | ||||
| export interface CredentialManagementVO { | ||||
|   informationId: string // 企业id
 | ||||
|   businessPattern: string // 经营方式
 | ||||
|   usefulLife: string // 有效期限
 | ||||
|   licenceIssuingAuthority: string // 发证机关
 | ||||
|   dateOfIssue: Date // 发证日期
 | ||||
|   status: string // 流程状态
 | ||||
|   id: number // id
 | ||||
|   expiryDate: Date // 到期时间
 | ||||
|   idType: boolean // 证件类型(0安全员证,1安全负责人证,2危险品证)
 | ||||
|   certificateNumber: string // 证书编号
 | ||||
|   name: string // 姓名
 | ||||
|   personnelType: string // 人员类型
 | ||||
|   sex: boolean // 性别(0男,1女)
 | ||||
|   categoryOfEmployment: string // 行业类别
 | ||||
|   enterpriseName: string // 企业名称
 | ||||
| } | ||||
| 
 | ||||
| // 企业证件 API
 | ||||
| export const CredentialManagementApi = { | ||||
|   // 查询企业证件分页
 | ||||
|   getCredentialManagementPage: async (params: any) => { | ||||
|     return await request.get({ url: `/fta/credential-management/page`, params }) | ||||
|   }, | ||||
| 
 | ||||
|   // 查询企业证件详情
 | ||||
|   getCredentialManagement: async (id: number) => { | ||||
|     return await request.get({ url: `/fta/credential-management/get?id=` + id }) | ||||
|   }, | ||||
| 
 | ||||
|   // 新增企业证件
 | ||||
|   createCredentialManagement: async (data: CredentialManagementVO) => { | ||||
|     return await request.post({ url: `/fta/credential-management/create`, data }) | ||||
|   }, | ||||
| 
 | ||||
|   // 修改企业证件
 | ||||
|   updateCredentialManagement: async (data: CredentialManagementVO) => { | ||||
|     return await request.put({ url: `/fta/credential-management/update`, data }) | ||||
|   }, | ||||
| 
 | ||||
|   // 删除企业证件
 | ||||
|   deleteCredentialManagement: async (id: number) => { | ||||
|     return await request.delete({ url: `/fta/credential-management/delete?id=` + id }) | ||||
|   }, | ||||
| 
 | ||||
|   // 导出企业证件 Excel
 | ||||
|   exportCredentialManagement: async (params) => { | ||||
|     return await request.download({ url: `/fta/credential-management/export-excel`, params }) | ||||
|   }, | ||||
| } | ||||
							
								
								
									
										226
									
								
								src/views/fta/credentialmanagement/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										226
									
								
								src/views/fta/credentialmanagement/index.vue
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,226 @@ | ||||
| <template> | ||||
|   <ContentWrap> | ||||
|     <!-- 搜索工作栏 --> | ||||
|     <el-form | ||||
|       class="-mb-15px" | ||||
|       :model="queryParams" | ||||
|       ref="queryFormRef" | ||||
|       :inline="true" | ||||
|       label-width="68px" | ||||
|     > | ||||
|       <el-form-item label="企业名称" prop="enterpriseName"> | ||||
|         <el-input | ||||
|           v-model="queryParams.enterpriseName" | ||||
|           placeholder="请输入企业名称" | ||||
|           clearable | ||||
|           @keyup.enter="handleQuery" | ||||
|           class="!w-240px" | ||||
|         /> | ||||
|       </el-form-item> | ||||
|       <el-form-item label="到期时间" prop="expiryDate"> | ||||
|         <el-date-picker | ||||
|           v-model="queryParams.expiryDate" | ||||
|           value-format="YYYY-MM-DD" | ||||
|           placeholder="请选择证证件到期时间" | ||||
|           type="date" | ||||
|           class="!w-240px" | ||||
|         /> | ||||
|       </el-form-item> | ||||
|       <el-form-item label="证件类型" prop="idType"> | ||||
|         <el-select | ||||
|           v-model="queryParams.idType" | ||||
|           placeholder="请选择证件类型" | ||||
|           clearable | ||||
|           class="!w-240px" | ||||
|         > | ||||
|           <el-option | ||||
|             v-for="dict in getIntDictOptions(DICT_TYPE.ENTERPRISE_DOCUMENT_TYPE)" | ||||
|             :key="dict.value" | ||||
|             :label="dict.label" | ||||
|             :value="dict.value" | ||||
|           /> | ||||
|         </el-select> | ||||
|       </el-form-item> | ||||
|       <el-form-item label="人员类型" prop="personnelType"> | ||||
|         <el-select | ||||
|           v-model="queryParams.personnelType" | ||||
|           placeholder="请选择人员类型" | ||||
|           clearable | ||||
|           class="!w-240px" | ||||
|         > | ||||
|           <el-option | ||||
|             v-for="dict in getIntDictOptions(DICT_TYPE.TYPES_OF_SECURITY_PERSONNEL)" | ||||
|             :key="dict.value" | ||||
|             :label="dict.label" | ||||
|             :value="dict.value" | ||||
|           /> | ||||
|         </el-select> | ||||
|       </el-form-item> | ||||
|       <el-form-item> | ||||
|         <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button> | ||||
|         <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button> | ||||
|       </el-form-item> | ||||
|     </el-form> | ||||
|   </ContentWrap> | ||||
| 
 | ||||
|   <!-- 列表 --> | ||||
|   <ContentWrap> | ||||
|     <el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true"> | ||||
|       <el-table-column label="企业名称" align="center" prop="enterpriseName" /> | ||||
|       <el-table-column label="证件类型" align="center" prop="idType" /> | ||||
|       <el-table-column label="证书编号" align="center" prop="certificateNumber" /> | ||||
|       <el-table-column label="姓名" align="center" prop="name" /> | ||||
|       <el-table-column label="性别" align="center" prop="sex" /> | ||||
|       <el-table-column label="人员类型" align="center" prop="personnelType" /> | ||||
|       <el-table-column label="发证机关" align="center" prop="licenceIssuingAuthority" /> | ||||
|       <el-table-column | ||||
|         label="发证日期" | ||||
|         align="center" | ||||
|         prop="dateOfIssue" | ||||
|         :formatter="dateFormatter" | ||||
|         width="180px" | ||||
|       /> | ||||
|       <el-table-column | ||||
|         label="到期时间" | ||||
|         align="center" | ||||
|         prop="expiryDate" | ||||
|         :formatter="dateFormatter2" | ||||
|         width="180px" | ||||
|       /> | ||||
|       <el-table-column label="操作" align="center"> | ||||
|         <template #default="scope"> | ||||
|           <el-button | ||||
|             link | ||||
|             type="primary" | ||||
|             @click="openForm('update', scope.row.id)" | ||||
|             > | ||||
| <!--            v-hasPermi="['fta:credential-management:update']"--> | ||||
| <!--          >--> | ||||
|             编辑 | ||||
|           </el-button> | ||||
|           <el-button | ||||
|             link | ||||
|             type="danger" | ||||
|             @click="handleDelete(scope.row.id)" | ||||
|             > | ||||
| <!--            v-hasPermi="['fta:credential-management:delete']"--> | ||||
|             删除 | ||||
|           </el-button> | ||||
|         </template> | ||||
|       </el-table-column> | ||||
|     </el-table> | ||||
|     <!-- 分页 --> | ||||
|     <Pagination | ||||
|       :total="total" | ||||
|       v-model:page="queryParams.pageNo" | ||||
|       v-model:limit="queryParams.pageSize" | ||||
|       @pagination="getList" | ||||
|     /> | ||||
|   </ContentWrap> | ||||
| 
 | ||||
|   <!-- 表单弹窗:添加/修改 --> | ||||
|   <CredentialManagementForm ref="formRef" @success="getList" /> | ||||
| </template> | ||||
| 
 | ||||
| <script setup lang="ts"> | ||||
| import {dateFormatter, dateFormatter2} from '@/utils/formatTime' | ||||
| import { DICT_TYPE, getIntDictOptions } from '@/utils/dict' | ||||
| import download from '@/utils/download' | ||||
| import { CredentialManagementApi, CredentialManagementVO } from '@/api/fta/credentialmanagement' | ||||
| import CredentialManagementForm from './CredentialManagementForm.vue' | ||||
| 
 | ||||
| /** 企业证件 列表 */ | ||||
| defineOptions({ name: 'CredentialManagement' }) | ||||
| 
 | ||||
| const message = useMessage() // 消息弹窗 | ||||
| const { t } = useI18n() // 国际化 | ||||
| 
 | ||||
| const loading = ref(true) // 列表的加载中 | ||||
| const list = ref<CredentialManagementVO[]>([]) // 列表的数据 | ||||
| const total = ref(0) // 列表的总页数 | ||||
| const queryParams = reactive({ | ||||
|   pageNo: 1, | ||||
|   pageSize: 10, | ||||
|   informationId: undefined, | ||||
|   businessPattern: undefined, | ||||
|   usefulLife: undefined, | ||||
|   licenceIssuingAuthority: undefined, | ||||
|   dateOfIssue: undefined, | ||||
|   dateOfIssue: [], | ||||
|   status: undefined, | ||||
|   createTime: [], | ||||
|   expiryDate: [], | ||||
|   idType: undefined, | ||||
|   certificateNumber: undefined, | ||||
|   name: undefined, | ||||
|   personnelType: undefined, | ||||
|   sex: undefined, | ||||
|   categoryOfEmployment: undefined, | ||||
|   enterpriseName: undefined, | ||||
| }) | ||||
| const queryFormRef = ref() // 搜索的表单 | ||||
| const exportLoading = ref(false) // 导出的加载中 | ||||
| 
 | ||||
| /** 查询列表 */ | ||||
| const getList = async () => { | ||||
|   loading.value = true | ||||
|   try { | ||||
|     const data = await CredentialManagementApi.getCredentialManagementPage(queryParams) | ||||
|     list.value = data.list | ||||
|     total.value = data.total | ||||
|   } finally { | ||||
|     loading.value = false | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| /** 搜索按钮操作 */ | ||||
| const handleQuery = () => { | ||||
|   queryParams.pageNo = 1 | ||||
|   getList() | ||||
| } | ||||
| 
 | ||||
| /** 重置按钮操作 */ | ||||
| const resetQuery = () => { | ||||
|   queryFormRef.value.resetFields() | ||||
|   handleQuery() | ||||
| } | ||||
| 
 | ||||
| /** 添加/修改操作 */ | ||||
| const formRef = ref() | ||||
| const openForm = (type: string, id?: number) => { | ||||
|   formRef.value.open(type, id) | ||||
| } | ||||
| 
 | ||||
| /** 删除按钮操作 */ | ||||
| const handleDelete = async (id: number) => { | ||||
|   try { | ||||
|     // 删除的二次确认 | ||||
|     await message.delConfirm() | ||||
|     // 发起删除 | ||||
|     await CredentialManagementApi.deleteCredentialManagement(id) | ||||
|     message.success(t('common.delSuccess')) | ||||
|     // 刷新列表 | ||||
|     await getList() | ||||
|   } catch {} | ||||
| } | ||||
| 
 | ||||
| /** 导出按钮操作 */ | ||||
| const handleExport = async () => { | ||||
|   try { | ||||
|     // 导出的二次确认 | ||||
|     await message.exportConfirm() | ||||
|     // 发起导出 | ||||
|     exportLoading.value = true | ||||
|     const data = await CredentialManagementApi.exportCredentialManagement(queryParams) | ||||
|     download.excel(data, '企业证件.xls') | ||||
|   } catch { | ||||
|   } finally { | ||||
|     exportLoading.value = false | ||||
|   } | ||||
| } | ||||
| 
 | ||||
| /** 初始化 **/ | ||||
| onMounted(() => { | ||||
|   getList() | ||||
| }) | ||||
| </script> | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user