diff --git a/src/views/synchronization/eldertag/syncList.vue b/src/views/synchronization/eldertag/syncList.vue
index 275b058..e75f650 100644
--- a/src/views/synchronization/eldertag/syncList.vue
+++ b/src/views/synchronization/eldertag/syncList.vue
@@ -23,6 +23,8 @@
style="margin-right: 10px;">日志
标准标签库
+ 标签备份
@@ -38,8 +40,8 @@
-
@@ -47,16 +49,16 @@
-
-
+
+
刷新
-
-
+
+
@@ -65,7 +67,7 @@
关闭
@@ -82,11 +84,22 @@
关闭
-
@@ -109,6 +122,7 @@ import { getElderTagMain, changeElderTagMain } from '/@/api/common/api'
import { idListByDS } from '/@/views/synchronization/eldertag/eldertag/ElderTag.api';
import CanAddElderTagList from '/@/views/synchronization/eldertag/canaddet/CanAddElderTagList.vue'
import ElderTagList from '/@/views/synchronization/eldertag/eldertag/ElderTagList.vue'
+import ElderBkMainList from '/@/views/elder/elderbk/ElderBkMainList.vue'
const { createMessage } = useMessage()
const canAddElderTagRef = ref()
@@ -130,6 +144,8 @@ const existETIds = ref([])//指令库已存在指令id
const elderTagMainOrgInfo = ref()
const listVisible = ref(false)
const listRef = ref(false)
+const elderTagBackupsOpen = ref(false)
+const backupsRef = ref()//指令备份
const labelCol = reactive({
xs: 24,
@@ -156,7 +172,7 @@ function handleJingxiang() {
function handleDetail(record) {
listVisible.value = true
nextTick(() => {
- listRef.value.init(record.orgCode)
+ listRef.value.init(record.orgCode, record)
})
}
@@ -295,7 +311,19 @@ function getElderTagMainOrgInfo() {
})
}
+/**
+ * 查看指令备份
+ */
+function handleElderBackups() {
+ elderTagBackupsOpen.value = true
+}
+/**
+ * 关闭指令备份
+ */
+function handleElderBackupsClose() {
+ elderTagBackupsOpen.value = false
+}
// 自动请求并暴露内部方法
onMounted(() => {