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 @@
+
+
+
+
+
+
+
+ 退款总金额
+ ¥{{200.0}}
+
+
+
+ 您已成功发起退款申请,请耐心等待商家处理
+
+ · 卖家同意或超时未处理,系统将退款给您
+ · 如果卖家拒绝,您可以修改退款申请后再次发起,卖家会重新处理
+
+
+
+ 撤销申请
+ 修改申请
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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 }
});
},