From 9d63de078fa05126b7c4aafeac3d402738495968 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?LAPTOP-D7TKRI82=5C=E9=82=93?= <52643018@qq.com> Date: Tue, 22 Jun 2021 14:09:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E6=88=91=E7=9A=84=E6=94=B6?= =?UTF-8?q?=E8=97=8F=E9=A1=B5=E9=9D=A2UI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 8 +- pages/collect/index.vue | 74 +++++++++++++++++++ .../{goodsDetail.vue => index.vue} | 0 3 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 pages/collect/index.vue rename pages/goodsDetail/{goodsDetail.vue => index.vue} (100%) diff --git a/pages.json b/pages.json index cb16b98..e933b50 100644 --- a/pages.json +++ b/pages.json @@ -23,11 +23,17 @@ } }, { - "path": "pages/goodsDetail/goodsDetail", + "path": "pages/goodsDetail/index", "style": { "navigationBarTitleText": "商品详情", "backgroundColor": "#F5F5F5" } + }, + { + "path": "pages/collect/index", + "style": { + "navigationBarTitleText": "我的收藏" + } } ], "globalStyle": { diff --git a/pages/collect/index.vue b/pages/collect/index.vue new file mode 100644 index 0000000..46018d0 --- /dev/null +++ b/pages/collect/index.vue @@ -0,0 +1,74 @@ + + + + + diff --git a/pages/goodsDetail/goodsDetail.vue b/pages/goodsDetail/index.vue similarity index 100% rename from pages/goodsDetail/goodsDetail.vue rename to pages/goodsDetail/index.vue