天波h5前端应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.3KB

  1. /*
  2. * @Date: 2022-01-19 16:39:51
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2022-02-25 16:55:56
  5. * @FilePath: \AntpayFrontEnd\src\utils\index.js
  6. * @description: 工具类
  7. */
  8. /**
  9. * 判断是否为空
  10. */
  11. export function isNull(o) {
  12. if (o === null || o === undefined || o === '') {
  13. return true;
  14. // eslint-disable-next-line
  15. } else if (Array.prototype.isPrototypeOf(o) && o.length === 0) {
  16. return true;
  17. // eslint-disable-next-line
  18. } else if (Object.prototype.isPrototypeOf(o) && Object.keys(o).length === 0) {
  19. return true;
  20. }
  21. return false;
  22. }
  23. /**
  24. * 判断是否为非空
  25. */
  26. export function isNotNull(o) {
  27. return !isNull(o);
  28. }
  29. // 判断用户是否是支付宝浏览器
  30. export function isAlipayBrowser(userAgent) {
  31. if (/AlipayClient/.test(userAgent)) {
  32. console.log("当前浏览器是支付宝浏览器");
  33. return true;
  34. } else {
  35. console.log("当前浏览器是非支付宝浏览器");
  36. return false;
  37. }
  38. }
  39. // 判断用户的设备是否是android
  40. export function isAndroid(userAgent) {
  41. if (userAgent.indexOf('Android') > -1 || userAgent.indexOf('Linux') > -1) {
  42. console.log("当前用户设备是android");
  43. return true;
  44. } else if (userAgent.indexOf('iPhone') > -1) {
  45. console.log("当前用户设备是ios");
  46. return false;
  47. }
  48. }