移动端下载或唤起本地 APP
on Front-End
function openOrDownload () {
    var iframe = document.createElement('iframe'),
        delay = 1500,
        timer01,
        timer02;
    iframe.style.display = 'none';
    iframe.src = 'schemeURL';
    document.body.appendChild(iframe);
    timer01 = setTimeout(function () {
        document.body.removeChild(iframe);
        timer01 && clearTimeout(timer01);
        location.href = 'downloadURL';
    }, delay);
    timer02 = setTimeout(function () {
        timer02 && clearTimeout(timer02);
        location.reload();
    }, delay + 100);
}