<!-- 分包证书 --> <script lang="ts" setup name="SubpackageCertificate"> import { reactive, ref } from 'vue' import { ElLoading, ElMessage, ElMessageBox } from 'element-plus' import { deleteCertificate, exportCertificate, getListPage } from '@/api/eqpt/subpackage/certificate' import { printJSON } from '@/utils/printUtils' import { exportFile } from '@/utils/exportUtils' const { proxy } = getCurrentInstance() as any const listQuery = reactive({ certificateName: '', certificateNo: '', createTimeEnd: '', createTimeStart: '', equipmentName: '', equipmentNo: '', subcontractorName: '', offset: 1, limit: 20, }) const datetimerange = ref() watch(() => datetimerange.value, (newVal) => { if (newVal.length) { listQuery.createTimeStart = `${newVal[0]} 00:00:00` listQuery.createTimeEnd = `${newVal[1]} 23:59:59` } else { listQuery.createTimeStart = '' listQuery.createTimeEnd = '' } }, { deep: true, }) const columns = ref([ { text: '证书号', value: 'certificateNo', align: 'center', }, { text: '证书名称', value: 'certificateName', align: 'center', }, { text: '样品编号', value: 'equipmentNo', align: 'center', }, { text: '样品名称', value: 'equipmentName', align: 'center', }, { text: '型号', value: 'equipmentModel', align: 'center', }, { text: '出厂编号', value: 'equipmentManufactureNo', align: 'center', }, { text: '检测单位', value: 'subcontractorName', align: 'center', }, { text: '创建时间', value: 'createTime', align: 'center', }, ]) const list = ref([]) const total = ref(0) const listLoading = ref(true) // 获取数据 const fetchData = (isNowPage = true) => { listLoading.value = true if (!isNowPage) { // 是否显示当前页,否则跳转第一页 listQuery.offset = 1 } getListPage(listQuery).then((response) => { list.value = response.data.rows total.value = parseInt(response.data.total) listLoading.value = false }) } fetchData() // 查询数据 const search = () => { fetchData(false) } // 重置 const reset = () => { datetimerange.value = '' listQuery.certificateName = '' listQuery.certificateNo = '' listQuery.createTimeEnd = '' listQuery.createTimeStart = '' listQuery.equipmentName = '' listQuery.equipmentNo = '' listQuery.subcontractorName = '' listQuery.offset = 1 listQuery.limit = 20 search() } // 页数发生变化后的操作,可能是页码变化,可能是每页容量变化,此函数必写 const changePage = (val: { size: number; page: number }) => { if (val && val.size) { listQuery.limit = val.size } if (val && val.page) { listQuery.offset = val.page } fetchData() } // 表格被选中的行 const selectList = ref<any[]>([]) // 表格多选 const multiSelect = (row: any[]) => { selectList.value = row } const $router = useRouter() // 新建编辑操作 const handler = (row: any, type: string) => { $router.push({ path: `/pcertificatepage/${type}`, query: { row: JSON.stringify(row), id: row.id, }, }) } // 删除 const delHandler = (row: any) => { console.log(row, 'row') ElMessageBox.confirm( '确认删除吗?', '确认', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning', }, ).then(() => { deleteCertificate(row).then((res) => { ElMessage.success('操作成功') search() }) }) } // 打印列表 const printList = () => { if (list.value.length) { const properties = columns.value.map((item) => { return { field: item.value, displayName: item.text, } }) printJSON(list.value, properties, '分包方证书') } else { ElMessage.warning('无可打印内容') } } // 导出列表 const exportList = () => { if (list.value.length) { const loading = ElLoading.service({ lock: true, text: 'Loading', background: 'rgba(255, 255, 255, 0.8)', }) const data = { ...listQuery, offset: undefined, limit: undefined, ids: selectList.value.map(item => item.id), } const fd = new FormData() fd.append('certificateName', data.certificateName) fd.append('certificateNo', data.certificateNo) fd.append('createTimeEnd', data.createTimeEnd) fd.append('createTimeStart', data.createTimeStart) fd.append('equipmentName', data.equipmentName) fd.append('equipmentNo', data.equipmentNo) fd.append('ids', data.ids) fd.append('subcontractorName', data.subcontractorName) exportCertificate(fd).then((res) => { exportFile(res.data, '分包方证书') loading.close() }) .catch((_) => { loading.close() }) } else { ElMessage.warning('无可导出内容') } } </script> <template> <app-container> <!-- 筛选条件 --> <search-area :need-clear="true" @search="search" @clear="reset"> <search-item> <el-input v-model.trim="listQuery.certificateNo" placeholder="证书号" clearable /> </search-item> <search-item> <el-input v-model.trim="listQuery.certificateName" placeholder="证书名称" clearable /> </search-item> <search-item> <el-input v-model.trim="listQuery.equipmentNo" placeholder="受检设备编号" clearable /> </search-item> <search-item> <el-input v-model.trim="listQuery.equipmentName" placeholder="受检设备名称" clearable /> </search-item> <search-item> <el-input v-model.trim="listQuery.subcontractorName" placeholder="检测单位" clearable /> </search-item> <search-item> <el-date-picker v-model="datetimerange" type="daterange" value-format="YYYY-MM-DD" format="YYYY-MM-DD" range-separator="至" start-placeholder="创建开始时间" end-placeholder="创建结束时间" /> </search-item> </search-area> <table-container> <template #btns-right> <icon-button icon="icon-add" title="新增" @click="handler({}, 'create')" /> <icon-button icon="icon-import" title="批量导入" /> <icon-button icon="icon-template" title="模板下载" /> <icon-button icon="icon-export" title="导出" @click="exportList" /> <icon-button icon="icon-print" title="打印" @click="printList" /> </template> <!-- 普通表格 --> <normal-table :data="list" :total="total" :columns="columns" :query="listQuery" :list-loading="listLoading" :is-showmulti-select="true" :is-multi="true" @change="changePage" @multi-select="multiSelect" > <template #columns> <el-table-column label="操作" width="160" align="center"> <template #default="scope"> <el-button link type="primary" size="small" @click="handler(scope.row, 'detail')"> 查看 </el-button> <el-button link type="primary" size="small" @click="handler(scope.row, 'update')"> 编辑 </el-button> <el-button link type="danger" size="small" @click="delHandler(scope.row)"> 删除 </el-button> </template> </el-table-column> </template> </normal-table> </table-container> </app-container> </template>