From 7736b8050218022522fedc05321f77fd56163b3e Mon Sep 17 00:00:00 2001
From: maochaoying <925670706@qq.com>
Date: Tue, 27 Jun 2023 20:14:56 +0800
Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E5=B8=83=E5=B1=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/Excel.vue | 7 ++
src/components/Image.vue | 92 +++++++++++++++++++++
src/pages/index.vue | 187 ++++++++++++++++++++++++++++++++++++++++++-
src/store/modules/account.js | 4 +
4 files changed, 288 insertions(+), 2 deletions(-)
create mode 100644 src/components/Excel.vue
create mode 100644 src/components/Image.vue
diff --git a/src/components/Excel.vue b/src/components/Excel.vue
new file mode 100644
index 0000000..14a85f3
--- /dev/null
+++ b/src/components/Excel.vue
@@ -0,0 +1,7 @@
+
+ excel
+
+
+
+
+
diff --git a/src/components/Image.vue b/src/components/Image.vue
new file mode 100644
index 0000000..ee81f6c
--- /dev/null
+++ b/src/components/Image.vue
@@ -0,0 +1,92 @@
+
+
+
+
+
北京昌平核电站3号核反应堆
+
BEIJINGV30
+
+
+
+
+
+
+
+
diff --git a/src/pages/index.vue b/src/pages/index.vue
index c0b3093..edea3ec 100644
--- a/src/pages/index.vue
+++ b/src/pages/index.vue
@@ -1,14 +1,197 @@
diff --git a/src/store/modules/account.js b/src/store/modules/account.js
index e67afe6..8374c4b 100644
--- a/src/store/modules/account.js
+++ b/src/store/modules/account.js
@@ -16,5 +16,9 @@ export const useAccountStore = defineStore({
updateUsername(username) {
this.username = username
},
+ clearLoginInfo() {
+ this.token = null
+ this.username = ''
+ },
},
})