feat(iot): Database 表单增加建表 SQL 提示和一键复制

- 顶部 el-alert 友好提示用户需要先创建表
- 内嵌 SQL 文本框(monospace字体) + 复制按钮
- tableName 默认值设为 iot_device_message_sink
pull/867/head
puhui999 2026-03-13 12:30:04 +08:00
parent ad376b24b4
commit 9f19835a80
1 changed files with 54 additions and 1 deletions

View File

@ -1,4 +1,35 @@
<template>
<el-alert
:closable="false"
show-icon
title="使用前请先在目标数据库中创建消息表"
type="info"
style="margin-bottom: 16px"
>
<template #default>
<div style="margin-top: 4px">
<el-text size="small" type="info">
设备消息将以固定结构写入目标表请先执行以下建表 SQL
</el-text>
<div style="position: relative; margin-top: 8px">
<el-input
v-model="createTableSQL"
:autosize="{ minRows: 3, maxRows: 12 }"
readonly
type="textarea"
style="font-family: monospace; font-size: 12px"
/>
<el-button
:icon="DocumentCopy"
circle
size="small"
style="position: absolute; top: 8px; right: 8px"
@click="handleCopySQL"
/>
</div>
</div>
</template>
</el-alert>
<el-form-item label="JDBC 地址" prop="config.jdbcUrl">
<el-input
v-model="config.jdbcUrl"
@ -16,9 +47,11 @@
</el-form-item>
</template>
<script lang="ts" setup>
import { DocumentCopy } from '@element-plus/icons-vue'
import { DatabaseConfig, IotDataSinkTypeEnum } from '@/api/iot/rule/data/sink'
import { useVModel } from '@vueuse/core'
import { isEmpty } from '@/utils/is'
import { useClipboard } from '@vueuse/core'
defineOptions({ name: 'DatabaseConfigForm' })
@ -27,6 +60,26 @@ const props = defineProps<{
}>()
const emit = defineEmits(['update:modelValue'])
const config = useVModel(props, 'modelValue', emit) as Ref<DatabaseConfig>
const message = useMessage()
const createTableSQL = ref(`CREATE TABLE iot_device_message_sink (
id VARCHAR(64) NOT NULL COMMENT '消息ID',
device_id BIGINT NOT NULL COMMENT '设备编号',
tenant_id BIGINT NOT NULL DEFAULT 0 COMMENT '租户编号',
method VARCHAR(128) COMMENT '请求方法',
report_time DATETIME COMMENT '上报时间',
data TEXT COMMENT '完整消息JSON',
create_time DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (id) USING BTREE,
INDEX idx_create_time (create_time ASC) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'IoT 设备消息流转目标表';`)
/** 复制建表 SQL */
const { copy } = useClipboard()
const handleCopySQL = async () => {
await copy(createTableSQL.value)
message.success('建表 SQL 已复制到剪贴板')
}
/** 组件初始化 */
onMounted(() => {
@ -38,7 +91,7 @@ onMounted(() => {
jdbcUrl: '',
username: '',
password: '',
tableName: ''
tableName: 'iot_device_message_sink'
}
})
</script>