Browse Source

eta菜单配置init

cxmo 1 year ago
parent
commit
c5e0104be1

+ 8 - 0
src/router/modules/operateRutes.js

@@ -40,5 +40,13 @@ export default [{
         meta: {
             title: "留言管理员",
         },
+    },{
+        path: "etaMenuConfig",
+        component: () => import("@/views/operation_manage//etaMenu_manage/etaMenuConfig.vue"),
+        name: "etaMenuConfig",
+        hidden: false,
+        meta: {
+            title: "ETA菜单配置",
+        },
     }]
 }];

+ 13 - 0
src/views/operation_manage/etaMenu_manage/etaMenuConfig.vue

@@ -0,0 +1,13 @@
+<script setup>
+import { ref, reactive } from 'vue'
+</script>
+
+<template>
+    <div>
+        ETA菜单配置
+    </div>
+</template>
+
+<style scoped lang="scss">
+
+</style>

+ 1 - 0
src/views/operation_manage/updatelog_manage/components/LogSetDialog.vue

@@ -63,6 +63,7 @@ async function saveLog(){
         await logFormRef.value?.validate()
     }catch(e){
         console.log(e)
+        return
     }
     emit('saveLog',{...props.logInfo,...formData})
 }