@@ -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菜单配置",
+ },
}]
}];
@@ -0,0 +1,13 @@
+<script setup>
+import { ref, reactive } from 'vue'
+</script>
+
+<template>
+ <div>
+ ETA菜单配置
+ </div>
+</template>
+<style scoped lang="scss">
+</style>
@@ -63,6 +63,7 @@ async function saveLog(){
await logFormRef.value?.validate()
}catch(e){
console.log(e)
+ return
}
emit('saveLog',{...props.logInfo,...formData})