diff --git a/package.json b/package.json index 16652cd..a7dec7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "youlai-app", - "version": "0.1.2", + "version": "1.0.0", "scripts": { "dev:app": "uni -p app", "dev:app-android": "uni -p app-android", diff --git a/src/components/custom-tree/index.vue b/src/components/custom-tree/index.vue index e4332ce..4b90b43 100644 --- a/src/components/custom-tree/index.vue +++ b/src/components/custom-tree/index.vue @@ -24,7 +24,7 @@ :model-value="isChecked(item.value)" :indeterminate="isIndeterminate(item.value)" :disabled="item.disabled" - shape="square" + type="square" /> diff --git a/src/composables/useTabbar.ts b/src/composables/useTabbar.ts index 99e4f5f..09bf600 100644 --- a/src/composables/useTabbar.ts +++ b/src/composables/useTabbar.ts @@ -33,7 +33,7 @@ export interface TabbarItem { /** 默认 TabBar 配置 */ const DEFAULT_TABBAR_ITEMS: Omit[] = [ { name: "home", value: null, title: "首页", icon: "home" }, - { name: "work", value: null, title: "工作台", icon: "laptop" }, + { name: "work", value: null, title: "工作台", icon: "apps" }, { name: "mine", value: null, title: "我的", icon: "user" }, ]; diff --git a/src/config/menu.ts b/src/config/menu.ts index 3f67238..1907924 100644 --- a/src/config/menu.ts +++ b/src/config/menu.ts @@ -60,23 +60,12 @@ export const menuConfig: WorkMenuGroup[] = [ url: "/pages/work/notice/index", perm: "sys:notice:list", }, - ], - }, - { - title: "系统监控", - children: [ { icon: "/static/icons/log.svg", title: "系统日志", url: "/pages/work/log/index", perm: "sys:log:list", }, - { - icon: "/static/icons/dashboard.svg", - title: "应用监控", - url: "https://www.baidu.com", - perm: "", - }, ], }, { diff --git a/src/layouts/default.vue b/src/layouts/default.vue index a8f4c2a..cf1585c 100644 --- a/src/layouts/default.vue +++ b/src/layouts/default.vue @@ -17,7 +17,7 @@ export default {