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"
|
|
|
|
|
|
:label="dict.value"
|
|
|
|
|
|
>
|
|
|
|
|
|
{{ 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"
|
|
|
|
|
|
:key="index"
|
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-23 08:40:37 +08:00
|
|
|
|
<!-- TODO @puhui999:可以使用 el-button,然后选个合适的样式哇 -->
|
2025-03-20 18:46:59 +08:00
|
|
|
|
<el-text class="ml-10px!" type="primary" @click="addTrigger">添加触发器</el-text>
|
2025-03-20 18:02:58 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<el-divider content-position="left">执行动作配置</el-divider>
|
|
|
|
|
|
<el-form-item label="执行器数组" prop="actionConfigs">
|
2025-03-20 18:46:59 +08:00
|
|
|
|
<!-- <el-input v-model="formData.actions" placeholder="请输入执行器数组" />-->
|
2025-03-20 18:02:58 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</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-20 18:02:58 +08:00
|
|
|
|
import DeviceListener from './components/DeviceListener.vue'
|
2025-03-25 16:19:56 +08:00
|
|
|
|
import { CommonStatusEnum } from '@/utils/constants'
|
|
|
|
|
|
import {
|
|
|
|
|
|
IotDeviceMessageIdentifierEnum,
|
|
|
|
|
|
IotDeviceMessageTypeEnum,
|
|
|
|
|
|
IotRuleScene,
|
|
|
|
|
|
IotRuleSceneTriggerTypeEnum,
|
|
|
|
|
|
TriggerConfig
|
|
|
|
|
|
} from '@/api/iot/rule/scene/scene.types'
|
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,
|
|
|
|
|
|
triggers: [] as TriggerConfig[]
|
|
|
|
|
|
} 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-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) => {
|
|
|
|
|
|
const newTriggers = [...formData.value.triggers]
|
|
|
|
|
|
newTriggers.splice(index, 1)
|
|
|
|
|
|
formData.value.triggers = newTriggers
|
2025-03-20 18:46:59 +08:00
|
|
|
|
}
|
2025-03-23 08:40:37 +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 {
|
|
|
|
|
|
formData.value = await RuleSceneApi.getRuleScene(id)
|
|
|
|
|
|
} 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,
|
|
|
|
|
|
triggers: [] as TriggerConfig[]
|
|
|
|
|
|
} as IotRuleScene
|
2025-03-18 17:37:58 +08:00
|
|
|
|
formRef.value?.resetFields()
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|