工料机、定额基价、定额费率、定额取费

This commit is contained in:
2026-01-03 14:59:45 +08:00
parent e974bf361d
commit 618bb6699e
65 changed files with 13251 additions and 2624 deletions

View File

@@ -0,0 +1,18 @@
import type { RouteRecordRaw } from 'vue-router';
const routes: RouteRecordRaw[] = [
{
path: '/database/entry/add',
component: () => import('#/views/database/entry/add.vue'),
name: 'EntryAdd',
meta: {
title: '信息价录入',
icon: 'ant-design:history-outlined',
activePath: '/database/entry',
keepAlive: false,
hideInMenu: true,
},
},
];
export default routes;