|
@@ -6,7 +6,7 @@
|
|
|
* @param {string} path
|
|
|
* @returns {Boolean}
|
|
|
*/
|
|
|
-export function isExternal(path) {
|
|
|
+export function isExternal (path) {
|
|
|
return /^(https?:|mailto:|tel:)/.test(path)
|
|
|
}
|
|
|
|
|
@@ -14,12 +14,12 @@ export function isExternal(path) {
|
|
|
* @param {string} str
|
|
|
* @returns {Boolean}
|
|
|
*/
|
|
|
-export function validUsername(str) {
|
|
|
+export function validUsername (str) {
|
|
|
const valid_map = ['admin', 'editor']
|
|
|
return valid_map.indexOf(str.trim()) >= 0
|
|
|
}
|
|
|
// 账号组树构造
|
|
|
-// export function translateDataToTreeAll(data, parentKey, parentIDKey) {
|
|
|
+// export function translateDataToTreeAllTree (data, parentKey, parentIDKey) {
|
|
|
// const parent = data.filter(value => Number(value[parentKey]) <= 0) // 父数据
|
|
|
// const children = data.filter(value => Number(value[parentKey]) > 0) // 子数据
|
|
|
// // console.log('--parent', parent)
|
|
@@ -27,30 +27,54 @@ export function validUsername(str) {
|
|
|
// const translator = (parent, children) => {
|
|
|
// parent.forEach(parent => {
|
|
|
// parent.children = []
|
|
|
-// // children.forEach((current, index) => {
|
|
|
-// // if (current[parentKey] === parent[parentIDKey]) {
|
|
|
-// // const temp = JSON.parse(JSON.stringify(children))
|
|
|
-// // temp.splice(index, 1)
|
|
|
-// // translator([current], temp)
|
|
|
-// // typeof parent.children !== 'undefined' ? parent.children.push(current) : (parent.children = [current])
|
|
|
-// // }
|
|
|
-// // })
|
|
|
-// for (let i = 0; i < children.length; ) {
|
|
|
-// if (children[i][parentKey] === parent[parentIDKey]) {
|
|
|
-// const temp = children.splice(i, 1)
|
|
|
-// typeof parent.children !== 'undefined' ? parent.children.push(...temp) : (parent.children = temp)
|
|
|
-// translator(temp, children)
|
|
|
-// } else {
|
|
|
-// i++
|
|
|
+// children.forEach((current, index) => {
|
|
|
+// if (current[parentKey] === parent[parentIDKey]) {
|
|
|
+// const temp = JSON.parse(JSON.stringify(children))
|
|
|
+// temp.splice(index, 1)
|
|
|
+// translator([current], temp)
|
|
|
+// typeof parent.children !== 'undefined' ? parent.children.push(current) : (parent.children = [current])
|
|
|
// }
|
|
|
-// }
|
|
|
+// })
|
|
|
+// // for (let i = 0; i < children.length;) {
|
|
|
+// // if (children[i][parentKey] === parent[parentIDKey]) {
|
|
|
+// // const temp = children.splice(i, 1)
|
|
|
+// // typeof parent.children !== 'undefined' ? parent.children.push(...temp) : (parent.children = temp)
|
|
|
+// // translator(temp, children)
|
|
|
+// // } else {
|
|
|
+// // i++
|
|
|
+// // }
|
|
|
+// // }
|
|
|
// })
|
|
|
// }
|
|
|
// translator(parent, children)
|
|
|
// return parent
|
|
|
// }
|
|
|
|
|
|
-export function translateDataToTreeAll(arr, parentKey, key) {
|
|
|
+export function translateDataToTreeAllTree (data, parentKey, parentIDKey) {
|
|
|
+ let parent = data.filter((value) => Number(value[parentKey]) <= 0);// 父数据
|
|
|
+ let children = data.filter((value) => Number(value[parentKey]) > 0);// 子数据
|
|
|
+ //console.log('--parent', parent)
|
|
|
+ //console.log('--children', children)
|
|
|
+ let translator = (parent, children) => {
|
|
|
+ parent.forEach((parent) => {
|
|
|
+ parent.children = [];
|
|
|
+ children.forEach((current, index) => {
|
|
|
+ if (current[parentKey] === parent[parentIDKey] && current['type'] !== parent['type']) {
|
|
|
+ const temp = JSON.parse(JSON.stringify(children));
|
|
|
+ temp.splice(index, 1);
|
|
|
+ translator([current], temp);
|
|
|
+ typeof parent.children !== "undefined"
|
|
|
+ ? parent.children.push(current)
|
|
|
+ : (parent.children = [current]);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ };
|
|
|
+ translator(parent, children);
|
|
|
+ return parent;
|
|
|
+}
|
|
|
+
|
|
|
+export function translateDataToTreeAll (arr, parentKey, key) {
|
|
|
const map = {}
|
|
|
const result = []
|
|
|
arr.forEach(element => {
|
|
@@ -84,7 +108,7 @@ export function translateDataToTreeAll(arr, parentKey, key) {
|
|
|
}
|
|
|
|
|
|
// 模糊查询
|
|
|
-export function findarrays(ar, feature, v) {
|
|
|
+export function findarrays (ar, feature, v) {
|
|
|
var arr = []
|
|
|
ar.forEach(res => {
|
|
|
console.log(res.feature)
|
|
@@ -134,12 +158,12 @@ export function findarrays(ar, feature, v) {
|
|
|
}
|
|
|
|
|
|
// 随机长度
|
|
|
-function randomNum(start, end) {
|
|
|
+function randomNum (start, end) {
|
|
|
return Math.floor(Math.random() * (Number(end) - Number(start)) + start)
|
|
|
}
|
|
|
|
|
|
// 字母随机
|
|
|
-function randomAlp(arr, count) {
|
|
|
+function randomAlp (arr, count) {
|
|
|
let shuffled = arr.slice(0),
|
|
|
i = arr.length,
|
|
|
min = i - count,
|
|
@@ -161,7 +185,7 @@ function randomAlp(arr, count) {
|
|
|
* @returns {Object}
|
|
|
* 4位密码规则 1111 = 大写 小写 特殊字符 数字 都开启
|
|
|
*/
|
|
|
-export function pwdProduce(minLen, maxLen, struc) {
|
|
|
+export function pwdProduce (minLen, maxLen, struc) {
|
|
|
// 密码规则转化
|
|
|
const pwdStruc = typeof struc === 'string' ? struc.split('') : `${struc}`.split('')
|
|
|
// 字母
|
|
@@ -234,7 +258,7 @@ export function pwdProduce(minLen, maxLen, struc) {
|
|
|
}
|
|
|
|
|
|
// 表单输入长度验证
|
|
|
-function getRealLength(string) {
|
|
|
+function getRealLength (string) {
|
|
|
let realLength = 0,
|
|
|
len = string.length,
|
|
|
charCode = -1
|
|
@@ -249,7 +273,7 @@ function getRealLength(string) {
|
|
|
return realLength
|
|
|
}
|
|
|
|
|
|
-export function lengthValidator(rule, value, callback) {
|
|
|
+export function lengthValidator (rule, value, callback) {
|
|
|
value = value ?? ''
|
|
|
const realLength = getRealLength(value)
|
|
|
if (realLength === 0) {
|
|
@@ -269,7 +293,7 @@ export function lengthValidator(rule, value, callback) {
|
|
|
* @param value
|
|
|
* @param callback
|
|
|
*/
|
|
|
-export function validateIP(rule, value, callback) {
|
|
|
+export function validateIP (rule, value, callback) {
|
|
|
if (value === '' || typeof value === 'undefined' || value == null) {
|
|
|
callback(new Error('请输入正确的IP地址'))
|
|
|
} else {
|