|
@@ -1,202 +1,40 @@
|
|
|
-<template>
|
|
|
|
|
- <doc-alert title="用户体系" url="https://doc.iocoder.cn/user-center/" />
|
|
|
|
|
- <doc-alert title="三方登陆" url="https://doc.iocoder.cn/social-user/" />
|
|
|
|
|
- <doc-alert title="Excel 导入导出" url="https://doc.iocoder.cn/excel-import-and-export/" />
|
|
|
|
|
-
|
|
|
|
|
- <el-row :gutter="20">
|
|
|
|
|
- <!-- 左侧 设备分类 树 -->
|
|
|
|
|
- <el-col :span="4" :xs="24">
|
|
|
|
|
- <ContentWrap class="h-1/1">
|
|
|
|
|
- <DeviceCategoryTree @node-click="handleDeviceCategoryTreeNodeClick" />
|
|
|
|
|
- </ContentWrap>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="20" :xs="24">
|
|
|
|
|
- <!-- 搜索 -->
|
|
|
|
|
- <ContentWrap>
|
|
|
|
|
- <el-form
|
|
|
|
|
- class="-mb-15px"
|
|
|
|
|
- :model="queryParams"
|
|
|
|
|
- ref="queryFormRef"
|
|
|
|
|
- :inline="true"
|
|
|
|
|
- label-width="68px"
|
|
|
|
|
- >
|
|
|
|
|
- <el-form-item label="模板名称" prop="name">
|
|
|
|
|
- <el-input
|
|
|
|
|
- v-model="queryParams.name"
|
|
|
|
|
- placeholder="请输入模板名称"
|
|
|
|
|
- clearable
|
|
|
|
|
- @keyup.enter="handleQuery"
|
|
|
|
|
- class="!w-240px"
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="模板编码" prop="code">
|
|
|
|
|
- <el-input
|
|
|
|
|
- v-model="queryParams.code"
|
|
|
|
|
- placeholder="请输入模板编码"
|
|
|
|
|
- clearable
|
|
|
|
|
- @keyup.enter="handleQuery"
|
|
|
|
|
- class="!w-240px"
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="状态" prop="status">
|
|
|
|
|
- <el-select
|
|
|
|
|
- v-model="queryParams.status"
|
|
|
|
|
- placeholder="属性模板状态"
|
|
|
|
|
- clearable
|
|
|
|
|
- class="!w-240px"
|
|
|
|
|
- >
|
|
|
|
|
- <el-option
|
|
|
|
|
- v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
|
|
|
- :key="dict.value"
|
|
|
|
|
- :label="dict.label"
|
|
|
|
|
- :value="dict.value"
|
|
|
|
|
- />
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="创建时间" prop="createTime">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="queryParams.createTime"
|
|
|
|
|
- value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
- type="datetimerange"
|
|
|
|
|
- start-placeholder="开始日期"
|
|
|
|
|
- end-placeholder="结束日期"
|
|
|
|
|
- class="!w-240px"
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item>
|
|
|
|
|
- <el-button @click="handleQuery"><Icon icon="ep:search" />搜索</el-button>
|
|
|
|
|
- <el-button @click="resetQuery"><Icon icon="ep:refresh" />重置</el-button>
|
|
|
|
|
- <el-button
|
|
|
|
|
- type="primary"
|
|
|
|
|
- plain
|
|
|
|
|
- @click="openForm('create')"
|
|
|
|
|
- v-hasPermi="['rq:iot-device-template:create']"
|
|
|
|
|
- >
|
|
|
|
|
- <Icon icon="ep:plus" /> 新增
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <!--
|
|
|
|
|
- <el-button @click="handleAllQuery"><Icon icon="ep:search" />查询所有</el-button> -->
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-form>
|
|
|
|
|
- </ContentWrap>
|
|
|
|
|
- <ContentWrap>
|
|
|
|
|
- <el-table v-loading="loading" :data="list">
|
|
|
|
|
- <el-table-column label="序号" width="60" align="center">
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- {{ scope.$index + 1 }}
|
|
|
|
|
- </template>
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column
|
|
|
|
|
- label="模板编码"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="code"
|
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
|
- />
|
|
|
|
|
- <el-table-column
|
|
|
|
|
- label="模板名称"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="name"
|
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
|
- />
|
|
|
|
|
- <el-table-column
|
|
|
|
|
- label="设备分类名称"
|
|
|
|
|
- align="center"
|
|
|
|
|
- key="deviceCategoryName"
|
|
|
|
|
- prop="deviceCategoryName"
|
|
|
|
|
- :show-overflow-tooltip="true"
|
|
|
|
|
- />
|
|
|
|
|
- <el-table-column label="状态" key="status">
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- <el-switch
|
|
|
|
|
- v-model="scope.row.status"
|
|
|
|
|
- :active-value="0"
|
|
|
|
|
- :inactive-value="1"
|
|
|
|
|
- @change="handleStatusChange(scope.row)"
|
|
|
|
|
- :disabled="!checkPermi(['rq:iot-device-template:update'])"
|
|
|
|
|
- />
|
|
|
|
|
- </template>
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column
|
|
|
|
|
- label="创建时间"
|
|
|
|
|
- align="center"
|
|
|
|
|
- prop="createTime"
|
|
|
|
|
- :formatter="dateFormatter"
|
|
|
|
|
- width="180"
|
|
|
|
|
- />
|
|
|
|
|
- <el-table-column label="操作" align="center" width="160">
|
|
|
|
|
- <template #default="scope">
|
|
|
|
|
- <div class="flex items-center justify-center">
|
|
|
|
|
- <el-button
|
|
|
|
|
- type="primary"
|
|
|
|
|
- link
|
|
|
|
|
- @click="openDetail(scope.row)"
|
|
|
|
|
- >
|
|
|
|
|
- <Icon icon="ep:edit" />查看
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <el-button
|
|
|
|
|
- type="primary"
|
|
|
|
|
- link
|
|
|
|
|
- @click="openForm('update', scope.row.id)"
|
|
|
|
|
- v-hasPermi="['rq:iot-device-template:update']"
|
|
|
|
|
- >
|
|
|
|
|
- <Icon icon="ep:edit" />修改
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <el-dropdown
|
|
|
|
|
- @command="(command) => handleCommand(command, scope.row)"
|
|
|
|
|
- v-hasPermi="[
|
|
|
|
|
- 'rq:iot-device-template:delete'
|
|
|
|
|
- ]"
|
|
|
|
|
- >
|
|
|
|
|
- <el-button type="primary" link><Icon icon="ep:d-arrow-right" /> 更多</el-button>
|
|
|
|
|
- <template #dropdown>
|
|
|
|
|
- <el-dropdown-menu>
|
|
|
|
|
- <el-dropdown-item
|
|
|
|
|
- command="handleDelete"
|
|
|
|
|
- v-if="checkPermi(['rq:iot-device-template:delete'])"
|
|
|
|
|
- >
|
|
|
|
|
- <Icon icon="ep:delete" />删除
|
|
|
|
|
- </el-dropdown-item>
|
|
|
|
|
- </el-dropdown-menu>
|
|
|
|
|
- </template>
|
|
|
|
|
- </el-dropdown>
|
|
|
|
|
- </div>
|
|
|
|
|
- </template>
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- </el-table>
|
|
|
|
|
- <Pagination
|
|
|
|
|
- :total="total"
|
|
|
|
|
- v-model:page="queryParams.pageNo"
|
|
|
|
|
- v-model:limit="queryParams.pageSize"
|
|
|
|
|
- @pagination="getList"
|
|
|
|
|
- />
|
|
|
|
|
- </ContentWrap>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- </el-row>
|
|
|
|
|
-
|
|
|
|
|
- <!-- 添加或修改 属性模板 对话框 -->
|
|
|
|
|
- <TemplateForm ref="formRef" :category_id="selectedId" @success="getList" />
|
|
|
|
|
-</template>
|
|
|
|
|
<script lang="ts" setup>
|
|
<script lang="ts" setup>
|
|
|
|
|
+import { useTableComponents } from '@/components/ZmTable/useTableComponents'
|
|
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
|
|
import { checkPermi } from '@/utils/permission'
|
|
import { checkPermi } from '@/utils/permission'
|
|
|
-import { dateFormatter } from '@/utils/formatTime'
|
|
|
|
|
|
|
+import { dateFormatter, rangeShortcuts } from '@/utils/formatTime'
|
|
|
import { CommonStatusEnum } from '@/utils/constants'
|
|
import { CommonStatusEnum } from '@/utils/constants'
|
|
|
import * as DeviceTemplateApi from '@/api/pms/devicetemplate'
|
|
import * as DeviceTemplateApi from '@/api/pms/devicetemplate'
|
|
|
|
|
+import DeviceCategoryTree from '@/components/DeviceCategoryTree/index.vue'
|
|
|
import TemplateForm from './TemplateForm.vue'
|
|
import TemplateForm from './TemplateForm.vue'
|
|
|
-import DeviceCategoryTree from './DeviceCategoryTree.vue'
|
|
|
|
|
-import { useTreeStore } from '@/store/modules/attrTemplateTreeStore';
|
|
|
|
|
|
|
+import { useTreeStore } from '@/store/modules/attrTemplateTreeStore'
|
|
|
|
|
|
|
|
defineOptions({ name: 'DeviceAttrsTemplate' })
|
|
defineOptions({ name: 'DeviceAttrsTemplate' })
|
|
|
|
|
|
|
|
-const treeStore = useTreeStore();
|
|
|
|
|
-const message = useMessage() // 消息弹窗
|
|
|
|
|
-const { t } = useI18n() // 国际化
|
|
|
|
|
|
|
+type DeviceTemplateRow = Omit<DeviceTemplateApi.DeviceAttrTemplateVO, 'status'> & {
|
|
|
|
|
+ status?: number
|
|
|
|
|
+ deviceCategoryName?: string
|
|
|
|
|
+ createTime?: string
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+interface QueryParams extends PageParam {
|
|
|
|
|
+ name?: string
|
|
|
|
|
+ code?: string
|
|
|
|
|
+ status?: number
|
|
|
|
|
+ deviceCategoryId?: number
|
|
|
|
|
+ createTime?: string[]
|
|
|
|
|
+}
|
|
|
|
|
|
|
|
|
|
+const treeStore = useTreeStore()
|
|
|
|
|
+const message = useMessage()
|
|
|
|
|
+const { t } = useI18n()
|
|
|
const { push } = useRouter()
|
|
const { push } = useRouter()
|
|
|
-const loading = ref(true) // 列表的加载中
|
|
|
|
|
-const total = ref(0) // 列表的总页数
|
|
|
|
|
-const list = ref([]) // 列表的数
|
|
|
|
|
-const queryParams = reactive({
|
|
|
|
|
|
|
+const { ZmTable, ZmTableColumn } = useTableComponents<DeviceTemplateRow>()
|
|
|
|
|
+
|
|
|
|
|
+const loading = ref(true)
|
|
|
|
|
+const total = ref(0)
|
|
|
|
|
+const list = ref<DeviceTemplateRow[]>([])
|
|
|
|
|
+const queryParams = reactive<QueryParams>({
|
|
|
pageNo: 1,
|
|
pageNo: 1,
|
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
|
name: undefined,
|
|
name: undefined,
|
|
@@ -205,110 +43,323 @@ const queryParams = reactive({
|
|
|
deviceCategoryId: undefined,
|
|
deviceCategoryId: undefined,
|
|
|
createTime: []
|
|
createTime: []
|
|
|
})
|
|
})
|
|
|
-const queryFormRef = ref() // 搜索的表单
|
|
|
|
|
|
|
+const queryFormRef = ref()
|
|
|
|
|
+
|
|
|
|
|
+const selectedId = computed(() => treeStore.selectedId)
|
|
|
|
|
|
|
|
-// 从 Store 中获取左侧 设备分类树 选中的 节点ID
|
|
|
|
|
-const selectedId = computed(() => treeStore.selectedId);
|
|
|
|
|
|
|
+const normalizeStatus = (status: unknown) => {
|
|
|
|
|
+ const value = Number(status)
|
|
|
|
|
+ if (value === CommonStatusEnum.ENABLE || value === CommonStatusEnum.DISABLE) {
|
|
|
|
|
+ return value
|
|
|
|
|
+ }
|
|
|
|
|
+ return undefined
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+const isValidStatus = (status: unknown) => normalizeStatus(status) !== undefined
|
|
|
|
|
|
|
|
-/** 查询 设备属性模板 列表 */
|
|
|
|
|
const getList = async () => {
|
|
const getList = async () => {
|
|
|
loading.value = true
|
|
loading.value = true
|
|
|
try {
|
|
try {
|
|
|
const data = await DeviceTemplateApi.getDeviceTemplatePage(queryParams)
|
|
const data = await DeviceTemplateApi.getDeviceTemplatePage(queryParams)
|
|
|
- list.value = data.list
|
|
|
|
|
|
|
+ list.value = data.list.map((item: DeviceTemplateRow) => ({
|
|
|
|
|
+ ...item,
|
|
|
|
|
+ status: normalizeStatus(item.status)
|
|
|
|
|
+ }))
|
|
|
total.value = data.total
|
|
total.value = data.total
|
|
|
} finally {
|
|
} finally {
|
|
|
loading.value = false
|
|
loading.value = false
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 搜索按钮操作 */
|
|
|
|
|
const handleQuery = () => {
|
|
const handleQuery = () => {
|
|
|
queryParams.pageNo = 1
|
|
queryParams.pageNo = 1
|
|
|
getList()
|
|
getList()
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 搜索按钮操作 */
|
|
|
|
|
-const handleAllQuery = () => {
|
|
|
|
|
- queryParams.pageNo = 1
|
|
|
|
|
- queryParams.deviceCategoryId = ''
|
|
|
|
|
- getList()
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-/** 重置按钮操作 */
|
|
|
|
|
const resetQuery = () => {
|
|
const resetQuery = () => {
|
|
|
queryFormRef.value?.resetFields()
|
|
queryFormRef.value?.resetFields()
|
|
|
handleQuery()
|
|
handleQuery()
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 处理 设备分类树 被点击 */
|
|
|
|
|
-const handleDeviceCategoryTreeNodeClick = async (row) => {
|
|
|
|
|
|
|
+const handleSizeChange = (val: number) => {
|
|
|
|
|
+ queryParams.pageSize = val
|
|
|
|
|
+ handleQuery()
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+const handleCurrentChange = (val: number) => {
|
|
|
|
|
+ queryParams.pageNo = val
|
|
|
|
|
+ getList()
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+const handleDeviceCategoryTreeNodeClick = async (row: Tree) => {
|
|
|
|
|
+ treeStore.setSelectedId(row.id)
|
|
|
queryParams.deviceCategoryId = row.id
|
|
queryParams.deviceCategoryId = row.id
|
|
|
|
|
+ queryParams.pageNo = 1
|
|
|
await getList()
|
|
await getList()
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 添加/修改操作 */
|
|
|
|
|
const formRef = ref()
|
|
const formRef = ref()
|
|
|
const openForm = (type: string, id?: number) => {
|
|
const openForm = (type: string, id?: number) => {
|
|
|
formRef.value.open(type, id)
|
|
formRef.value.open(type, id)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 打开详情 */
|
|
|
|
|
-const openDetail = (row) => {
|
|
|
|
|
|
|
+const openDetail = (row: DeviceTemplateRow) => {
|
|
|
push({
|
|
push({
|
|
|
name: 'DeviceAttrTemplateModel',
|
|
name: 'DeviceAttrTemplateModel',
|
|
|
params: {
|
|
params: {
|
|
|
id: row.deviceCategoryId,
|
|
id: row.deviceCategoryId,
|
|
|
- // 添加额外参数
|
|
|
|
|
templateName: row.name,
|
|
templateName: row.name,
|
|
|
categoryName: row.deviceCategoryName
|
|
categoryName: row.deviceCategoryName
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 修改 设备属性模板 状态 */
|
|
|
|
|
-const handleStatusChange = async (row: DeviceTemplateApi.DeviceAttrTemplateVO) => {
|
|
|
|
|
|
|
+const getStatusText = (status: unknown) => {
|
|
|
|
|
+ const value = normalizeStatus(status)
|
|
|
|
|
+ if (value === CommonStatusEnum.ENABLE) return '启用'
|
|
|
|
|
+ if (value === CommonStatusEnum.DISABLE) return '停用'
|
|
|
|
|
+ return '未知'
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+const handleStatusChange = async (
|
|
|
|
|
+ row: DeviceTemplateRow,
|
|
|
|
|
+ nextStatus: string | number | boolean
|
|
|
|
|
+) => {
|
|
|
|
|
+ const status = normalizeStatus(nextStatus)
|
|
|
|
|
+ const oldStatus = normalizeStatus(row.status)
|
|
|
|
|
+ if (
|
|
|
|
|
+ !row.id ||
|
|
|
|
|
+ !row.name ||
|
|
|
|
|
+ status === undefined ||
|
|
|
|
|
+ oldStatus === undefined ||
|
|
|
|
|
+ status === oldStatus
|
|
|
|
|
+ ) {
|
|
|
|
|
+ return
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
try {
|
|
try {
|
|
|
- // 修改状态的二次确认
|
|
|
|
|
- const text = row.status === CommonStatusEnum.ENABLE ? '启用' : '停用'
|
|
|
|
|
- await message.confirm('确认要"' + text + '""' + row.name + '"属性模板吗?')
|
|
|
|
|
- // 发起修改状态
|
|
|
|
|
- await DeviceTemplateApi.updateDeviceTemplateStatus(row.id, row.status)
|
|
|
|
|
- // 刷新列表
|
|
|
|
|
|
|
+ await message.confirm(`确认要${getStatusText(status)}"${row.name}"属性模板吗?`)
|
|
|
|
|
+ row.status = status
|
|
|
|
|
+ await DeviceTemplateApi.updateDeviceTemplateStatus(row.id, status)
|
|
|
await getList()
|
|
await getList()
|
|
|
} catch {
|
|
} catch {
|
|
|
- // 取消后,进行恢复按钮
|
|
|
|
|
- row.status =
|
|
|
|
|
- row.status === CommonStatusEnum.ENABLE ? CommonStatusEnum.DISABLE : CommonStatusEnum.ENABLE
|
|
|
|
|
|
|
+ row.status = oldStatus
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 操作分发 */
|
|
|
|
|
-const handleCommand = (command: string, row: DeviceTemplateApi.DeviceAttrTemplateVO) => {
|
|
|
|
|
|
|
+const handleCommand = (command: string, row: DeviceTemplateRow) => {
|
|
|
switch (command) {
|
|
switch (command) {
|
|
|
case 'handleDelete':
|
|
case 'handleDelete':
|
|
|
- handleDelete(row.id)
|
|
|
|
|
|
|
+ handleDelete(row.id!)
|
|
|
break
|
|
break
|
|
|
default:
|
|
default:
|
|
|
break
|
|
break
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 删除按钮操作 */
|
|
|
|
|
const handleDelete = async (id: number) => {
|
|
const handleDelete = async (id: number) => {
|
|
|
try {
|
|
try {
|
|
|
- // 删除的二次确认
|
|
|
|
|
await message.delConfirm()
|
|
await message.delConfirm()
|
|
|
- // 发起删除
|
|
|
|
|
await DeviceTemplateApi.deleteDeviceTemplate(id)
|
|
await DeviceTemplateApi.deleteDeviceTemplate(id)
|
|
|
message.success(t('common.delSuccess'))
|
|
message.success(t('common.delSuccess'))
|
|
|
- // 刷新列表
|
|
|
|
|
await getList()
|
|
await getList()
|
|
|
} catch {}
|
|
} catch {}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 初始化 */
|
|
|
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
|
getList()
|
|
getList()
|
|
|
})
|
|
})
|
|
|
</script>
|
|
</script>
|
|
|
|
|
+
|
|
|
|
|
+<template>
|
|
|
|
|
+ <div
|
|
|
|
|
+ class="grid grid-cols-[auto_1fr] grid-rows-[auto_1fr] gap-4 h-[calc(100vh-20px-var(--top-tool-height)-var(--tags-view-height)-var(--app-footer-height))]"
|
|
|
|
|
+ >
|
|
|
|
|
+ <DeviceCategoryTree
|
|
|
|
|
+ v-model="queryParams.deviceCategoryId"
|
|
|
|
|
+ :show-title="false"
|
|
|
|
|
+ @node-click="handleDeviceCategoryTreeNodeClick"
|
|
|
|
|
+ />
|
|
|
|
|
+
|
|
|
|
|
+ <el-form
|
|
|
|
|
+ ref="queryFormRef"
|
|
|
|
|
+ :model="queryParams"
|
|
|
|
|
+ size="default"
|
|
|
|
|
+ label-width="68px"
|
|
|
|
|
+ class="bg-white dark:bg-[#1d1e1f] rounded-lg shadow px-8 py-3 gap-6 flex items-center justify-between flex-wrap min-w-0"
|
|
|
|
|
+ >
|
|
|
|
|
+ <div class="flex items-center gap-6 flex-wrap">
|
|
|
|
|
+ <el-form-item label="模板名称" prop="name">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.name"
|
|
|
|
|
+ placeholder="请输入模板名称"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ class="!w-200px"
|
|
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="模板编码" prop="code">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.code"
|
|
|
|
|
+ placeholder="请输入模板编码"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ class="!w-200px"
|
|
|
|
|
+ @keyup.enter="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="状态" prop="status">
|
|
|
|
|
+ <el-select
|
|
|
|
|
+ v-model="queryParams.status"
|
|
|
|
|
+ placeholder="请选择状态"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ class="!w-180px"
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
|
|
|
+ :key="dict.value"
|
|
|
|
|
+ :label="dict.label"
|
|
|
|
|
+ :value="dict.value"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="创建时间" prop="createTime">
|
|
|
|
|
+ <el-date-picker
|
|
|
|
|
+ v-model="queryParams.createTime"
|
|
|
|
|
+ value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
+ type="datetimerange"
|
|
|
|
|
+ start-placeholder="开始日期"
|
|
|
|
|
+ end-placeholder="结束日期"
|
|
|
|
|
+ :shortcuts="rangeShortcuts"
|
|
|
|
|
+ :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
|
|
|
+ class="!w-320px"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <el-form-item>
|
|
|
|
|
+ <el-button type="primary" @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="['rq:iot-device-template:create']"
|
|
|
|
|
+ >
|
|
|
|
|
+ <Icon icon="ep:plus" class="mr-5px" />新增
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="bg-white dark:bg-[#1d1e1f] shadow rounded-lg flex flex-col p-4 min-w-0">
|
|
|
|
|
+ <div class="flex-1 relative min-h-0">
|
|
|
|
|
+ <el-auto-resizer class="absolute">
|
|
|
|
|
+ <template #default="{ width, height }">
|
|
|
|
|
+ <ZmTable
|
|
|
|
|
+ :data="list"
|
|
|
|
|
+ :loading="loading"
|
|
|
|
|
+ :width="width"
|
|
|
|
|
+ :height="height"
|
|
|
|
|
+ :max-height="height"
|
|
|
|
|
+ show-border
|
|
|
|
|
+ >
|
|
|
|
|
+ <ZmTableColumn
|
|
|
|
|
+ type="index"
|
|
|
|
|
+ label="序号"
|
|
|
|
|
+ :width="60"
|
|
|
|
|
+ fixed="left"
|
|
|
|
|
+ hide-in-column-settings
|
|
|
|
|
+ />
|
|
|
|
|
+ <ZmTableColumn prop="code" label="模板编码" fixed="left" />
|
|
|
|
|
+ <ZmTableColumn prop="name" label="模板名称" fixed="left" />
|
|
|
|
|
+ <ZmTableColumn prop="deviceCategoryName" label="设备分类名称" />
|
|
|
|
|
+ <ZmTableColumn
|
|
|
|
|
+ prop="status"
|
|
|
|
|
+ label="状态"
|
|
|
|
|
+ :real-value="(row) => getStatusText(row.status)"
|
|
|
|
|
+ :width="90"
|
|
|
|
|
+ >
|
|
|
|
|
+ <template #default="{ row }">
|
|
|
|
|
+ <el-switch
|
|
|
|
|
+ v-if="isValidStatus(row.status)"
|
|
|
|
|
+ :model-value="row.status"
|
|
|
|
|
+ :active-value="0"
|
|
|
|
|
+ :inactive-value="1"
|
|
|
|
|
+ :disabled="!checkPermi(['rq:iot-device-template:update'])"
|
|
|
|
|
+ @change="(status) => handleStatusChange(row, status)"
|
|
|
|
|
+ />
|
|
|
|
|
+ <el-tag v-else type="info">未知</el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </ZmTableColumn>
|
|
|
|
|
+ <ZmTableColumn
|
|
|
|
|
+ prop="createTime"
|
|
|
|
|
+ label="创建时间"
|
|
|
|
|
+ :formatter="dateFormatter"
|
|
|
|
|
+ width="180"
|
|
|
|
|
+ />
|
|
|
|
|
+ <ZmTableColumn label="操作" width="220" fixed="right" action>
|
|
|
|
|
+ <template #default="{ row }">
|
|
|
|
|
+ <div class="flex items-center justify-center gap-2">
|
|
|
|
|
+ <el-button type="primary" link @click="openDetail(row)">
|
|
|
|
|
+ <Icon icon="ep:view" class="mr-3px" />查看
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ link
|
|
|
|
|
+ @click="openForm('update', row.id)"
|
|
|
|
|
+ v-hasPermi="['rq:iot-device-template:update']"
|
|
|
|
|
+ >
|
|
|
|
|
+ <Icon icon="ep:edit" class="mr-3px" />修改
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-dropdown
|
|
|
|
|
+ @command="(command) => handleCommand(command, row)"
|
|
|
|
|
+ v-hasPermi="['rq:iot-device-template:delete']"
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-button type="primary" link>
|
|
|
|
|
+ <Icon icon="ep:more-filled" class="mr-3px" />更多
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <template #dropdown>
|
|
|
|
|
+ <el-dropdown-menu>
|
|
|
|
|
+ <el-dropdown-item
|
|
|
|
|
+ command="handleDelete"
|
|
|
|
|
+ v-if="checkPermi(['rq:iot-device-template:delete'])"
|
|
|
|
|
+ >
|
|
|
|
|
+ <Icon icon="ep:delete" class="mr-5px" />删除
|
|
|
|
|
+ </el-dropdown-item>
|
|
|
|
|
+ </el-dropdown-menu>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-dropdown>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </ZmTableColumn>
|
|
|
|
|
+ </ZmTable>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-auto-resizer>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="h-8 mt-2 flex items-center justify-end">
|
|
|
|
|
+ <el-pagination
|
|
|
|
|
+ v-show="total > 0"
|
|
|
|
|
+ size="default"
|
|
|
|
|
+ :current-page="queryParams.pageNo"
|
|
|
|
|
+ :page-size="queryParams.pageSize"
|
|
|
|
|
+ :background="true"
|
|
|
|
|
+ :page-sizes="[10, 20, 30, 50, 100]"
|
|
|
|
|
+ :total="total"
|
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
+ @size-change="handleSizeChange"
|
|
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
|
|
+ />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <TemplateForm ref="formRef" :category_id="selectedId" @success="getList" />
|
|
|
|
|
+</template>
|
|
|
|
|
+
|
|
|
|
|
+<style scoped>
|
|
|
|
|
+:deep(.el-form-item) {
|
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
|
+}
|
|
|
|
|
+</style>
|