From e12856984111ea0eb1581e5bc444862657bacbc2 Mon Sep 17 00:00:00 2001 From: kubbo <390378816@qq.com> Date: Sun, 8 Jan 2023 21:49:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BB=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wxmp/bin/pages.js | 3 +- wxmp/src/App.vue | 20 ++++- wxmp/src/components/AiGap.vue | 29 +++++++ wxmp/src/components/AiGroup.vue | 2 +- wxmp/src/components/AiItem.vue | 8 +- wxmp/src/components/AiTabs.vue | 106 ++++++++++++++++++++++++++ wxmp/src/mods/AppSearch/AppSearch.vue | 23 ++++++ wxmp/src/pages/home.vue | 48 +++++++++--- wxmp/src/uni.scss | 2 +- 9 files changed, 220 insertions(+), 21 deletions(-) create mode 100644 wxmp/src/components/AiGap.vue create mode 100644 wxmp/src/components/AiTabs.vue create mode 100644 wxmp/src/mods/AppSearch/AppSearch.vue diff --git a/wxmp/bin/pages.js b/wxmp/bin/pages.js index 9e0d82a..a67b025 100644 --- a/wxmp/bin/pages.js +++ b/wxmp/bin/pages.js @@ -6,7 +6,6 @@ const start = () => { easycom: { autoscan: true, custom: { - "^(Ai|V)(.*)": "@/components/$1$2.vue", "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue" } }, @@ -20,7 +19,7 @@ const start = () => { globalStyle: { pageOrientation: "auto", navigationBarTextStyle: "white", - navigationBarBackgroundColor: "#4181FF" + navigationBarBackgroundColor: "#92ACD1" } } Promise.all([ diff --git a/wxmp/src/App.vue b/wxmp/src/App.vue index dbe8bcc..028b28e 100644 --- a/wxmp/src/App.vue +++ b/wxmp/src/App.vue @@ -10,8 +10,9 @@ export default { diff --git a/wxmp/src/components/AiGroup.vue b/wxmp/src/components/AiGroup.vue index 7ccd489..a3a4945 100644 --- a/wxmp/src/components/AiGroup.vue +++ b/wxmp/src/components/AiGroup.vue @@ -1,6 +1,6 @@ diff --git a/wxmp/src/components/AiItem.vue b/wxmp/src/components/AiItem.vue index 85a8e4d..f72f7c9 100644 --- a/wxmp/src/components/AiItem.vue +++ b/wxmp/src/components/AiItem.vue @@ -2,22 +2,22 @@
-
+
-
+
-
+
-
+
diff --git a/wxmp/src/components/AiTabs.vue b/wxmp/src/components/AiTabs.vue new file mode 100644 index 0000000..2b20a15 --- /dev/null +++ b/wxmp/src/components/AiTabs.vue @@ -0,0 +1,106 @@ + + + + + diff --git a/wxmp/src/mods/AppSearch/AppSearch.vue b/wxmp/src/mods/AppSearch/AppSearch.vue new file mode 100644 index 0000000..0654de6 --- /dev/null +++ b/wxmp/src/mods/AppSearch/AppSearch.vue @@ -0,0 +1,23 @@ + + + + + \ No newline at end of file diff --git a/wxmp/src/pages/home.vue b/wxmp/src/pages/home.vue index dc04c99..6f19ead 100644 --- a/wxmp/src/pages/home.vue +++ b/wxmp/src/pages/home.vue @@ -1,31 +1,49 @@ @@ -33,5 +51,13 @@ export default { diff --git a/wxmp/src/uni.scss b/wxmp/src/uni.scss index 288300d..9a8cd20 100644 --- a/wxmp/src/uni.scss +++ b/wxmp/src/uni.scss @@ -15,7 +15,7 @@ /* 颜色变量 */ /* 行为相关颜色 */ -$uni-color-primary: #007aff; +$uni-color-primary: #92ACD1; $uni-color-success: #4cd964; $uni-color-warning: #f0ad4e; $uni-color-error: #dd524d;