2025-03-18 17:37:58 +08:00
|
|
|
|
<template>
|
2025-03-20 18:46:59 +08:00
|
|
|
|
<Dialog :title="dialogTitle" v-model="dialogVisible" width="1080px">
|
2025-03-18 17:37:58 +08:00
|
|
|
|
<el-form
|
|
|
|
|
|
ref="formRef"
|
|
|
|
|
|
:model="formData"
|
|
|
|
|
|
:rules="formRules"
|
|
|
|
|
|
label-width="100px"
|
|
|
|
|
|
v-loading="formLoading"
|
|
|
|
|
|
>
|
2025-03-20 18:02:58 +08:00
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
<el-form-item label="场景名称" prop="name">
|
|
|
|
|
|
<el-input v-model="formData.name" placeholder="请输入场景名称" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
<el-form-item label="场景状态" prop="status">
|
|
|
|
|
|
<el-radio-group v-model="formData.status">
|
|
|
|
|
|
<el-radio
|
|
|
|
|
|
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
|
|
|
|
:key="dict.value"
|
2025-03-29 20:27:38 +08:00
|
|
|
|
:value="dict.value"
|
2025-03-20 18:02:58 +08:00
|
|
|
|
>
|
|
|
|
|
|
{{ dict.label }}
|
|
|
|
|
|
</el-radio>
|
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<el-form-item label="场景描述" prop="description">
|
|
|
|
|
|
<el-input v-model="formData.description" type="textarea" placeholder="请输入场景描述" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<el-divider content-position="left">触发器配置</el-divider>
|
2025-03-20 18:46:59 +08:00
|
|
|
|
<device-listener
|
|
|
|
|
|
v-for="(trigger, index) in formData.triggers"
|
2025-03-29 14:34:56 +08:00
|
|
|
|
:key="trigger.key"
|
2025-03-21 13:30:22 +08:00
|
|
|
|
:model-value="trigger"
|
|
|
|
|
|
@update:model-value="(val) => (formData.triggers[index] = val)"
|
2025-03-20 18:46:59 +08:00
|
|
|
|
class="mb-10px"
|
2025-03-21 13:30:22 +08:00
|
|
|
|
>
|
2025-03-25 16:19:56 +08:00
|
|
|
|
<el-button type="danger" round size="small" @click="removeTrigger(index)">
|
|
|
|
|
|
<Icon icon="ep:delete" />
|
|
|
|
|
|
</el-button>
|
2025-03-21 13:30:22 +08:00
|
|
|
|
</device-listener>
|
2025-03-25 17:39:53 +08:00
|
|
|
|
<el-button class="ml-10px!" type="primary" size="small" @click="addTrigger">
|
|
|
|
|
|
添加触发器
|
|
|
|
|
|
</el-button>
|
2025-03-20 18:02:58 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="24">
|
2025-03-28 15:54:12 +08:00
|
|
|
|
<el-divider content-position="left">执行器配置</el-divider>
|
|
|
|
|
|
<action-executor
|
|
|
|
|
|
v-for="(action, index) in formData.actions"
|
2025-03-29 14:34:56 +08:00
|
|
|
|
:key="action.key"
|
2025-03-28 15:54:12 +08:00
|
|
|
|
:model-value="action"
|
|
|
|
|
|
@update:model-value="(val) => (formData.actions[index] = val)"
|
|
|
|
|
|
class="mb-10px"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-button type="danger" round size="small" @click="removeAction(index)">
|
|
|
|
|
|
<Icon icon="ep:delete" />
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
</action-executor>
|
|
|
|
|
|
<el-button class="ml-10px!" type="primary" size="small" @click="addAction">
|
|
|
|
|
|
添加执行器
|
|
|
|
|
|
</el-button>
|
2025-03-20 18:02:58 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
2025-03-18 17:37:58 +08:00
|
|
|
|
</el-form>
|
|
|
|
|
|
<template #footer>
|
|
|
|
|
|
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
|
|
|
|
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</Dialog>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
2025-03-25 16:19:56 +08:00
|
|
|
|
import { RuleSceneApi } from '@/api/iot/rule/scene'
|
2025-03-28 15:54:12 +08:00
|
|
|
|
import DeviceListener from './components/listener/DeviceListener.vue'
|
2025-03-25 16:19:56 +08:00
|
|
|
|
import { CommonStatusEnum } from '@/utils/constants'
|
|
|
|
|
|
import {
|
2025-03-28 15:54:12 +08:00
|
|
|
|
ActionConfig,
|
2025-03-25 16:19:56 +08:00
|
|
|
|
IotDeviceMessageIdentifierEnum,
|
|
|
|
|
|
IotDeviceMessageTypeEnum,
|
|
|
|
|
|
IotRuleScene,
|
2025-03-28 15:54:12 +08:00
|
|
|
|
IotRuleSceneActionTypeEnum,
|
2025-03-25 16:19:56 +08:00
|
|
|
|
IotRuleSceneTriggerTypeEnum,
|
|
|
|
|
|
TriggerConfig
|
|
|
|
|
|
} from '@/api/iot/rule/scene/scene.types'
|
2025-03-28 15:54:12 +08:00
|
|
|
|
import ActionExecutor from './components/action/ActionExecutor.vue'
|
2025-03-29 14:34:56 +08:00
|
|
|
|
import { generateUUID } from '@/utils'
|
2025-03-18 17:37:58 +08:00
|
|
|
|
|
2025-03-25 16:19:56 +08:00
|
|
|
|
/** IoT 场景联动表单 */
|
|
|
|
|
|
defineOptions({ name: 'IotRuleSceneForm' })
|
2025-03-18 17:37:58 +08:00
|
|
|
|
|
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
|
|
|
|
|
|
|
const dialogVisible = ref(false) // 弹窗的是否展示
|
|
|
|
|
|
const dialogTitle = ref('') // 弹窗的标题
|
|
|
|
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
|
|
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
2025-03-25 16:19:56 +08:00
|
|
|
|
const formData = ref<IotRuleScene>({
|
|
|
|
|
|
status: CommonStatusEnum.ENABLE,
|
2025-03-28 15:54:12 +08:00
|
|
|
|
triggers: [] as TriggerConfig[],
|
|
|
|
|
|
actions: [] as ActionConfig[]
|
2025-03-25 16:19:56 +08:00
|
|
|
|
} as IotRuleScene)
|
2025-03-18 17:37:58 +08:00
|
|
|
|
const formRules = reactive({
|
|
|
|
|
|
name: [{ required: true, message: '场景名称不能为空', trigger: 'blur' }],
|
|
|
|
|
|
status: [{ required: true, message: '场景状态不能为空', trigger: 'blur' }],
|
|
|
|
|
|
triggers: [{ required: true, message: '触发器数组不能为空', trigger: 'blur' }],
|
|
|
|
|
|
actions: [{ required: true, message: '执行器数组不能为空', trigger: 'blur' }]
|
|
|
|
|
|
})
|
|
|
|
|
|
const formRef = ref() // 表单 Ref
|
|
|
|
|
|
|
2025-03-21 13:30:22 +08:00
|
|
|
|
/** 添加触发器 */
|
2025-03-20 18:46:59 +08:00
|
|
|
|
const addTrigger = () => {
|
2025-03-21 13:30:22 +08:00
|
|
|
|
formData.value.triggers.push({
|
2025-03-29 14:34:56 +08:00
|
|
|
|
key: generateUUID(), // 解决组件索引重用
|
2025-03-25 16:19:56 +08:00
|
|
|
|
type: IotRuleSceneTriggerTypeEnum.DEVICE,
|
2025-03-21 13:30:22 +08:00
|
|
|
|
productKey: '',
|
|
|
|
|
|
deviceNames: [],
|
|
|
|
|
|
conditions: [
|
|
|
|
|
|
{
|
2025-03-25 16:19:56 +08:00
|
|
|
|
type: IotDeviceMessageTypeEnum.PROPERTY,
|
|
|
|
|
|
identifier: IotDeviceMessageIdentifierEnum.PROPERTY_SET,
|
2025-03-21 13:30:22 +08:00
|
|
|
|
parameters: []
|
|
|
|
|
|
}
|
|
|
|
|
|
]
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
/** 移除触发器 */
|
|
|
|
|
|
const removeTrigger = (index: number) => {
|
2025-03-28 17:52:41 +08:00
|
|
|
|
formData.value.triggers.splice(index, 1)
|
2025-03-20 18:46:59 +08:00
|
|
|
|
}
|
2025-03-23 08:40:37 +08:00
|
|
|
|
|
2025-03-28 15:54:12 +08:00
|
|
|
|
/** 添加执行器 */
|
|
|
|
|
|
const addAction = () => {
|
|
|
|
|
|
formData.value.actions.push({
|
2025-03-29 14:34:56 +08:00
|
|
|
|
key: generateUUID(), // 解决组件索引重用
|
2025-03-28 15:54:12 +08:00
|
|
|
|
type: IotRuleSceneActionTypeEnum.DEVICE_CONTROL
|
|
|
|
|
|
} as ActionConfig)
|
|
|
|
|
|
}
|
|
|
|
|
|
/** 移除执行器 */
|
|
|
|
|
|
const removeAction = (index: number) => {
|
2025-03-28 17:52:41 +08:00
|
|
|
|
formData.value.actions.splice(index, 1)
|
2025-03-28 15:54:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-18 17:37:58 +08:00
|
|
|
|
/** 打开弹窗 */
|
|
|
|
|
|
const open = async (type: string, id?: number) => {
|
|
|
|
|
|
dialogVisible.value = true
|
|
|
|
|
|
dialogTitle.value = t('action.' + type)
|
|
|
|
|
|
formType.value = type
|
|
|
|
|
|
resetForm()
|
|
|
|
|
|
// 修改时,设置数据
|
|
|
|
|
|
if (id) {
|
|
|
|
|
|
formLoading.value = true
|
|
|
|
|
|
try {
|
2025-03-29 14:34:56 +08:00
|
|
|
|
const data = (await RuleSceneApi.getRuleScene(id)) as IotRuleScene
|
|
|
|
|
|
// 解决组件索引重用
|
|
|
|
|
|
data.triggers?.forEach((item) => (item.key = generateUUID()))
|
|
|
|
|
|
data.actions?.forEach((item) => (item.key = generateUUID()))
|
|
|
|
|
|
formData.value = data
|
2025-03-18 17:37:58 +08:00
|
|
|
|
} finally {
|
|
|
|
|
|
formLoading.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
|
|
|
|
|
|
|
|
|
|
|
/** 提交表单 */
|
|
|
|
|
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
|
|
|
|
|
const submitForm = async () => {
|
|
|
|
|
|
// 校验表单
|
|
|
|
|
|
await formRef.value.validate()
|
|
|
|
|
|
// 提交请求
|
|
|
|
|
|
formLoading.value = true
|
|
|
|
|
|
try {
|
2025-03-25 16:19:56 +08:00
|
|
|
|
const data = formData.value as unknown as IotRuleScene
|
2025-03-18 17:37:58 +08:00
|
|
|
|
if (formType.value === 'create') {
|
|
|
|
|
|
await RuleSceneApi.createRuleScene(data)
|
|
|
|
|
|
message.success(t('common.createSuccess'))
|
|
|
|
|
|
} else {
|
|
|
|
|
|
await RuleSceneApi.updateRuleScene(data)
|
|
|
|
|
|
message.success(t('common.updateSuccess'))
|
|
|
|
|
|
}
|
|
|
|
|
|
dialogVisible.value = false
|
|
|
|
|
|
// 发送操作成功的事件
|
|
|
|
|
|
emit('success')
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
formLoading.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 重置表单 */
|
|
|
|
|
|
const resetForm = () => {
|
|
|
|
|
|
formData.value = {
|
2025-03-25 16:19:56 +08:00
|
|
|
|
status: CommonStatusEnum.ENABLE,
|
2025-03-28 15:54:12 +08:00
|
|
|
|
triggers: [] as TriggerConfig[],
|
|
|
|
|
|
actions: [] as ActionConfig[]
|
2025-03-25 16:19:56 +08:00
|
|
|
|
} as IotRuleScene
|
2025-03-18 17:37:58 +08:00
|
|
|
|
formRef.value?.resetFields()
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|