Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
4f600327
提交
4f600327
authored
8月 13, 2024
作者:
钟是志
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/master'
上级
40073b03
a5edc047
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
33 行增加
和
30 行删除
+33
-30
Detail.js
FormInsertDiy/AffairPage/Detail.js
+1
-1
DetailSplit.js
one_stop_public/DetailForAudit/DetailSplit.js
+17
-6
FormListButtons.js
one_stop_public/libs/formList/FormListButtons.js
+1
-2
OneStopWangEditor.js
zyd_public/WangEditor/OneStopWangEditor.js
+2
-12
OnstopWang.js
zyd_public/WangEditor/OnstopWang.js
+12
-9
没有找到文件。
FormInsertDiy/AffairPage/Detail.js
浏览文件 @
4f600327
...
...
@@ -236,7 +236,7 @@ export default class Detail extends Component {
}}
/
>
)
:
(
<
div
id
=
{
'detailIframeId'
}
>
<
div
id
=
{
'detailIframeId'
}
data
-
page
-
info
=
{
'detail'
}
>
<
DetailOneStop
id
=
{
id
}
{...
this
.
props
}
code
=
{
code
}
showPrint
=
{
showPrint
||
false
}
/
>
<
/div
>
)}
...
...
one_stop_public/DetailForAudit/DetailSplit.js
浏览文件 @
4f600327
...
...
@@ -51,6 +51,7 @@ import { getIsGui_Jian, isJSON } from '@/webPublic/zyd_public/utils/utils';
import
HistoryFormList
from
'@/webPublic/one_stop_public/DetailForAudit/HistoryFormList'
;
import
{
getServicesNomal
,
getUaaServicesNomal
}
from
'../Services/services'
;
import
{
getAllApi
,
getDetailsApi
,
queryUserSetApi
}
from
'../Services/apiConfig'
;
import
{
getFormDetail
}
from
"@/webPublic/FormInsertDiy/AffairPage/publicApiService"
;
@
connect
()
class
DetailSplit
extends
Component
{
...
...
@@ -207,8 +208,21 @@ class DetailSplit extends Component {
}
if
(
val
)
{
// console.log(val);
this
.
getTaskInfos
(
val
).
then
((
res
)
=>
{
this
.
getTaskInfos
(
val
).
then
(
async
(
res
)
=>
{
val
.
taskInfo
=
res
.
taskInfo
;
if
(
res
.
taskInfo
&&
res
.
taskInfo
.
length
>
1
&&
!
val
.
taskFormKey
){
if
(
res
.
taskInfo
[
0
].
taskDefKey
===
res
.
taskInfo
[
res
.
taskInfo
.
length
-
1
].
taskDefKey
&&
!
val
.
hisTaskForm
.
formKeys
?.
length
){
const
formKey
=
res
.
taskInfo
[
0
].
formKey
// 驳回到发起节点没有展示的bug-3673 查看已驳回的数据的详情,无数据显示
val
.
taskFormKey
=
formKey
;
val
.
hisTaskForm
.
formKeys
=
[
{
formKey
:
formKey
,
taskName
:
res
.
taskInfo
[
0
].
name
,
},
];
}
}
this
.
setState
(
{
data
:
val
,
...
...
@@ -458,11 +472,8 @@ class DetailSplit extends Component {
route
:
this
.
props
?.
route
,
};
// console.log(data, isAllPrint);
// let formV = this.props.form.getFieldsValue();
// if(formV?.LiPGpLRKXXm && formV?.LiPGpLRKXXm['41073']){
// console.log(formV?.LiPGpLRKXXm['41073']);
// }
// console.log("🚀 ~ file:DetailSplit method:render line:467 -----", "data", data);
return
(
<
Fragment
>
<
div
...
...
one_stop_public/libs/formList/FormListButtons.js
浏览文件 @
4f600327
...
...
@@ -54,8 +54,7 @@ export function FormListButtons(props) {
if
(
!
ConcatButtons
||
!
ConcatButtons
.
length
)
{
return
null
;
}
console
.
log
(
ConcatButtons
);
// console.log(ConcatButtons);
return
ConcatButtons
.
map
((
r
,
i
)
=>
{
if
(
r
.
ButtonType
===
'Normal'
)
{
...
...
zyd_public/WangEditor/OneStopWangEditor.js
浏览文件 @
4f600327
...
...
@@ -102,21 +102,11 @@ export default function Index({
editor
.
create
();
editor
.
txt
.
html
(
value
);
// if (value && value.indexOf('wangEditorHtml') > -1) {
// editor.txt.html(value);
// } else {
// editor.txt.html('<div class="wangEditorHtml">' + value + '</div>');
// }
return
()
=>
{
console
.
log
(
'
是否
销毁了editor'
);
console
.
log
(
'销毁了editor'
);
editor
.
destroy
();
};
},
[]);
// useEffect(() => {
// if (value && editor && editor.txt) {
// editor.txt.html('<div class="wangEditorHtml">' + value + '</div>');
// }
// }, [value]);
return
<
div
id
=
{
`wangEditor
${
domKey
}
`
}
/>
;
}
zyd_public/WangEditor/OnstopWang.js
浏览文件 @
4f600327
import
React
,
{
useState
,
useEffect
,
forwardRef
}
from
'react'
;
import
React
,
{
useState
,
useEffect
,
forwardRef
,
useMemo
}
from
'react'
;
import
WangEditor
from
'./OneStopWangEditor'
;
function
Index
({
onChange
,
value
,
otherProps
,
dataColumn
,
disabled
,
json
,
uuid
})
{
...
...
@@ -19,11 +19,8 @@ function Index({ onChange, value, otherProps, dataColumn, disabled, json, uuid }
if
(
!
value
||
value
===
'null'
){
return
<
div
><
/div
>
}
return
<
div
dangerouslySetInnerHTML
=
{{
__html
:
`<div class="wangEditorHtml">
${
value
}
</div>`
}}
>
<
/div
>
return
<
div
dangerouslySetInnerHTML
=
{{
__html
:
`<div class="wangEditorHtml">
${
value
}
</div>`
}}
/
>
}
return
(
<
WangEditor
key
=
{
'cmsContent'
}
...
...
@@ -39,19 +36,25 @@ function Index({ onChange, value, otherProps, dataColumn, disabled, json, uuid }
}
export
default
forwardRef
((
props
,
_ref
)
=>
{
let
otherProps
=
{};
// console.log(props);
if
(
!
props
.
uuid
){
return
<
div
><
/div>
;
}
const
otherProps
=
useMemo
(()
=>
{
let
other
=
{};
if
(
props
.
json
?.
otherProps
)
{
otherProps
=
props
.
json
?.
otherProps
;
let
a
=
props
.
json
?.
otherProps
;
try
{
otherProps
=
new
Function
(
otherProps
)();
other
=
new
Function
(
a
)();
// console.log(this.otherProps);
}
catch
(
e
)
{
other
=
{};
}
}
return
other
;
},
[
props
.
json
?.
otherProps
]);
return
<
Index
{...
props
}
otherProps
=
{
otherProps
}
/>
;
});
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论