/**
* 渠道編碼
*/
export default function channelcode () {
if (navigator.userAgent.toLowerCase().indexOf("alipay") != -1) {
const channelcode = 'Alipay'
return channelcode
}else if(navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == "micromessenger"){
const channelcode = 'WeChat'
return channelcode
}
}
// 判斷是否微信瀏覽器還是支付寶瀏覽器
var ua = window.navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == 'micromessenger'){
// console.log('微信'+ua)
// dplus.register({"APP來源": "微信"})
} else if (ua.match(/AliApp/i) == 'aliapp') {
// console.log('支付寶'+ua)
// dplus.register({"APP來源": "支付寶"})
} else {
// console.log('其他'+ua)
// dplus.register({"APP來源": "其他"})
}
-
-
-
如果有 ApliPayClient 則為支付寶
-
否則,不是這兩家