<!-- 无线电库列表 --> <script lang="ts" setup name="EquipmentMonitorRadioList"> import type { Ref } from 'vue' import { ElLoading, ElMessage, ElMessageBox } from 'element-plus' import type { DateModelType } from 'element-plus' import type { IList, IListQuery } from './radio-interface' import type { TableColumn } from '@/components/NormalTable/table_interface' import { exportFile } from '@/utils/exportUtils' import { batchDelete, exportMonitorRadioList, getMonitorRadioList } from '@/api/equipment/monitor/radio' const $router = useRouter() const loadingTable = ref(false) // 查询条件 const listQuery: Ref<IListQuery> = ref({ belongSystem: '', // 所属系统 equipmentName: '', // 智能模型名称 equipmentNo: '', // 智能模型编号 location: '', // 地点 limit: 20, offset: 1, }) const dateRange = ref<[DateModelType, DateModelType]>(['', ''])// 筛选时间段数据 // 表头 const columns = ref<TableColumn[]>([ { text: '统一编号', value: 'equipmentNo', align: 'center', width: '160' }, { text: '智能模型名称', value: 'equipmentName', align: 'center' }, { text: '地点', value: 'location', align: 'center' }, { text: '发射频段', value: 'transmitFrequencyBand', align: 'center' }, { text: '发射功率', value: 'transmitPower', align: 'center' }, { text: '接收频段', value: 'receiveFrequencyBand', align: 'center' }, { text: '接收灵敏度', value: 'receiverSensitivity', align: 'center' }, { text: '所属系统', value: 'belongSystem', align: 'center' }, { text: '频谱特征', value: 'spectralCharacteristics', align: 'center' }, ]) const list = ref<IList[]>([]) // 列表 const total = ref(0) // 数据总条数 // 选中的内容 const checkoutList = ref<string[]>([]) // --------------------------------------------------------------------------------------------------------- // 多选发生改变时 function handleSelectionChange(e: any) { checkoutList.value = e.map((item: { id: string }) => item.id) } // 数据查询 function fetchData(isNowPage = false) { loadingTable.value = true if (!isNowPage) { // 是否显示当前页,否则跳转第一页 listQuery.value.offset = 1 } getMonitorRadioList(listQuery.value).then((response) => { list.value = response.data.rows total.value = parseInt(response.data.total) loadingTable.value = false }) } // 清除条件 const clearList = () => { listQuery.value = { belongSystem: '', // 所属系统 equipmentName: '', // 智能模型名称 equipmentNo: '', // 智能模型编号 location: '', // 地点 limit: 20, offset: 1, } dateRange.value = ['', ''] fetchData() } // 搜索 const searchList = () => { fetchData(true) } // 新建 const add = () => { $router.push({ path: 'radio/add', }) } // 页数发生变化后的操作,可能是页码变化,可能是每页容量变化,此函数必写 const changePage = (val: { size?: number; page?: number }) => { if (val && val.size) { listQuery.value.limit = val.size } if (val && val.page) { listQuery.value.offset = val.page } fetchData(true) } // 操作 const handleEdit = (row: IList, val: string) => { switch (val) { case 'delete': ElMessageBox.confirm( '确认删除吗?', '提示', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning', }, ) .then(() => { batchDelete({ ids: [row.id] }).then((res) => { ElMessage({ type: 'success', message: '删除成功', }) fetchData(true) }) }) break default: $router.push({ path: `radio/${val}/${row.id}`, }) break } } // 导出 const exportAll = () => { const loading = ElLoading.service({ lock: true, text: '下载中请稍后', background: 'rgba(255, 255, 255, 0.6)', }) if (list.value.length > 0) { const params = { belongSystem: listQuery.value.belongSystem, // 所属系统 equipmentName: listQuery.value.equipmentName, // 智能模型名称 equipmentNo: listQuery.value.equipmentNo, // 智能模型编号 location: listQuery.value.location, // 地点 offset: 1, limit: 20, ids: checkoutList.value, } exportMonitorRadioList(params).then((res) => { const blob = new Blob([res.data]) loading.close() exportFile(blob, '无线电库.xlsx') }) } else { loading.close() ElMessage.warning('无数据可导出数据') } } // ---------------------------------------钩子---------------------------------------------- onMounted(() => { fetchData(false) }) </script> <template> <div> <!-- 布局 --> <app-container> <search-area :need-clear="true" @search="searchList" @clear="clearList"> <search-item> <el-input v-model.trim="listQuery.equipmentNo" placeholder="统一编号" class="short-input" clearable /> </search-item> <search-item> <el-input v-model.trim="listQuery.equipmentName" placeholder="智能模型名称" class="short-input" clearable /> </search-item> <search-item> <el-input v-model.trim="listQuery.location" placeholder="地点" class="short-input" clearable /> </search-item> <search-item> <el-input v-model.trim="listQuery.belongSystem" placeholder="所属系统" class="short-input" clearable /> </search-item> </search-area> <table-container> <template #btns-right> <icon-button icon="icon-add" title="新建" type="primary" @click="add" /> <icon-button icon="icon-export" title="导出" type="primary" @click="exportAll" /> </template> <normal-table :data="list" :total="total" :columns="columns" :query="listQuery" :list-loading="loadingTable" is-showmulti-select @change="changePage" @multi-select="handleSelectionChange" > <template #preColumns> <el-table-column label="序号" width="55" align="center"> <template #default="scope"> {{ (listQuery.offset - 1) * listQuery.limit + scope.$index + 1 }} </template> </el-table-column> </template> <template #columns> <el-table-column label="操作" align="center" fixed="right" width="150" > <template #default="{ row }"> <el-button size="small" type="primary" link @click="handleEdit(row, 'detail')" > 查看 </el-button> <el-button size="small" link type="primary" @click="handleEdit(row, 'edit')" > 编辑 </el-button> <el-button size="small" type="danger" link @click="handleEdit(row, 'delete')" > 删除 </el-button> </template> </el-table-column> </template> </normal-table> </table-container> </app-container> </div> </template>