Authored by QC-L

修复返回提示申请退款的问题

@@ -68,7 +68,7 @@ @@ -68,7 +68,7 @@
68 <a href={{this.link}} class="invite-btn">立即付款</a> 68 <a href={{this.link}} class="invite-btn">立即付款</a>
69 {{/if}} 69 {{/if}}
70 {{#if this.modifyAddress }} 70 {{#if this.modifyAddress }}
71 - <a href={{this.link}} class="btn cancel">修改地址</a> 71 + <a href={{this.link}} class="btn">修改地址</a>
72 {{/if}} 72 {{/if}}
73 {{#if this.groupInvite }} 73 {{#if this.groupInvite }}
74 <a href={{this.link}} class="invite-btn">查看拼团详情</a> 74 <a href={{this.link}} class="invite-btn">查看拼团详情</a>
@@ -89,8 +89,7 @@ class GroupOrder extends Page { @@ -89,8 +89,7 @@ class GroupOrder extends Page {
89 $('#group-order').on('click', function(e) { 89 $('#group-order').on('click', function(e) {
90 let $cur = $(e.target), 90 let $cur = $(e.target),
91 $order, 91 $order,
92 - id,  
93 - selectIndex; 92 + id;
94 93
95 if ($cur.closest('.locHref').length > 0) { 94 if ($cur.closest('.locHref').length > 0) {
96 return; 95 return;
@@ -98,7 +97,6 @@ $('#group-order').on('click', function(e) { @@ -98,7 +97,6 @@ $('#group-order').on('click', function(e) {
98 97
99 $order = $cur.closest('.group-order-list-cell'); 98 $order = $cur.closest('.group-order-list-cell');
100 id = $order.data('id'); 99 id = $order.data('id');
101 - selectIndex = $order.data('selectIndex');  
102 100
103 // $reaMask.data('orderId', id); 101 // $reaMask.data('orderId', id);
104 // $refundReaMask.data('orderId', id); 102 // $refundReaMask.data('orderId', id);
@@ -139,10 +137,10 @@ $('#group-order').on('click', function(e) { @@ -139,10 +137,10 @@ $('#group-order').on('click', function(e) {
139 } else if ($cur.closest('.cancel').length > 0) { 137 } else if ($cur.closest('.cancel').length > 0) {
140 // 取消订单 138 // 取消订单
141 dialog.showDialog({ 139 dialog.showDialog({
142 - dialogText: selectIndex === 1 ? '确认取消该订单吗?' : '确认申请退货该订单吗?', 140 + dialogText: '确认取消该订单吗?',
143 hasFooter: { 141 hasFooter: {
144 leftBtnText: '返回', 142 leftBtnText: '返回',
145 - rightBtnText: selectIndex === 1 ? '取消订单' : '申请退款' 143 + rightBtnText: '取消订单'
146 } 144 }
147 }, function() { 145 }, function() {
148 $.ajax({ 146 $.ajax({