export { default as langUtil } from './langUtils'; export * from './requestUtil'; const USERID_KEY = 'userId'; export function getUserId() { return window.sessionStorage.getItem(USERID_KEY) || ''; } export function setUserId(val) { window.sessionStorage.setItem(USERID_KEY, val); } export function clearUserId() { window.sessionStorage.removeItem(USERID_KEY); } /** * 转变菜单列表为tree结构 * @param {Array} menuList 菜单列表 * @param {Boolean} filterMenu 是否过滤掉菜单,只保留目录 */ export function convertListToTree(menuList, filterMenu = false) { let tempMenu = [...menuList]; if (filterMenu) { tempMenu = tempMenu.filter(m => m.menuType !== 'MENU'); } for (const menu of menuList) { if (menu.parentMenuId === 0) continue; const parent = menuList.find(m => m.menuId === menu.parentMenuId); parent.children ? parent.children.push(menu) : (parent.children = [menu]); } return tempMenu.filter(m => m.parentMenuId === 0); } export function EMPTY_FUN() {} export const isFunction = val => typeof val === 'function'; export function arrayToTree(options) { options = JSON.parse(JSON.stringify(options)); this.data = options.data || []; this.parentKey = options.parentKey || 'parent_code'; this.childrenKey = options.childrenKey || 'children'; this.key = options.key || 'code'; this.maping = options.maping || undefined; this.rootValue = options.rootValue || '0'; this.treeData = []; this.indexStorage = {}; this.getDataBykey = function(key) { return this.indexStorage[key]; }; this.setMapping = function() { for (let i = 0; i < this.data.length; i++) { var item = this.data[i]; for (const x in this.maping) { item[this.maping[x]] = item[x]; } } }; if (this.maping) { this.setMapping(); } this.setIndexStorage = function() { for (let i = 0; i < this.data.length; i++) { this.indexStorage[this.data[i][this.key]] = this.data[i]; // 以id作为索引存储元素,可以无需遍历直接定位元素 } }; this.setIndexStorage(); // 利用数组浅拷贝 this.toTree = function() { const THISDATA = JSON.parse(JSON.stringify(this.data)); for (let i = 0; i < this.data.length; i++) { let currentElement = this.data[i]; currentElement.selectable = currentElement.orgType === 'DEPARTMENT'; let tempCurrentElementParent = this.indexStorage[currentElement[this.parentKey]]; // 临时变量里面的当前元素的父元素 if (tempCurrentElementParent) { // 如果存在父元素 if (!tempCurrentElementParent[this.childrenKey]) { // 如果父元素没有chindren键 tempCurrentElementParent[this.childrenKey] = []; // 设上父元素的children键 } tempCurrentElementParent[this.childrenKey].push(currentElement); // 给父元素加上当前元素作为子元素 } else { // 不存在父元素,意味着当前元素是一级元素 if (this.rootValue != undefined && currentElement[this.key] === this.rootValue) { this.treeData.push(currentElement); } else { this.treeData.push(currentElement); } } } return this.treeData; }; this.toTree(); return this; } // select组件 数据格式化 export const formatObj = async (ArrObj, obj) => { const newData = [...ArrObj]; const newDataOne = await newData.map(i => { const newObj = { ...i }; Object.keys(obj).forEach(key => { newObj[key] = i[obj[key]]; }); return newObj; }); return newDataOne; };