Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
b7a13c62
提交
b7a13c62
authored
9月 02, 2020
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
院团委活动开发
上级
9617a989
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
22 行增加
和
9 行删除
+22
-9
utils.js
zyd_public/utils/utils.js
+22
-9
没有找到文件。
zyd_public/utils/utils.js
浏览文件 @
b7a13c62
...
...
@@ -26,7 +26,7 @@ export function matchReg(str) {
}
export
function
htmlFormat
(
str
)
{
if
(
typeof
str
!==
'string'
)
{
if
(
typeof
str
!==
'string'
)
{
return
''
;
}
const
newTxt
=
str
.
replace
(
/
\s
+
([^
<>
]
+
)(?=
<
)
/g
,
function
(
match
)
{
...
...
@@ -150,7 +150,7 @@ export function isJSON(str) {
}
}
export
function
checkMustHaveValue
(
configFileds
,
data
){
export
function
checkMustHaveValue
(
configFileds
,
data
)
{
for
(
let
item
of
configFileds
)
{
if
(
!
data
[
item
.
key
]
&&
data
[
item
.
key
]
!==
false
&&
data
[
item
.
key
]
!==
0
)
{
return
false
;
...
...
@@ -223,24 +223,37 @@ export function controlNotification(props) {
return
true
;
}
export
function
setOneStopConfig
(
value
){
if
(
typeof
value
!==
'string'
)
{
export
function
setOneStopConfig
(
value
)
{
if
(
typeof
value
!==
'string'
)
{
value
=
JSON
.
stringify
(
value
);
}
localStorage
.
setItem
(
'oneStopConfig'
,
value
);
}
export
function
getOneStopConfig
(
key
){
export
function
getOneStopConfig
(
key
)
{
let
configList
=
localStorage
.
getItem
(
'oneStopConfig'
);
if
(
configList
&&
isJSON
(
configList
))
{
if
(
configList
&&
isJSON
(
configList
))
{
let
data
=
JSON
.
parse
(
configList
);
if
(
data
&&
typeof
data
===
'object'
)
{
if
(
typeof
data
===
'undefined'
)
{
if
(
data
&&
typeof
data
===
'object'
)
{
if
(
typeof
data
===
'undefined'
)
{
return
''
;
}
return
data
[
key
]
||
false
;
}
}
else
{
}
else
{
return
getOnestopKey
(
key
);
}
}
export
function
diGuiTree
(
treeData
=
[],
i
=
0
)
{
for
(
let
item
of
treeData
)
{
if
(
i
===
2
){
item
.
selectable
=
true
;
}
if
(
item
.
children
&&
item
.
children
.
length
)
{
i
+=
1
;
diGuiTree
(
item
.
children
,
i
);
}
}
return
treeData
;
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论