From 79822067b1143d4f771985eb6edef323c57c1ba8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BC=A0=E6=96=87=E6=B6=9B?= <1909118034@qq.com>
Date: Mon, 3 Mar 2025 18:32:22 +0800
Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0store=E5=AD=98=E5=82=A8=20?=
=?UTF-8?q?=EF=BC=8C=E9=9A=90=E7=A7=81=E5=8D=8F=E8=AE=AE=EF=BC=8C=E6=B6=88?=
=?UTF-8?q?=E6=81=AF=E6=8E=A8=E9=80=81=E7=9B=91=E5=90=AC=EF=BC=8C=E8=81=8A?=
=?UTF-8?q?=E5=A4=A9=E9=A1=B5=E9=80=82=E9=85=8D=EF=BC=8C=EF=BC=88home?=
=?UTF-8?q?=EF=BC=89?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
App.vue | 11 +-
androidPrivacy.json | 27 +
index.html | 2 +-
main.js | 29 -
main.ts | 40 +
manifest.json | 5 +-
package-lock.json | 2327 +++++++++++++++++
package.json | 5 +
pages.json | 9 +-
pages/login/index.vue | 13 +-
pages/message/index.vue | 7 +-
pagesA/chat/components/messageItem.vue | 69 +
pagesA/chat/index.vue | 266 ++
static/chat/bot2.png | Bin 0 -> 647 bytes
static/chat/enter_n.png | Bin 0 -> 1382 bytes
stores/index.ts | 10 +
stores/userInfo.ts | 36 +
uni_modules/uni-load-more/changelog.md | 19 +
.../components/uni-load-more/i18n/en.json | 5 +
.../components/uni-load-more/i18n/index.js | 8 +
.../uni-load-more/i18n/zh-Hans.json | 5 +
.../uni-load-more/i18n/zh-Hant.json | 5 +
.../uni-load-more/uni-load-more.vue | 399 +++
uni_modules/uni-load-more/package.json | 86 +
uni_modules/uni-load-more/readme.md | 14 +
unocss/a-hua-unocss/index.scss | 41 +-
utils/common.ts | 138 +
27 files changed, 3519 insertions(+), 57 deletions(-)
create mode 100644 androidPrivacy.json
delete mode 100644 main.js
create mode 100644 main.ts
create mode 100644 package-lock.json
create mode 100644 package.json
create mode 100644 pagesA/chat/components/messageItem.vue
create mode 100644 pagesA/chat/index.vue
create mode 100644 static/chat/bot2.png
create mode 100644 static/chat/enter_n.png
create mode 100644 stores/index.ts
create mode 100644 stores/userInfo.ts
create mode 100644 uni_modules/uni-load-more/changelog.md
create mode 100644 uni_modules/uni-load-more/components/uni-load-more/i18n/en.json
create mode 100644 uni_modules/uni-load-more/components/uni-load-more/i18n/index.js
create mode 100644 uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hans.json
create mode 100644 uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hant.json
create mode 100644 uni_modules/uni-load-more/components/uni-load-more/uni-load-more.vue
create mode 100644 uni_modules/uni-load-more/package.json
create mode 100644 uni_modules/uni-load-more/readme.md
create mode 100644 utils/common.ts
diff --git a/App.vue b/App.vue
index 2e68e7e..4d8b794 100644
--- a/App.vue
+++ b/App.vue
@@ -1,17 +1,26 @@
diff --git a/androidPrivacy.json b/androidPrivacy.json
new file mode 100644
index 0000000..4764ba0
--- /dev/null
+++ b/androidPrivacy.json
@@ -0,0 +1,27 @@
+{
+ "version" : "1",
+ "prompt" : "template",
+ "title" : "用户协议和隐私政策",
+ "message" : "请你务必审慎阅读、充分理解“用户协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。
你可阅读《用户协议》和《隐私政策》了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。",
+ "buttonAccept" : "同意并接受",
+ "buttonRefuse" : "暂不同意",
+ "second" : {
+ "title" : "确认提示",
+ "message" : "进入应用前,你需先同意《用户协议》和《隐私政策》,否则将退出应用。",
+ "buttonAccept" : "同意并继续",
+ "buttonRefuse" : "退出应用"
+ },
+ "styles" : {
+ "backgroundColor" : "#f7f7f7",
+ "borderRadius" : "5px",
+ "title" : {
+ "color" : "#071a26"
+ },
+ "buttonAccept" : {
+ "color" : "#006EEF"
+ },
+ "buttonRefuse" : {
+ "color" : "#666666"
+ }
+ }
+}
diff --git a/index.html b/index.html
index c3ff205..170b24a 100644
--- a/index.html
+++ b/index.html
@@ -15,6 +15,6 @@