diff --git a/src/components/RouterSearch/index.vue b/src/components/RouterSearch/index.vue index ca72e2d..f0a2351 100644 --- a/src/components/RouterSearch/index.vue +++ b/src/components/RouterSearch/index.vue @@ -24,6 +24,7 @@ filterable :reserve-keyword="false" remote + size="default" placeholder="请输入菜单内容" :remote-method="remoteMethod" class="overflow-hidden transition-all-600" @@ -66,7 +67,7 @@ const options = computed(() => { }) return list.map((item) => { return { - label: `${item.meta.title}${item.path}`, + label: `${item.meta.title}`, value: item.path } }) diff --git a/src/layout/components/ToolHeader.vue b/src/layout/components/ToolHeader.vue index fab98c0..7d05886 100644 --- a/src/layout/components/ToolHeader.vue +++ b/src/layout/components/ToolHeader.vue @@ -9,7 +9,7 @@ import RouterSearch from '@/components/RouterSearch/index.vue' import { useAppStore } from '@/store/modules/app' import { useDesign } from '@/hooks/web/useDesign' -const { getPrefixCls, variables } = useDesign() +const { variables } = useDesign() const appStore = useAppStore() diff --git a/src/store/modules/app.ts b/src/store/modules/app.ts index ee045fa..f9f5602 100644 --- a/src/store/modules/app.ts +++ b/src/store/modules/app.ts @@ -68,7 +68,7 @@ export const useAppStore = defineStore('app', { layout: wsCache.get(CACHE_KEY.LAYOUT) || 'classic', // layout布局 // isDark: wsCache.get(CACHE_KEY.IS_DARK) || false, // 是否是暗黑模式 isDark: false, // 是否是暗黑模式 - currentSize: wsCache.get('default') || 'default', // 组件尺寸 + currentSize: wsCache.get('default') || 'large', // 组件尺寸 theme: { elColorPrimary: '#409eff', leftMenuBorderColor: '#eee', diff --git a/src/views/Home/Index.vue b/src/views/Home/Index.vue index 32c0ae5..e99c996 100644 --- a/src/views/Home/Index.vue +++ b/src/views/Home/Index.vue @@ -6,7 +6,6 @@ @@ -36,7 +34,7 @@ -
+
查询 @@ -87,11 +85,15 @@
- {{ item.title }} - {{ item.deptName }} - {{ formatDate(item.startDate, 'YYYY年M月D日') }} +
+ {{ item.title }} +
+
{{ item.deptName }}
+
+ {{ formatDate(item.startDate, 'YYYY年M月D日') }} +
@@ -106,10 +108,13 @@
- {{ item.name }} - {{ item.count }}次 +
+ {{ item.name }} +
+
{{ item.deptName }}
+
{{ item.count }}次
@@ -124,10 +129,13 @@
- {{ item.name }} - {{ item.count }}天 +
+ {{ item.name }} +
+
{{ item.realName }}
+
{{ item.count }}次
@@ -170,7 +178,7 @@ const pieOptionsData = ref({ series: { name: '任务进度', type: 'pie', - radius: ['60%', '80%'], + radius: ['55%', '80%'], center: ['50%', '50%'], itemStyle: { borderColor: '#fff', @@ -183,6 +191,7 @@ const pieOptionsData = ref({ } return '' }, + fontSize: 13, padding: [0, 0, 15, 0], distanceToLabelLine: 0, rich: { @@ -323,8 +332,8 @@ const barOptionsData = ref({ type: 'pictorialBar', symbol: 'rect', symbolPosition: 'end', - symbolSize: [20,5], - symbolOffset: [13, -1], + symbolSize: [20, 5], + symbolOffset: [13, -1], barWidth: 20, itemStyle: { color: 'rgba(103, 194, 58, 1)' @@ -399,7 +408,7 @@ const lineOptionsData = ref({ }, series: [ { - name: '任务数', + name: '任务数量', data: [13253, 34235, 26321, 12340, 24643], type: 'line', smooth: true, @@ -414,7 +423,7 @@ const lineOptionsData = ref({ } }, { - name: '执法数', + name: '执法数量', data: [15678, 28943, 31452, 19876, 22345], type: 'line', smooth: true,