|
|
@@ -205,13 +205,13 @@
|
|
|
<el-input v-model="deviceData.device_code"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="备注:">
|
|
|
- <el-input type="textarea" v-model="channelData.description"></el-input>
|
|
|
+ <el-input type="textarea" v-model="deviceData.description"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<template #footer>
|
|
|
<div class="dialog-footer">
|
|
|
- <el-button @click="channelShow = false">取消</el-button>
|
|
|
- <el-button type="primary" @click="channelOperation">
|
|
|
+ <el-button @click="deviceShow = false">取消</el-button>
|
|
|
+ <el-button type="primary" @click="deviceOperation">
|
|
|
确认
|
|
|
</el-button>
|
|
|
</div>
|
|
|
@@ -414,6 +414,14 @@ const deviceData = reactive({
|
|
|
description:''
|
|
|
})
|
|
|
|
|
|
+const deviceShow = ref(false)
|
|
|
+
|
|
|
+const deviceTitle = ref('')
|
|
|
+
|
|
|
+const deviceOperation = () => {
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
onMounted(() => {
|
|
|
getGuardBoothList()
|
|
|
getChannelList()
|