From 26dfee2ce8ac0112d698bffdb66c0e3ca5bf61d1 Mon Sep 17 00:00:00 2001 From: fungleo <web@fengcms.com> Date: 星期三, 05 八月 2020 10:24:54 +0800 Subject: [PATCH] 彻底重写回显数据字典方法 --- ruoyi-ui/src/utils/ruoyi.js | 77 ++++++++++++++++++++++++++------------ 1 files changed, 53 insertions(+), 24 deletions(-) diff --git a/ruoyi-ui/src/utils/ruoyi.js b/ruoyi-ui/src/utils/ruoyi.js index 602fdd6..b669fb3 100644 --- a/ruoyi-ui/src/utils/ruoyi.js +++ b/ruoyi-ui/src/utils/ruoyi.js @@ -7,7 +7,7 @@ // 鏃ユ湡鏍煎紡鍖� export function parseTime(time, pattern) { - if (arguments.length === 0) { + if (arguments.length === 0 || !time) { return null } const format = pattern || '{y}-{m}-{d} {h}:{i}:{s}' @@ -17,6 +17,8 @@ } else { if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) { time = parseInt(time) + } else if (typeof time === 'string') { + time = time.replace(new RegExp(/-/gm), '/'); } if ((typeof time === 'number') && (time.toString().length === 10)) { time = time * 1000 @@ -52,27 +54,29 @@ } // 娣诲姞鏃ユ湡鑼冨洿 -export function addDateRange(params, dateRange) { - var search = params; - search.beginTime = ""; - search.endTime = ""; - if (null != dateRange && '' != dateRange) { - search.beginTime = this.dateRange[0]; - search.endTime = this.dateRange[1]; - } - return search; +export function addDateRange (params = {}, dateRange) { + if (dateRange != null && dateRange !== '') { + params.beginTime = this.dateRange[0] + params.endTime = this.dateRange[1] + } + return params } // 鍥炴樉鏁版嵁瀛楀吀 -export function selectDictLabel(datas, value) { - var actions = []; - Object.keys(datas).map((key) => { - if (datas[key].dictValue == ('' + value)) { - actions.push(datas[key].dictLabel); - return false; - } - }) - return actions.join(''); +export function selectDictLabel(datas = [], value = '') { + if (!value) return '-'; + const dataArr = datas.filter(item => item.dictValue === value.toString()); + return dataArr.length ? dataArr[0].dictLabel : 'Error Dict'; +} + +// 鍥炴樉鏁版嵁瀛楀吀锛堝瓧绗︿覆鏁扮粍锛� +export function selectDictLabels(datas = [], value = '', separator = ',') { + const actions = []; + const temp = value.split(separator).filter(item => item); + temp.forEach((_, index) => { + actions.push(selectDictLabel(datas, temp[index])); + }) + return actions.join(separator); } // 閫氱敤涓嬭浇鏂规硶 @@ -96,8 +100,33 @@ // 杞崲瀛楃涓诧紝undefined,null绛夎浆鍖栦负"" export function praseStrEmpty(str) { - if (!str || str == "undefined" || str == "null") { - return ""; - } - return str; -} \ No newline at end of file + if (!str || str == "undefined" || str == "null") { + return ""; + } + return str; +} + +/** + * 鏋勯�犳爲鍨嬬粨鏋勬暟鎹� + * @param {*} data 鏁版嵁婧� + * @param {*} id id瀛楁 榛樿 'id' + * @param {*} parentId 鐖惰妭鐐瑰瓧娈� 榛樿 'parentId' + * @param {*} children 瀛╁瓙鑺傜偣瀛楁 榛樿 'children' + * @param {*} rootId 鏍笽d 榛樿 0 + */ +export function handleTree(data = [], id = 'id', parentId = 'parentId', children = 'children', rootId = 0) { + //瀵规簮鏁版嵁娣卞害鍏嬮殕 + const cloneData = JSON.parse(JSON.stringify(data)) + //寰幆鎵�鏈夐」 + const treeData = cloneData.filter(father => { + const branchArr = cloneData.filter(child => { + //杩斿洖姣忎竴椤圭殑瀛愮骇鏁扮粍 + return father[id] === child[parentId] + }); + branchArr.length && (father.children = branchArr); + //杩斿洖绗竴灞� + return father[parentId] === rootId; + }); + return treeData !== '' ? treeData : data; +} + -- Gitblit v1.9.3