28 lines
552 B
TypeScript
28 lines
552 B
TypeScript
/*
|
|
* @Description: 文件内容描述
|
|
* @Author: 陈益
|
|
* @Date: 2025-06-19 22:14:51
|
|
* @LastEditors: 陈益
|
|
*/
|
|
import type { RouteRecordRaw } from 'vue-router';
|
|
|
|
import { BasicLayout } from '#/layouts';
|
|
import { $t } from '#/locales';
|
|
|
|
const routes: RouteRecordRaw[] = [
|
|
{
|
|
component: BasicLayout,
|
|
meta: {
|
|
icon: 'ant-design:format-painter-filled',
|
|
order: 3,
|
|
title: $t('abp.menu.code'),
|
|
authority: ['AbpCodeManagement'],
|
|
},
|
|
name: 'code',
|
|
path: '/code',
|
|
children: [],
|
|
},
|
|
];
|
|
|
|
export default routes;
|