|
@@ -232,6 +232,7 @@ var orderPage = new Vue({
|
|
|
window.location.href='/user/order/logistics.html?orderId='+orderId;
|
|
|
},
|
|
|
showModelTypePop: function(){
|
|
|
+ var _self = this;
|
|
|
CAIMEI.Popup({
|
|
|
content: '<div class="payAlert">' +
|
|
|
'<p>您已通过线下转账的方式支付了订单部分款项,剩余款项依然需要使用线下转账方式,给您带来的不便敬请谅解</p>' +
|
|
@@ -242,11 +243,11 @@ var orderPage = new Vue({
|
|
|
'<li>订单标识:<em class="no">'+this.orderIdentificationId+'</em><em class="copy">复制</em></li></ul>' +
|
|
|
'<p><i>请在转账备注中填写上述订单标识,方便财务快速审核,提高发货速度</i></p>' +
|
|
|
'</div>',
|
|
|
- confitmBtnText: '确定',
|
|
|
+ hidePaymentConfirm: '确定',
|
|
|
cancelBtnText: '关闭'
|
|
|
},function(){
|
|
|
// 确定
|
|
|
- this.hidePaymentConfirm();
|
|
|
+ _self.hidePaymentConfirm();
|
|
|
},function(){
|
|
|
// 关闭
|
|
|
});
|