From ff11552fc67086b1f3ff97fe1599a30a0ecb6976 Mon Sep 17 00:00:00 2001 From: lizijiee <562949697@qq.com> Date: Sat, 30 Mar 2024 16:06:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=202819=20=E3=80=90AI=E5=B7=A5=E5=8D=95?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E3=80=91=E5=90=8D=E5=AD=97=E6=94=B9=E5=8F=98?= =?UTF-8?q?=EF=BC=8C=E5=8F=98=E6=88=90=E5=9B=BE=E5=AE=A1=E5=AE=A1=E6=89=B9?= =?UTF-8?q?=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mock/user/user.ts | 2 +- src/router/modules/worksheet.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mock/user/user.ts b/mock/user/user.ts index 22854ed..ff5816e 100644 --- a/mock/user/user.ts +++ b/mock/user/user.ts @@ -23,7 +23,7 @@ const adminInfo = { value: 'task-main', }, { - label: 'AI工单', + label: '图审审批管理', value: 'worksheet-main', }, ], diff --git a/src/router/modules/worksheet.ts b/src/router/modules/worksheet.ts index 8a46a38..d80eb8d 100644 --- a/src/router/modules/worksheet.ts +++ b/src/router/modules/worksheet.ts @@ -1,5 +1,5 @@ -import type { RouteRecordRaw } from 'vue-router' import { Layout } from '@/router/constant' +import type { RouteRecordRaw } from 'vue-router' /** * @param name 路由名称, 必须设置,且不能重名 @@ -19,7 +19,7 @@ const routes: Array = [ redirect: '/worksheet', component: Layout, meta: { - title: 'AI工单', + title: '图审审批管理', permissions: ['worksheet-main'], svgname: 'worksheet', svgsize: 22, @@ -30,7 +30,7 @@ const routes: Array = [ path: 'worksheet', name: 'worksheet-main', meta: { - title: 'AI工单', + title: '图审审批管理', }, component: () => import('@/views/worksheet/index.vue'), },