增加饲喂计划列表展示界面

This commit is contained in:
2025-09-10 16:14:05 +08:00
parent 9944340d17
commit 40a19b831a
10 changed files with 479 additions and 24 deletions

View File

@@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
import Login from '../pages/Login.vue'
import Dashboard from '../pages/Dashboard.vue'
import Device from '../pages/Device.vue'
import FeedPlan from '../pages/FeedPlan.vue'
const routes = [
{
@@ -20,6 +21,12 @@ const routes = [
name: 'Device',
component: Device,
meta: { requiresAuth: true }
},
{
path: '/feed/plan',
name: 'FeedPlan',
component: FeedPlan,
meta: { requiresAuth: true }
}
]