123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- import { routerMode } from "@/config/env";
- export function getUrlParam(name) {
- let reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
- let r = window.location.search.substr(1).match(reg);
- if (r != null) return decodeURIComponent(r[2]);
- return null;
- }
- export function isPc() {
- const userAgentInfo = navigator.userAgent;
- const Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"];
- let flag = true;
- for (let v = 0; v < Agents.length; v++) {
- if (userAgentInfo.indexOf(Agents[v]) > 0) {
- flag = false;
- break;
- }
- }
- return flag;
- }
- export const isIOS = !!navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
- export function getBrowser() {
- let ua = navigator.userAgent.toLowerCase();
- let btypeInfo = (ua.match(/firefox|chrome|safari|opera/g) || "other")[0];
- if ((ua.match(/msie|trident/g) || [])[0]) {
- btypeInfo = "msie";
- }
- let pc = "";
- let prefix = "";
- let plat = "";
- let isTocuh =
- "ontouchstart" in window || ua.indexOf("touch") !== -1 || ua.indexOf("mobile") !== -1;
- if (isTocuh) {
- if (ua.indexOf("ipad") !== -1) {
- pc = "pad";
- } else if (ua.indexOf("mobile") !== -1) {
- pc = "mobile";
- } else if (ua.indexOf("android") !== -1) {
- pc = "androidPad";
- } else {
- pc = "pc";
- }
- } else {
- pc = "pc";
- }
- switch (btypeInfo) {
- case "chrome":
- case "safari":
- case "mobile":
- prefix = "webkit";
- break;
- case "msie":
- prefix = "ms";
- break;
- case "firefox":
- prefix = "Moz";
- break;
- case "opera":
- prefix = "O";
- break;
- default:
- prefix = "webkit";
- break;
- }
- plat = ua.indexOf("android") > 0 ? "android" : navigator.platform.toLowerCase();
- return {
- version: (ua.match(/[\s\S]+(?:rv|it|ra|ie)[\/: ]([\d.]+)/) || [])[1],
- plat: plat,
- type: btypeInfo,
- pc: pc,
- prefix: prefix,
- isMobile: pc == "pc" ? false : true
- };
- }
- export function href(path, newWindow) {
- let { search, origin } = window.location;
- let url = "";
- if (routerMode == "history") {
- url = origin + path;
- } else {
- url = origin + search + "#" + path;
- }
- if (newWindow) {
- window.open(url);
- } else {
- window.location.href = url;
- }
- }
- export function orderBy(list, key) {
- return list.sort((a, b) => a[key] - b[key]);
- }
- export function deepTree(list) {
- let newList = [];
- let map = {};
- list.forEach((e) => (map[e.id] = e));
- list.forEach((e) => {
- let parent = map[e.parentId];
- if (parent) {
- (parent.children || (parent.children = [])).push(e);
- } else {
- newList.push(e);
- }
- });
- const fn = (list) => {
- list.map((e) => {
- if (e.children instanceof Array) {
- e.children = orderBy(e.children, "orderNum");
- fn(e.children);
- }
- });
- };
- fn(newList);
- return orderBy(newList, "orderNum");
- }
- export function revDeepTree(list = []) {
- let d = [];
- let id = 0;
- const deep = (list, parentId) => {
- list.forEach((e) => {
- e.id = id++;
- e.parentId = parentId;
- d.push(e);
- if (e.children && isArray(e.children)) {
- deep(e.children, e.id);
- }
- });
- };
- deep(list || [], null);
- return d;
- }
- export function debounce(fn, delay) {
- let timer = null;
- return function () {
- let args = arguments;
- let context = this;
- if (timer) {
- clearTimeout(timer);
- timer = setTimeout(function () {
- fn.apply(context, args);
- }, delay);
- } else {
- timer = setTimeout(function () {
- fn.apply(context, args);
- }, delay);
- }
- };
- }
- export function isArray(value) {
- if (typeof Array.isArray === "function") {
- return Array.isArray(value);
- } else {
- return Object.prototype.toString.call(value) === "[object Array]";
- }
- }
- export function isObject(value) {
- return Object.prototype.toString.call(value) === "[object Object]";
- }
- export function isNumber(value) {
- return !isNaN(Number(value));
- }
- export function isFunction(value) {
- return typeof value == "function";
- }
- export function isString(value) {
- return typeof value == "string";
- }
- export function isEmpty(value) {
- if (isArray(value)) {
- return value.length === 0;
- }
- if (isObject(value)) {
- return Object.keys(value).length === 0;
- }
- return value === "" || value === undefined || value === null;
- }
- export function last(data) {
- if (isArray(data) || isString(data)) {
- return data[data.length - 1];
- }
- }
- export function cloneDeep(obj) {
- let d = isArray(obj) ? obj : {};
- if (isObject(obj)) {
- for (let key in obj) {
- if (obj.hasOwnProperty && obj.hasOwnProperty(key)) {
- if (obj[key] && typeof obj[key] === "object") {
- d[key] = cloneDeep(obj[key]);
- } else {
- d[key] = obj[key];
- }
- }
- }
- }
- return d;
- }
- export function clone(obj) {
- return Object.create(Object.getPrototypeOf(obj), Object.getOwnPropertyDescriptors(obj));
- }
- export function deepMerge(a, b) {
- let k;
- for (k in b) {
- a[k] =
- a[k] && a[k].toString() === "[object Object]" ? deepMerge(a[k], b[k]) : (a[k] = b[k]);
- }
- return a;
- }
- export function contains(parent, node) {
- if (document.documentElement.contains) {
- return parent !== node && parent.contains(node);
- } else {
- while (node && (node = node.parentNode)) if (node === parent) return true;
- return false;
- }
- }
|