diff --git a/src/assets/sound.svg b/src/assets/sound.svg
new file mode 100644
index 0000000..00cab0a
--- /dev/null
+++ b/src/assets/sound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/staples.svg b/src/assets/staples.svg
new file mode 100644
index 0000000..1903318
--- /dev/null
+++ b/src/assets/staples.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/time-32.svg b/src/assets/time-32.svg
new file mode 100644
index 0000000..1ae42cc
--- /dev/null
+++ b/src/assets/time-32.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/time-48.svg b/src/assets/time-48.svg
new file mode 100644
index 0000000..f3dc828
--- /dev/null
+++ b/src/assets/time-48.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/waring-16.svg b/src/assets/waring-16.svg
new file mode 100644
index 0000000..680e4da
--- /dev/null
+++ b/src/assets/waring-16.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/assets/waring-32.svg b/src/assets/waring-32.svg
new file mode 100644
index 0000000..e838301
--- /dev/null
+++ b/src/assets/waring-32.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/components/simple/CustomTestComponent.vue b/src/components/simple/CustomTestComponent.vue
deleted file mode 100644
index 605f10f..0000000
--- a/src/components/simple/CustomTestComponent.vue
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
- {{ message }}
-
- 当前平台: {{ platformName }}
-
-
- {{ buttonText }}
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/tabbar/CustomOwnBar.vue b/src/components/tabbar/CustomOwnBar.vue
deleted file mode 100644
index e46944c..0000000
--- a/src/components/tabbar/CustomOwnBar.vue
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/constants/glable.ts b/src/constants/glable.ts
new file mode 100644
index 0000000..687ee78
--- /dev/null
+++ b/src/constants/glable.ts
@@ -0,0 +1,4 @@
+// 使用绝对路径
+export const USE_ABS_PATH = "/";
+
+
diff --git a/src/pages.json b/src/pages.json
index 273783e..1b4936d 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -28,6 +28,18 @@
"style": {
"navigationBarTitleText": "我的"
}
+ },
+ {
+ "path": "pages/sending/index",
+ "style": {
+ "navigationBarTitleText": "发信息"
+ }
+ },
+ {
+ "path": "pages/planning/index",
+ "style": {
+ "navigationBarTitleText": "计划"
+ }
}
],
"globalStyle": {
diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue
index a6f9a8f..164b631 100644
--- a/src/pages/index/index.vue
+++ b/src/pages/index/index.vue
@@ -14,10 +14,7 @@
道歉、告白、时空信也
可以发送哦
-
-
-
-
+
@@ -39,7 +36,7 @@
-
@@ -111,6 +105,7 @@
+
+
+
+ 已跳计划页面详情页
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/sending/index.vue b/src/pages/sending/index.vue
new file mode 100644
index 0000000..4aaa7a9
--- /dev/null
+++ b/src/pages/sending/index.vue
@@ -0,0 +1,924 @@
+
+
+
+
+
+
+
+
+ B站10分日本动漫已消失,9.9分仅剩12部,这一部动漫包揽三席!
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ selectedDate || '选择日期时间' }}
+
+
+
+
+
+
+
+
+
+ 如果选择时间,我们将在指定时间为您送达(节假日高峰可能存在延迟),不选择时间将立即发送!
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ messageContent.length }}/
+ 按照20个字一条计算,共{{ calculateMessageCost() }}元
+
+
+
+ 预览短信
+
+
+
+
+
+
+
+
+
+
+
+ ✉
+ 发送
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/store/tabbar.ts b/src/store/tabbar.ts
deleted file mode 100644
index 1ceda38..0000000
--- a/src/store/tabbar.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-export const tabbarState = {
- currentTab: ref(0),
-
- setCurrentTab(index: number) {
- this.currentTab.value = index;
- }
-
-};
\ No newline at end of file
diff --git a/src/stores/switchTab.ts b/src/stores/switchTab.ts
new file mode 100644
index 0000000..cce1ac4
--- /dev/null
+++ b/src/stores/switchTab.ts
@@ -0,0 +1,19 @@
+
+import { defineStore } from 'pinia';
+
+/**
+ * 创建并导出跳转前页面存储的 Vue3 store 对象
+ * @function
+ * @returns {DictionaryStore} - 返回跳转前页面存储对象
+ */
+export const useSwitchTab = defineStore("switchTab",{
+ state: () => ({
+ lastPage: "",
+ }),
+ actions: {
+ setLastPage(page: string) {
+ this.lastPage = page;
+ },
+ },
+
+});
\ No newline at end of file