From 02534e936a50285e9b587f761122742b28328ef0 Mon Sep 17 00:00:00 2001 From: 2021 Date: Wed, 15 Sep 2021 18:39:14 +0800 Subject: [PATCH] =?UTF-8?q?=E5=94=AE=E5=90=8E=E8=AF=A6=E6=83=85=E9=9D=99?= =?UTF-8?q?=E6=80=81=E9=A1=B5=E9=9D=A2=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .hbuilderx/launch.json | 15 ++- pages.json | 8 +- pages/order/OrderReturnDetail/index.vue | 135 ++++++++++++++++++++++++ pages/order/ReturnList/index.vue | 3 +- 4 files changed, 154 insertions(+), 7 deletions(-) create mode 100644 pages/order/OrderReturnDetail/index.vue diff --git a/.hbuilderx/launch.json b/.hbuilderx/launch.json index 501e01c..9cba30d 100644 --- a/.hbuilderx/launch.json +++ b/.hbuilderx/launch.json @@ -2,10 +2,15 @@ // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数 "version": "0.0", "configurations": [{ - "type": "uniCloud", - "default": { - "launchtype": "remote" - } - } + "default" : + { + "launchtype" : "remote" + }, + "mp-weixin" : + { + "launchtype" : "remote" + }, + "type" : "uniCloud" + } ] } diff --git a/pages.json b/pages.json index 871b897..998fb4f 100644 --- a/pages.json +++ b/pages.json @@ -297,6 +297,12 @@ "navigationBarTitleText": "订单详情" } }, + { + "path" : "pages/order/OrderReturnDetail/index", + "style": { + "navigationBarTitleText": "售后详情" + } + }, { "path": "pages/order/OrderSubmission/index", "style": { @@ -423,7 +429,7 @@ "navigationBarTitleText": "直播列表" } } - ], + ], "easycom": { "autoscan": true, "custom": { diff --git a/pages/order/OrderReturnDetail/index.vue b/pages/order/OrderReturnDetail/index.vue new file mode 100644 index 0000000..41edfad --- /dev/null +++ b/pages/order/OrderReturnDetail/index.vue @@ -0,0 +1,135 @@ + + + + + diff --git a/pages/order/ReturnList/index.vue b/pages/order/ReturnList/index.vue index c72190e..4a4d80d 100644 --- a/pages/order/ReturnList/index.vue +++ b/pages/order/ReturnList/index.vue @@ -69,7 +69,8 @@ export default { }, goOrderDetails(order) { this.$yrouter.push({ - path: "/pages/order/OrderDetails/index", + // path: "/pages/order/OrderReturnDetail/index", + path: "/pages/order/OrderDetails/index", query: { id: order.orderId } }); },