From 15ab5d748ea40d8da608971441857eb23cfc88ae Mon Sep 17 00:00:00 2001 From: DanyangZhao <1909085973@qq.com> Date: Wed, 28 Jun 2023 18:01:47 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E4=B8=80=E4=BA=86=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages.json | 26 ++- src/pages/blind/bindReceived.vue | 164 ++++++++++++++ .../blind/lib/components/BlindNavbar.vue | 57 +++++ src/pages/blind/lib/components/BlindPopup.vue | 167 ++++++++++++++ src/pages/blind/logisticsMsg.vue | 210 ++++++++++++++++++ src/pages/blind/myBill.vue | 152 +++++++++++++ 6 files changed, 775 insertions(+), 1 deletion(-) create mode 100644 src/pages/blind/bindReceived.vue create mode 100644 src/pages/blind/lib/components/BlindNavbar.vue create mode 100644 src/pages/blind/lib/components/BlindPopup.vue create mode 100644 src/pages/blind/logisticsMsg.vue create mode 100644 src/pages/blind/myBill.vue diff --git a/src/pages.json b/src/pages.json index d55a0dc..996c78e 100644 --- a/src/pages.json +++ b/src/pages.json @@ -205,7 +205,31 @@ "style": { "navigationBarTitleText": "仓库" } - } + }, + { + "path": "pages/blind/home", + "style": { + "navigationBarTitleText": "盲盒首页" + } + }, + { + "path": "pages/mine/blind/bindReceived", + "style": { + "navigationBarTitleText": "待收货" + } + }, + { + "path": "pages/mine/blind/logisticsMsg", + "style": { + "navigationBarTitleText": "物流信息" + } + }, + { + "path": "pages/mine/blind/myBill", + "style": { + "navigationBarTitleText": "消费账单" + } + } // ,{ // "path": "pages/blind/test", // "style": { diff --git a/src/pages/blind/bindReceived.vue b/src/pages/blind/bindReceived.vue new file mode 100644 index 0000000..76e8350 --- /dev/null +++ b/src/pages/blind/bindReceived.vue @@ -0,0 +1,164 @@ + + + + + diff --git a/src/pages/blind/lib/components/BlindNavbar.vue b/src/pages/blind/lib/components/BlindNavbar.vue new file mode 100644 index 0000000..c027d56 --- /dev/null +++ b/src/pages/blind/lib/components/BlindNavbar.vue @@ -0,0 +1,57 @@ + + + + + diff --git a/src/pages/blind/lib/components/BlindPopup.vue b/src/pages/blind/lib/components/BlindPopup.vue new file mode 100644 index 0000000..447ec19 --- /dev/null +++ b/src/pages/blind/lib/components/BlindPopup.vue @@ -0,0 +1,167 @@ + + + + + \ No newline at end of file diff --git a/src/pages/blind/logisticsMsg.vue b/src/pages/blind/logisticsMsg.vue new file mode 100644 index 0000000..19045c6 --- /dev/null +++ b/src/pages/blind/logisticsMsg.vue @@ -0,0 +1,210 @@ + + + + + diff --git a/src/pages/blind/myBill.vue b/src/pages/blind/myBill.vue new file mode 100644 index 0000000..d068f5c --- /dev/null +++ b/src/pages/blind/myBill.vue @@ -0,0 +1,152 @@ + + + + + \ No newline at end of file -- Gitee