Blame view

public/js/home/orderdetail.page.js 13.5 KB
郝肖肖 authored
1 2 3 4 5 6
/**
 * 订单详情页
 * @author: xuqi<qi.xu@yoho.cn>
 * @date: 2015/11/16
 */
lijing authored
7 8 9
require('layout/_modal.css');
require('home/order-detail-index.page.css');
lijing authored
10
let $ = require('yoho-jquery'),
郝肖肖 authored
11 12
    lazyLoad = require('yoho-jquery-lazyload'),
    Hammer = require('yoho-hammer'),
13 14
    dialog = require('plugin/dialog'),
    tip = require('plugin/tip'),
郭成尧 authored
15
    Swiper = require('yoho-swiper');
郝肖肖 authored
16
lijing authored
17
let orderId = $('#order-detail').data('id'),
郝肖肖 authored
18 19 20
    $countDownHours = $('.hours'),
    $countdownContainer = $('.count-down'),
    $reaMask = $('.reason-mask'),
郭成尧 authored
21
    $refundReaMask = $('.refund-reason-mask'),
郝肖肖 authored
22
    reasonSwiper,
郭成尧 authored
23
    refundReasonSwiper,
郝肖肖 authored
24 25 26
    optHammer,
    $createTime = new Date($('.createTime').text() * 1000);
lijing authored
27 28
let $sureClose = $('.order-opt').find('.cancel'); // 取消订单按钮
let $sureRefund = $('.order-opt').find('.refund'); // 申请退款按钮
29
let $refundChangeMask = $('.refund-change-mask'); // 退换货选择组件
郭成尧 authored
30
李靖 authored
31 32
let $newHours = $('.new-hours').length > 0 ? true : false; // 新的倒计时格式标示
33 34
require('common');
require('plugin/modal.alert');
郝肖肖 authored
35 36 37 38 39 40 41

lazyLoad({
    try_again_css: 'order-failure'
});

function downCount(options) {
lijing authored
42
    let difference = options, // difference of dates
郝肖肖 authored
43 44 45 46 47 48 49 50
        interval;

    /**
     * Main downCount function that calculates everything
     */
    function countdown() {

        // basic math variables
lijing authored
51
        let _second = 1000,
郝肖肖 authored
52 53 54 55 56 57 58 59
            _minute = _second * 60,
            _hour = _minute * 60,
            _day = _hour * 24,
            hours,
            minutes,
            seconds;

        // calculate dates
郭成尧 authored
60 61
        hours = Math.floor((difference % _day) / _hour);
        minutes = Math.floor((difference % _hour) / _minute);
郝肖肖 authored
62 63 64 65 66 67 68 69 70
        seconds = Math.floor((difference % _minute) / _second);

        // fix dates so that it will show two digets
        hours = (String(hours).length >= 2) ? hours : '0' + hours;
        minutes = (String(minutes).length >= 2) ? minutes : '0' + minutes;
        seconds = (String(seconds).length >= 2) ? seconds : '0' + seconds;

        // set to DOM
        $countdownContainer.removeClass('hide');
李靖 authored
71
        $('.new-hours').removeClass('hide');
郝肖肖 authored
72
        if (hours === '00') {
李靖 authored
73 74 75 76 77
            if ($newHours) {
                $countDownHours.text(minutes + '分' + seconds + '秒');
            } else {
                $countDownHours.text('剩余' + minutes + ':' + seconds);
            }
郝肖肖 authored
78
        } else {
李靖 authored
79 80 81 82 83
            if ($newHours) {
                $countDownHours.text(hours + '时' + minutes + '分' + seconds + '秒');
            } else {
                $countDownHours.text('剩余' + hours + ':' + minutes + ':' + seconds);
            }
郝肖肖 authored
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
        }

        difference -= 1000;

        if (difference < 0) {
            clearInterval(interval);// stop timer
            return;
        }
    }
    if (difference !== '' && difference > 0) {
        interval = setInterval(countdown, 1000);// start
    }
}

downCount($countDownHours.text());
郭成尧 authored
100 101 102 103
/**
 * 确认收货
 */
function sureOrder() {
郭成尧 authored
104 105 106 107 108
    dialog.showDialog({
        dialogText: '请确认是否已经收到货品',
        hasFooter: {
            leftBtnText: '取消',
            rightBtnText: '确定'
郭成尧 authored
109
        }
郭成尧 authored
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
    }, function() {
        $.ajax({
            type: 'POST',
            url: '//m.yohobuy.com/home/orders/sure',
            data: {
                orderCode: orderId
            },
            success: function(result) {
                if (result.code === 200) {
                    setTimeout(function() {
                        window.location.href = '/home/orders';
                    }, 2000);
                }
            }
        });
郭成尧 authored
125 126 127
    });
}
郝肖肖 authored
128
// 订单删除
郝肖肖 authored
129
optHammer = new Hammer(document.getElementsByClassName('order-opt')[0]);
郝肖肖 authored
130
optHammer.on('tap', function(e) {
lijing authored
131
    let $cur = $(e.target);
郝肖肖 authored
132
郝肖肖 authored
133
    if ($cur.hasClass('del')) {
郝肖肖 authored
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163

        // 删除订单
        dialog.showDialog({
            dialogText: '确定删除订单吗?',
            hasFooter: {
                leftBtnText: '取消',
                rightBtnText: '确定'
            }
        }, function() {
            $.ajax({
                type: 'GET',
                url: '/home/delOrder',
                data: {
                    id: orderId
                }
            }).then(function(res) {
                $('#dialog-wrapper').hide();
                if ($.type(res) !== 'object') {
                    return;
                }
                if (res.message) {
                    tip.show(res.message);
                }
                setTimeout(function() {
                    window.location.href = '/home/orders';
                }, 2000);
            }).fail(function() {
                tip.show('网络错误');
            });
        });
郝肖肖 authored
164
    } else if ($cur.hasClass('cancel')) {
郭成尧 authored
165
        // $reaMask.css('visibility', 'visible');
郝肖肖 authored
166
    } else if ($cur.hasClass('refund')) {
郭成尧 authored
167
        // $refundReaMask.css('visibility', 'visible');
郭成尧 authored
168 169 170 171 172 173 174 175 176
        if (window._yas && window._yas.sendCustomInfo) {
            window._yas.sendCustomInfo({
                op: 'YB_ORDER_REFUND_C',
                param: JSON.stringify({
                    C_ID: window._ChannelVary[window.cookie('_Channel')],
                    ORD_NUM: orderId
                })
            }, true);
        }
郝肖肖 authored
177
    } else if ($cur.hasClass('rebuy')) {
郝肖肖 authored
178 179 180 181 182 183 184 185 186 187 188 189 190 191
        $.ajax({
            type: 'GET',
            url: '/home/readd',
            data: {
                orderCode: orderId
            },
            success: function(res) {
                tip.show(res.message);
                location.href = '/cart/index/index';
            },
            error: function(res) {
                tip.show(res.message);
            }
        });
郝肖肖 authored
192
    } else if ($cur.hasClass('modify-address')) {
郭成尧 authored
193 194 195 196 197 198 199 200 201
        if (window._yas && window._yas.sendCustomInfo) {
            window._yas.sendCustomInfo({
                op: 'YB_ORDER_MODIFY_ADDRESS_C',
                param: JSON.stringify({
                    C_ID: window._ChannelVary[window.cookie('_Channel')],
                    ORD_NUM: orderId
                })
            }, true);
        }
郝肖肖 authored
202
        return true;
郝肖肖 authored
203
    } else if ($cur.closest('.after-sales').length) {
郭成尧 authored
204 205
        if ($cur.hasClass('is-mars-app')) {
            setTimeout(function() {
郭成尧 authored
206 207
                $refundChangeMask.show();
            }, 500);
郭成尧 authored
208 209 210 211 212 213 214 215
        } else {
            dialog.showDialog({
                dialogText: 'WAP端暂不支持该功能,请至有货APP进行操作',
                hasFooter: {
                    centerBtnText: '我知道了'
                }
            });
        }
216
        return false;
郭成尧 authored
217 218 219
    } else if ($cur.hasClass('sure')) {
        sureOrder();
        return false;
郝肖肖 authored
220 221
    }
});
郝肖肖 authored
222 223 224 225 226 227 228

$(function() {
    reasonSwiper = new Swiper('.box-main', {
        initialSlide: 0,
        centeredSlides: true,
        slidesPerView: 5,
        direction: 'vertical',
郭成尧 authored
229
        onSlideChangeStart: function(reasonSwiper) {//eslint-disable-line
lijing authored
230
            let activeIndex = reasonSwiper.activeIndex,
郝肖肖 authored
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
                slides = reasonSwiper.slides,
                i = 0;

            if (slides.length !== 1) {
                if (activeIndex === 0) {
                    for (i = 1; i < slides.length; i++) {
                        $(slides[i]).css('transform', '');
                    }
                } else if (activeIndex === slides.length - 1) {
                    for (i = 0; i < activeIndex; i++) {
                        $(slides[i]).css('transform', 'rotateX(' + (30 + (activeIndex - i) * 12) + 'deg)');
                    }
                } else {
                    for (i = 0; i < activeIndex; i++) {
                        $(slides[i]).css('transform', 'rotateX(' + (30 + (activeIndex - i) * 12) + 'deg)');
                    }
                    for (i = activeIndex + 1; i < slides.length; i++) {
                        $(slides[i]).css('transform', '');
                    }
                }
            }
            $(slides[activeIndex]).css('transform', '');
        }
    });
郭成尧 authored
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287

    // 申请退款 Swiper
    refundReasonSwiper = new Swiper('.refund-box-main', {
        direction: 'vertical',
        slidesPerView: 5,
        centeredSlides: true,
        initialSlide: 0,
        onSlideChangeStart: function(refundReasonSwiper) {//eslint-disable-line
            let activeIndex = refundReasonSwiper.activeIndex,
                slides = refundReasonSwiper.slides,
                i = 0;

            if (slides.length !== 1) {
                if (activeIndex === 0) {
                    for (i = 1; i < slides.length; i++) {
                        $(slides[i]).css('transform', '');
                    }
                } else if (activeIndex === slides.length - 1) {
                    for (i = 0; i < activeIndex; i++) {
                        $(slides[i]).css('transform', 'rotateX(' + (30 + (activeIndex - i) * 12) + 'deg)');
                    }
                } else {
                    for (i = 0; i < activeIndex; i++) {
                        $(slides[i]).css('transform', 'rotateX(' + (30 + (activeIndex - i) * 12) + 'deg)');
                    }
                    for (i = activeIndex + 1; i < slides.length; i++) {
                        $(slides[i]).css('transform', '');
                    }
                }
            }
            $(slides[activeIndex]).css('transform', '');
        }
    });
郝肖肖 authored
288 289
});
郭成尧 authored
290 291 292
/**
 * 取消订单
 */
郭成尧 authored
293
$reaMask.find('.box-cmp').on('touchend', function() {
lijing authored
294
    let selSolid = reasonSwiper.slides[reasonSwiper.activeIndex],
郝肖肖 authored
295 296 297 298 299 300 301 302 303 304 305 306
        reason = $(selSolid).text(),
        reasonId = $(selSolid).data('reasonId');

    $.ajax({
        type: 'GET',
        url: '/home/cancelOrder',
        data: {
            id: orderId,
            reason: reason,
            reasonId: reasonId
        }
    }).then(function(res) {
郭成尧 authored
307
        $reaMask.css('visibility', 'hidden');
郝肖肖 authored
308 309 310
        if ($.type(res) !== 'object') {
            return;
        }
郭成尧 authored
311
郝肖肖 authored
312 313 314
        if (res.message) {
            tip.show(res.message);
        }
郭成尧 authored
315 316 317 318 319 320

        if (res.code === 200) {
            setTimeout(function() {
                window.location.href = '/home/orders';
            }, 500);
        }
郝肖肖 authored
321 322 323 324 325
    }).fail(function() {
        tip.show('网络错误');
    });
});
郭成尧 authored
326 327 328 329 330 331 332 333 334 335
// 申请退款
$refundReaMask.find('.box-cmp').on('touchend', function() {
    let selSolid = refundReasonSwiper.slides[refundReasonSwiper.activeIndex],
        reason = $(selSolid).text(),
        reasonId = $(selSolid).data('reasonId');

    $.ajax({
        type: 'GET',
        url: '/home/refundApply',
        data: {
郭成尧 authored
336
            id: orderId,
郭成尧 authored
337 338 339 340
            reason: reason,
            reasonId: reasonId
        }
    }).then(function(res) {
郭成尧 authored
341
        $refundReaMask.css('visibility', 'hidden');
郭成尧 authored
342 343 344
        if ($.type(res) !== 'object') {
            return;
        }
郭成尧 authored
345 346 347 348 349 350 351 352 353 354 355 356 357 358

        if (res.code === 200) {
            dialog.showDialog({
                dialogText: '您的退款申请已提交,请耐心等待退款',
                hasFooter: {
                    leftBtnText: '返回',
                    rightBtnText: '确定'
                }
            }, function() {
                window.location.href = '/home/orders';
            });

            return false;
        }
郭成尧 authored
359 360 361 362 363 364 365 366
        if (res.message) {
            tip.show(res.message);
        }
    }).fail(function() {
        tip.show('网络错误');
    });
});
郝肖肖 authored
367 368 369 370 371 372 373 374 375
$reaMask.on('touchend', function(event) {
    if (event.target.className !== 'reason-mask') {
        return false;
    }

    $reaMask.css('visibility', 'hidden');
    event.stopPropagation();
});
郭成尧 authored
376 377
// 申请退款
$refundReaMask.on('touchend', function(event) {
郭成尧 authored
378
    if (event.target.className !== 'refund-reason-mask') {
郭成尧 authored
379 380 381 382 383 384 385
        return false;
    }

    $refundReaMask.css('visibility', 'hidden');
    event.stopPropagation();
});
郭成尧 authored
386 387 388

// 弹出取消订单提示框
$sureClose.on('click', function() {
郭成尧 authored
389 390 391 392 393 394 395 396 397 398 399
    dialog.showDialog({
        dialogText: '取消订单后,本单享有的优惠可能会一并取消,确定申请吗?',
        hasFooter: {
            leftBtnText: '返回',
            rightBtnText: '确定'
        }
    }, function() {
        dialog.hideDialog();
        $reaMask.css('visibility', 'visible');
    });
郭成尧 authored
400 401 402 403
});

// 弹出申请退款提示框
$sureRefund.on('click', function() {
郭成尧 authored
404 405 406 407 408 409
    // 埋点
    if (window._yas && window._yas.sendCustomInfo) {
        window._yas.sendCustomInfo({
            op: 'YB_ORDER_REFUND_C',
            param: JSON.stringify({
                C_ID: window._ChannelVary[window.cookie('_Channel')],
郭成尧 authored
410
                ORD_NUM: orderId + ''
郭成尧 authored
411 412 413 414
            })
        }, true);
    }
郭成尧 authored
415 416 417 418 419 420 421 422 423 424
    dialog.showDialog({
        dialogText: '申请退款后,本单享有的优惠可能会一并取消,确定申请吗?',
        hasFooter: {
            leftBtnText: '返回',
            rightBtnText: '确定'
        }
    }, function() {
        dialog.hideDialog();
        $refundReaMask.css('visibility', 'visible');
    });
郭成尧 authored
425 426
});
427 428 429 430 431 432 433 434 435 436 437
/**
 * 申请退换货组件事件处理
 */
$refundChangeMask.on('click', function(elem) {
    let $target = $(elem.target);

    if ($target.hasClass('cancel')) {
        $refundChangeMask.fadeOut();
    }
});
郝肖肖 authored
438
function formatDate(objD) {
lijing authored
439
    let str,
郝肖肖 authored
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
        yy = objD.getYear(),
        MM = objD.getMonth() + 1,
        dd = objD.getDate(),
        hh = objD.getHours(),
        mm = objD.getMinutes(),
        ss = objD.getSeconds();

    if (yy < 1900) {
        yy = yy + 1900;
    }

    if (MM < 10) {
        MM = '0' + MM;
    }

    if (dd < 10) {
        dd = '0' + dd;
    }

    if (hh < 10) {
        hh = '0' + hh;
    }

    if (mm < 10) {
        mm = '0' + mm;
    }

    if (ss < 10) {
        ss = '0' + ss;
    }

    str = yy + '-' + MM + '-' + dd + ' ' + hh + ':' + mm + ':' + ss;
    $('.createTime').text(str);
}

formatDate($createTime);