let util = { isMobile(){ var sUserAgent = navigator.userAgent.toLowerCase(); var bIsIpad = sUserAgent.match(/ipad/i) == "ipad"; var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os"; var bIsMidp = sUserAgent.match(/midp/i) == "midp"; var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4"; var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb"; var bIsAndroid = sUserAgent.match(/android/i) == "android"; var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce"; var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile"; if (!(bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM)) { return false; } else { return true; } }, isWX(){ var ua = navigator.userAgent.toLowerCase(); return (/micromessenger/.test(ua)) ? true : false; }, pickPaytype() { let isMobile = this.isMobile(); let isWx = this.isWX(); //Dictionary : 1: scan qrcode, 2:redirect 3: raise local app if(isWx) { //return 3; return 1; } if(!isMobile) { //Desktop, use native pay return 1; } else { return 2; } }, checkPaytypeValidated($paytype) { if(isWx && $paytype == 1) { //return 3; return true; } else if(isWx && $paytype!=1) { return false; } if(!isMobile && $paytype == 1) { //Desktop, use native pay return true; } else if(isMobile && $paytype == 2) { return true; } return false; } } export default util;