diff --git a/apps/web-antd/src/router/routes/modules/system.ts b/apps/web-antd/src/router/routes/modules/system.ts index b598894..31744d6 100644 --- a/apps/web-antd/src/router/routes/modules/system.ts +++ b/apps/web-antd/src/router/routes/modules/system.ts @@ -1,6 +1,6 @@ import type { RouteRecordRaw } from 'vue-router'; -import { EosRole, IconSystem, MdiUser, RiDept } from '@vben/icons'; +import { EosRole, IconLog, IconSystem, MdiUser, RiDept } from '@vben/icons'; const routes: RouteRecordRaw[] = [ { @@ -48,7 +48,7 @@ const routes: RouteRecordRaw[] = [ path: '/system/log', component: () => import('#/views/log/list.vue'), meta: { - icon: MdiUser, + icon: IconLog, title: '系统日志', authority: ['system'], }, diff --git a/apps/web-antd/src/views/ppt/index.vue b/apps/web-antd/src/views/ppt/index.vue index 9befc31..a76a309 100644 --- a/apps/web-antd/src/views/ppt/index.vue +++ b/apps/web-antd/src/views/ppt/index.vue @@ -5,6 +5,8 @@ import { onMounted, reactive, ref } from 'vue'; import { PptHistoryView, PptListView, PptWorkView } from '@vben/common-ui'; +import { message } from 'ant-design-vue'; + import { getWorkflowInfo, getWorkflowList, sendWorkflow } from '#/api'; let temp = reactive({ @@ -57,6 +59,7 @@ async function handleClick(item: PPTTempItem) { } async function handleClickMode(item: PPTTempItem) { + message.success(`已选取${item.name}为模板`); temp = item; } @@ -66,9 +69,9 @@ onMounted(() => {