Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
5a8214ba
提交
5a8214ba
authored
3月 12, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
判断是不是字符串的bug
上级
aac8e489
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
31 行增加
和
27 行删除
+31
-27
index.jsx
one_stop_public/tableCompon/index.jsx
+0
-0
myutils.js
one_stop_public/utils/myutils.js
+31
-27
没有找到文件。
one_stop_public/tableCompon/index.jsx
浏览文件 @
5a8214ba
差异被折叠。
点击展开。
one_stop_public/utils/myutils.js
浏览文件 @
5a8214ba
import
{
EditorState
,
convertFromRaw
,
convertToRaw
,
CompositeDecorator
,
}
from
'draft-js'
;
import
{
message
}
from
'antd'
import
{
stateToHTML
}
from
'draft-js-export-html'
;
import
{
message
}
from
'antd'
import
{
stateToHTML
}
from
'draft-js-export-html'
;
import
moment
from
'moment'
;
import
{
isJSON
}
from
"@/webPublic/one_stop_public/copy"
;
function
findLinkEntities
(
contentBlock
,
callback
,
contentState
)
{
contentBlock
.
findEntityRanges
(
...
...
@@ -19,13 +19,12 @@ function findLinkEntities(contentBlock, callback, contentState) {
console
.
log
(
arguments
);
callback
(...
arguments
);
}
);
}
const
Link
=
(
props
)
=>
{
const
{
url
}
=
props
.
contentState
.
getEntity
(
props
.
entityKey
).
getData
();
const
{
url
}
=
props
.
contentState
.
getEntity
(
props
.
entityKey
).
getData
();
return
(
<
a
href
=
{
url
}
target
=
"_blank"
>
...
...
@@ -40,29 +39,30 @@ const decorator = new CompositeDecorator([
component
:
Link
}
]);
export
function
changeHtml
(
msg
)
{
var
msg
=
msg
.
replace
(
/<
\/?[^
>
]
*>/g
,
''
);
//去除HTML Tag
msg
=
msg
.
replace
(
/
[
|
]
*
\n
/
,
''
)
//去除行尾空格
msg
=
msg
.
replace
(
/&npsp;/ig
,
''
);
//去掉npsp
return
msg
;
}
export
function
changeToDraftState
(
blocks
)
{
export
function
changeToDraftState
(
blocks
)
{
if
(
blocks
==
null
||
blocks
==
""
)
{
return
EditorState
.
createEmpty
(
decorator
)
}
let
x
;
if
(
blocks
instanceof
String
)
{
try
{
if
(
typeof
blocks
===
'string'
&&
blocks
)
{
try
{
x
=
JSON
.
parse
(
blocks
)
}
catch
(
e
)
{
return
EditorState
.
createEmpty
(
decorator
)
}
}
else
{
x
=
blocks
}
catch
(
e
)
{
return
EditorState
.
createEmpty
(
decorator
)
}
}
else
{
x
=
blocks
}
if
(
!
x
.
blocks
)
{
if
(
!
x
.
blocks
)
{
return
EditorState
.
createEmpty
(
decorator
)
}
...
...
@@ -71,32 +71,36 @@ export function changeToDraftState(blocks) {
const
b
=
convertFromRaw
(
x
);
return
EditorState
.
createWithContent
(
b
,
decorator
)
}
export
function
changeFromDraftState
(
editorState
)
{
const
x
=
editorState
.
getCurrentContent
()
const
blocks
=
JSON
.
stringify
(
convertToRaw
(
x
))
const
content
=
stateToHTML
(
x
)
return
{
content
,
blocks
}
return
{
content
,
blocks
}
}
export
function
changeToDraftState2
(
blocks
)
{
const
b
=
convertFromRaw
(
blocks
);
return
EditorState
.
createWithContent
(
b
,
decorator
)
}
export
function
changeFromDraftState2
(
editorState
)
{
if
(
editorState
==
null
)
return
;
if
(
editorState
==
null
)
return
;
const
x
=
editorState
.
getCurrentContent
()
const
blocks
=
convertToRaw
(
x
)
return
blocks
}
export
function
preHandle
(
values
)
{
for
(
var
key
in
values
)
{
if
(
!
values
[
key
])
continue
;
if
(
key
.
indexOf
(
"$"
)
>
-
1
)
{
if
(
!
values
[
key
])
continue
;
if
(
key
.
indexOf
(
"$"
)
>
-
1
)
{
var
xx
=
key
.
split
(
"$"
)
for
(
var
i
=
0
;
i
<
xx
.
length
;
i
++
)
{
...
...
@@ -107,27 +111,27 @@ export function preHandle(values) {
}
}
delete
values
[
key
]
}
else
{
}
else
{
if
(
values
[
key
]
!=
null
)
{
if
(
values
[
key
]
instanceof
moment
)
{
values
[
key
]
=
values
[
key
].
valueOf
()
}
else
if
(
values
[
key
]
instanceof
Date
)
{
}
else
if
(
values
[
key
]
instanceof
Date
)
{
values
[
key
]
=
values
[
key
].
valueOf
()
}
else
if
(
values
[
key
]
instanceof
Boolean
)
{
values
[
key
]
=
values
[
key
]
?
0
:
1
}
else
if
(
values
[
key
]
instanceof
Object
&&
key
!=
'defaultValues'
)
{
}
else
if
(
values
[
key
]
instanceof
Object
&&
key
!=
'defaultValues'
)
{
//处理子表单中的日期值
let
objValues
=
values
[
key
];
for
(
let
k
in
objValues
)
{
if
(
k
!=
''
&&
objValues
[
k
]
instanceof
Object
)
{
for
(
let
k
in
objValues
)
{
if
(
k
!=
''
&&
objValues
[
k
]
instanceof
Object
)
{
let
childObj
=
objValues
[
k
];
for
(
let
j
in
childObj
)
{
if
(
childObj
[
j
]
!=
null
)
{
for
(
let
j
in
childObj
)
{
if
(
childObj
[
j
]
!=
null
)
{
if
(
childObj
[
j
]
instanceof
moment
)
{
values
[
key
][
k
][
j
]
=
values
[
key
][
k
][
j
].
valueOf
()
}
else
if
(
childObj
[
j
]
instanceof
Date
)
{
}
else
if
(
childObj
[
j
]
instanceof
Date
)
{
values
[
key
][
k
][
j
]
=
values
[
key
][
k
][
j
].
valueOf
()
}
else
if
(
childObj
[
j
]
instanceof
Boolean
)
{
values
[
key
][
k
][
j
]
=
values
[
key
][
k
][
j
]
?
0
:
1
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论