You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
254 lines
7.1 KiB
254 lines
7.1 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<el-form
|
|
class="-mb-15px"
|
|
:model="queryParams"
|
|
ref="queryFormRef"
|
|
:inline="true"
|
|
label-width="140px"
|
|
>
|
|
<el-form-item label="隔离点类型" prop="ipType">
|
|
<el-select
|
|
v-model="queryParams.ipType"
|
|
placeholder="请选择隔离点类型"
|
|
clearable
|
|
class="!w-240px"
|
|
>
|
|
<el-option
|
|
v-for="item in getIntDictOptions(DICT_TYPE.LOCK_ISOLATION_TYPE)"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="隔离点名称" prop="ipName">
|
|
<el-input
|
|
v-model="queryParams.ipName"
|
|
placeholder="请输入隔离点名称"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="隔离点位置" prop="ipLocation">
|
|
<el-input
|
|
v-model="queryParams.ipLocation"
|
|
placeholder="请输入隔离点位置"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="隔离点编号" prop="ipNumber">
|
|
<el-input
|
|
v-model="queryParams.ipNumber"
|
|
placeholder="请输入隔离点编号"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-240px"
|
|
/>
|
|
</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-button
|
|
type="primary"
|
|
plain
|
|
@click="openForm('create')"
|
|
v-hasPermi="['isolation:point:create']"
|
|
>
|
|
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
|
</el-button>
|
|
<el-button
|
|
type="success"
|
|
plain
|
|
@click="handleExport"
|
|
:loading="exportLoading"
|
|
v-hasPermi="['isolation:point:export']"
|
|
>
|
|
<Icon icon="ep:download" class="mr-5px" /> 导出
|
|
</el-button>
|
|
<el-button
|
|
type="danger"
|
|
plain
|
|
:disabled="isEmpty(checkedIds)"
|
|
@click="handleDeleteBatch"
|
|
v-hasPermi="['isolation:point:delete']"
|
|
>
|
|
<Icon icon="ep:delete" class="mr-5px" /> 批量删除
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</ContentWrap>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<el-table
|
|
row-key="id"
|
|
v-loading="loading"
|
|
:data="list"
|
|
:stripe="true"
|
|
:show-overflow-tooltip="true"
|
|
@selection-change="handleRowCheckboxChange"
|
|
>
|
|
<el-table-column type="selection" width="55" />
|
|
<el-table-column label="隔离点类型" align="center" prop="ipType" />
|
|
<el-table-column label="隔离点名称" align="center" prop="ipName" />
|
|
<el-table-column label="隔离点位置" align="center" prop="ipLocation" />
|
|
<el-table-column label="隔离点编号" align="center" prop="ipNumber" />
|
|
<el-table-column label="隔离点状态" align="center" prop="status">
|
|
<template #default="scope">
|
|
<DictTag :type="DICT_TYPE.LOCK_ISOLATION_POINT_STATUS" :value="scope.row.status" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="锁数量" align="center" prop="guideLockNums" width="80px" />
|
|
<el-table-column label="操作" align="center" min-width="120px">
|
|
<template #default="scope">
|
|
<el-button link type="primary" @click="openForm('detail', scope.row.id)">
|
|
查看
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="openForm('update', scope.row.id)"
|
|
v-hasPermi="['isolation:point:update']"
|
|
>
|
|
编辑
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="danger"
|
|
@click="handleDelete(scope.row.id)"
|
|
v-hasPermi="['isolation:point: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>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<PointForm ref="formRef" @success="getList" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { isEmpty } from '@/utils/is'
|
|
import download from '@/utils/download'
|
|
import { PointApi, Point } from '@/api/isolation/point'
|
|
import PointForm from './PointForm.vue'
|
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
|
import { getDictLabel } from '@/utils/dict'
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
import { useElLockStore } from '@/store/modules/elLock'
|
|
|
|
/** 隔离点 列表 */
|
|
defineOptions({ name: 'Point' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
const elLockStore = useElLockStore()
|
|
const loading = ref(true) // 列表的加载中
|
|
const list = ref<Point[]>([]) // 列表的数据
|
|
const total = ref(0) // 列表的总页数
|
|
const queryParams = reactive({
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
ipType: undefined,
|
|
ipName: undefined,
|
|
ipLocation: undefined,
|
|
ipNumber: undefined,
|
|
createTime: []
|
|
})
|
|
const queryFormRef = ref() // 搜索的表单
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
|
|
/** 查询列表 */
|
|
const getList = async () => {
|
|
loading.value = true
|
|
try {
|
|
await elLockStore.init()
|
|
const data = await PointApi.getPointPage(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 PointApi.deletePoint(id)
|
|
message.success(t('common.delSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** 批量删除隔离点 */
|
|
const handleDeleteBatch = async () => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
await PointApi.deletePointList(checkedIds.value)
|
|
message.success(t('common.delSuccess'))
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
const checkedIds = ref<number[]>([])
|
|
const handleRowCheckboxChange = (records: Point[]) => {
|
|
checkedIds.value = records.map((item) => item.id)
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
exportLoading.value = true
|
|
const data = await PointApi.exportPoint(queryParams)
|
|
download.excel(data, '隔离点.xls')
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(() => {
|
|
getList()
|
|
})
|
|
</script>
|
|
|