diff --git a/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.js b/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.js index c3faa11b0b5f62043b9076bf0ff24a27304f8075..7e1cb142d230d32c9798d83d310eb54ed4ee7413 100644 --- a/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.js +++ b/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.js @@ -144,6 +144,19 @@ Page({ }); }, + // 订单详情 + list_submit_order_event(e) { + var oid = e.currentTarget.dataset.oid || null; + if (oid != null) + { + wx.navigateTo({ + url: "/pages/user-order-detail/user-order-detail?id="+oid + }); + } else { + app.showToast('订单id有误'); + } + }, + // 立即结算事件 list_submit_settlement_event(e) { var index = e.currentTarget.dataset.index || 0; diff --git a/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.wxml b/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.wxml index d8050bedf5e51b9ae426a3682b11cba266a4ff21..d8f1d7559c755f2d49fd3c72b400b4af9d5b94a6 100644 --- a/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.wxml +++ b/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.wxml @@ -10,7 +10,7 @@ - {{item.add_time_time}} + {{item.add_time}} {{item.status_name}} @@ -37,8 +37,9 @@ - - + + + diff --git a/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.wxss b/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.wxss index 48035c61ce46195e20eb076a6018b26892725d93..8527e6972071dc64611b2019dcb4047ee8927fd0 100644 --- a/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.wxss +++ b/sourcecode/weixin/pages/plugins/excellentbuyreturntocash/profit/profit.wxss @@ -38,9 +38,9 @@ .data-list .item .operation { padding: 20rpx 10rpx; } -.data-list .item .submit-order { - border: 1px solid #e5e5e5; - color: #888 !important; +.data-list .item .settlement-submit { + border: 1px solid #d2364c; + color: #d2364c !important; } .data-list .item .operation button:not(:first-child) { margin-left: 30rpx;