From 6466c65b6654d9884c188011a111ab447becabc8 Mon Sep 17 00:00:00 2001 From: kron Date: Thu, 29 May 2025 15:48:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E7=BB=91=E5=AE=9A=E8=AE=BE?= =?UTF-8?q?=E5=A4=87UI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/CoachComment.vue | 15 +- src/pages.json | 6 + src/pages/add-device.vue | 243 ++++++++++++++++++++++++++++++++ src/pages/index.vue | 8 +- src/static/bind.png | Bin 0 -> 3148 bytes src/static/checked-green.png | Bin 0 -> 4161 bytes src/static/device-icon.png | Bin 0 -> 535497 bytes src/static/prompt-bg-square.png | Bin 0 -> 195259 bytes src/static/scan-tip.png | Bin 0 -> 69656 bytes src/static/scan.png | Bin 0 -> 19057 bytes 10 files changed, 270 insertions(+), 2 deletions(-) create mode 100644 src/pages/add-device.vue create mode 100644 src/static/bind.png create mode 100644 src/static/checked-green.png create mode 100644 src/static/device-icon.png create mode 100644 src/static/prompt-bg-square.png create mode 100644 src/static/scan-tip.png create mode 100644 src/static/scan.png diff --git a/src/components/CoachComment.vue b/src/components/CoachComment.vue index e3fe856..f9cd383 100644 --- a/src/components/CoachComment.vue +++ b/src/components/CoachComment.vue @@ -14,13 +14,26 @@ const props = defineProps({ type: Function, default: () => {}, }, + mode: { + type: String, + default: "normal", + }, });