From ec1294ac2fdc62fb1feda944f6bc0b14a77767ef Mon Sep 17 00:00:00 2001 From: zouyiqing <854938661@qq.com> Date: Wed, 18 Oct 2023 11:03:04 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B6=B3=E8=BF=B9=E7=BB=9F=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/AppHeadUserInfo.vue | 14 +++ src/router/index.ts | 6 ++ src/views/company/statistics.vue | 149 +++++++++++++++++++++++++++++ 3 files changed, 169 insertions(+) create mode 100644 src/views/company/statistics.vue diff --git a/src/components/AppHeadUserInfo.vue b/src/components/AppHeadUserInfo.vue index cc2af0b..c616730 100644 --- a/src/components/AppHeadUserInfo.vue +++ b/src/components/AppHeadUserInfo.vue @@ -90,6 +90,9 @@ const noticeShows = () => { noticeShow.value = !noticeShow.value; } }; +const goStatistics = () => { + push({ name: 'statistics' }); +};