|
@@ -1,4 +1,4 @@
|
|
|
-<!-- 产品的物模型列表 -->
|
|
|
+<!-- 设备分类属性列表 -->
|
|
|
<template>
|
|
|
<ContentWrap>
|
|
|
<!-- 搜索工作栏 -->
|
|
@@ -19,13 +19,13 @@
|
|
|
重置
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
- v-hasPermi="[`iot:thing-model:create`]"
|
|
|
+ v-hasPermi="[`pms:iot-device-category-template-attrs:create`]"
|
|
|
plain
|
|
|
type="primary"
|
|
|
@click="openForm('create')"
|
|
|
>
|
|
|
<Icon class="mr-5px" icon="ep:plus" />
|
|
|
- 添加功能
|
|
|
+ 添加属性
|
|
|
</el-button>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
@@ -35,19 +35,14 @@
|
|
|
<ContentWrap>
|
|
|
<el-tabs>
|
|
|
<el-table v-loading="loading" :data="list" :show-overflow-tooltip="true" :stripe="true">
|
|
|
- <el-table-column align="center" label="功能类型" prop="type">
|
|
|
- <template #default="scope">
|
|
|
- <dict-tag :type="DICT_TYPE.IOT_THING_MODEL_TYPE" :value="scope.row.type" />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" label="功能名称" prop="name" />
|
|
|
- <el-table-column align="center" label="标识符" prop="identifier" />
|
|
|
- <el-table-column align="center" label="数据类型" prop="identifier">
|
|
|
+ <el-table-column align="center" label="属性名称" prop="name" />
|
|
|
+ <el-table-column align="center" label="标识符" prop="code" />
|
|
|
+ <el-table-column align="center" label="数据类型" prop="code">
|
|
|
<template #default="{ row }">
|
|
|
- {{ dataTypeOptionsLabel(row.property?.dataType) ?? '-' }}
|
|
|
+ {{ dataTypeOptionsLabel(row.selectOptions?.type) ?? '-' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="数据定义" prop="identifier">
|
|
|
+ <el-table-column align="left" label="数据定义" prop="code">
|
|
|
<template #default="{ row }">
|
|
|
<DataDefinition :data="row" />
|
|
|
</template>
|
|
@@ -55,7 +50,7 @@
|
|
|
<el-table-column align="center" label="操作">
|
|
|
<template #default="scope">
|
|
|
<el-button
|
|
|
- v-hasPermi="[`iot:thing-model:update`]"
|
|
|
+ v-hasPermi="[`pms:iot-device-category-template-attrs:update`]"
|
|
|
link
|
|
|
type="primary"
|
|
|
@click="openForm('update', scope.row.id)"
|
|
@@ -63,7 +58,7 @@
|
|
|
编辑
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
- v-hasPermi="['iot:thing-model:delete']"
|
|
|
+ v-hasPermi="['pms:iot-device-category-template-attrs:delete']"
|
|
|
link
|
|
|
type="danger"
|
|
|
@click="handleDelete(scope.row.id)"
|
|
@@ -83,42 +78,48 @@
|
|
|
</el-tabs>
|
|
|
</ContentWrap>
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
|
- <ThingModelForm ref="formRef" @success="getList" />
|
|
|
+ <AttrTemplateModelForm ref="formRef" @success="getList" />
|
|
|
</template>
|
|
|
<script lang="ts" setup>
|
|
|
-import { ThingModelApi, ThingModelData } from '@/api/iot/thingmodel'
|
|
|
-import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
|
|
-import ThingModelForm from './AttrTemplateModelForm.vue'
|
|
|
-import { ProductVO } from '@/api/iot/product/product'
|
|
|
+import { DeviceAttrModelApi, DeviceAttrModelData } from '@/api/pms/deviceattrmodel'
|
|
|
+import AttrTemplateModelForm from './AttrTemplateModelForm.vue'
|
|
|
+import * as DeviceTemplateApi from '@/api/pms/devicetemplate'
|
|
|
import { IOT_PROVIDE_KEY } from '@/views/iot/utils/constants'
|
|
|
import { getDataTypeOptionsLabel } from './config'
|
|
|
import { DataDefinition } from '../components'
|
|
|
+import {useTagsViewStore} from "@/store/modules/tagsView";
|
|
|
+
|
|
|
+const { delView } = useTagsViewStore() // 视图操作
|
|
|
+const route = useRoute()
|
|
|
+const { currentRoute } = useRouter()
|
|
|
|
|
|
defineOptions({ name: 'DeviceAttrTemplateModel' })
|
|
|
|
|
|
+const deviceCategoryId = route.params.id // 设备分类id
|
|
|
const { t } = useI18n() // 国际化
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
|
const loading = ref(true) // 列表的加载中
|
|
|
-const list = ref<ThingModelData[]>([]) // 列表的数据
|
|
|
+const list = ref<DeviceAttrModelData[]>([]) // 列表的数据
|
|
|
const total = ref(0) // 列表的总页数
|
|
|
const queryParams = reactive({
|
|
|
pageNo: 1,
|
|
|
pageSize: 10,
|
|
|
type: undefined,
|
|
|
- productId: -1
|
|
|
+ deviceCategoryId: -1
|
|
|
})
|
|
|
|
|
|
const queryFormRef = ref() // 搜索的表单
|
|
|
-const product = inject<Ref<ProductVO>>(IOT_PROVIDE_KEY.PRODUCT) // 注入产品信息
|
|
|
+const template = inject<Ref<DeviceTemplateApi.DeviceAttrTemplateVO>>(IOT_PROVIDE_KEY.DEVICE_ATTR_TEMPLATE) // 注入设备属性模板信息
|
|
|
const dataTypeOptionsLabel = computed(() => (value: string) => getDataTypeOptionsLabel(value)) // 解析数据类型
|
|
|
|
|
|
/** 查询列表 */
|
|
|
const getList = async () => {
|
|
|
loading.value = true
|
|
|
try {
|
|
|
- queryParams.productId = product?.value?.id || -1
|
|
|
- const data = await ThingModelApi.getThingModelPage(queryParams)
|
|
|
+ // queryParams.deviceCategoryId = template?.value?.deviceCategoryId || -1
|
|
|
+ queryParams.deviceCategoryId = deviceCategoryId
|
|
|
+ const data = await DeviceAttrModelApi.getDeviceAttrModelPage(queryParams)
|
|
|
list.value = data.list
|
|
|
total.value = data.total
|
|
|
} finally {
|
|
@@ -151,7 +152,7 @@ const handleDelete = async (id: number) => {
|
|
|
// 删除的二次确认
|
|
|
await message.delConfirm()
|
|
|
// 发起删除
|
|
|
- await ThingModelApi.deleteThingModel(id)
|
|
|
+ await DeviceAttrModelApi.deleteDeviceAttrModel(id)
|
|
|
message.success(t('common.delSuccess'))
|
|
|
// 刷新列表
|
|
|
await getList()
|
|
@@ -160,6 +161,11 @@ const handleDelete = async (id: number) => {
|
|
|
|
|
|
/** 初始化 **/
|
|
|
onMounted(() => {
|
|
|
+ if (!deviceCategoryId) {
|
|
|
+ message.warning('参数错误,设备属性模板不能为空!')
|
|
|
+ delView(unref(currentRoute))
|
|
|
+ return
|
|
|
+ }
|
|
|
getList()
|
|
|
})
|
|
|
</script>
|