Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
10a10afa
提交
10a10afa
authored
9月 20, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
29126 增加违纪历史记录已经
上级
e99b9dd0
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
228 行增加
和
226 行删除
+228
-226
Detail.js
FormInsertDiy/AffairPage/Detail.js
+152
-170
IframeForRenderForm.js
FormInsertDiy/RenderForm/IframeForRenderForm.js
+1
-17
DetailSplit.js
one_stop_public/DetailForAudit/DetailSplit.js
+69
-39
styles.less
one_stop_public/DetailForAudit/styles.less
+6
-0
没有找到文件。
FormInsertDiy/AffairPage/Detail.js
浏览文件 @
10a10afa
...
...
@@ -8,182 +8,164 @@ import config from '@/config/config';
import
{
message
,
Modal
,
notification
,
Popconfirm
}
from
'antd'
;
import
DetailOneStop
from
'@/webPublic/one_stop_public/DetailForAudit/IframeForDetail'
;
import
{
getIsBei_Dian
,
getIsGui_Jian
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
{
getUrlInfo
}
from
'@/webPublic/one_stop_public/DetailForAudit/utils'
;
window
.
iframeParentComponent
=
{
Modal
,
message
,
notification
,
Popconfirm
,
};
const
getUrlInfo
=
(
param
)
=>
{
let
url
=
window
.
document
.
location
.
href
.
toString
();
let
u
=
url
.
split
(
'?'
);
if
(
typeof
u
[
1
]
==
'string'
)
{
u
=
u
[
1
].
split
(
'&'
);
let
get
=
{};
for
(
let
i
in
u
)
{
let
j
=
u
[
i
].
split
(
'='
);
get
[
j
[
0
]]
=
decodeURIComponent
(
j
[
1
]);
}
return
get
;
}
else
{
return
{};
}
Modal
,
message
,
notification
,
Popconfirm
,
};
export
default
class
Detail
extends
Component
{
constructor
(
props
)
{
super
(
props
);
const
{
state
}
=
this
.
props
.
location
;
let
id
=
''
;
let
code
=
''
;
if
(
state
&&
state
.
record
)
{
if
(
state
.
record
.
id
)
{
id
=
state
.
record
.
id
;
}
if
(
state
.
record
.
code
)
{
code
=
state
.
record
.
code
;
}
}
if
(
!
id
)
{
id
=
getUrlInfo
()?.
id
;
}
this
.
state
=
{
id
,
code
,
showAll
:
props
.
from
!==
'onestopApp2.0'
};
}
componentDidMount
()
{
window
.
addEventListener
(
'message'
,
(
event
)
=>
{
if
(
event
.
data
&&
event
.
data
.
indexOf
&&
event
.
data
.
indexOf
(
'iframeDetailHeight'
)
>
-
1
)
{
const
height
=
Number
(
event
.
data
.
split
(
'-'
)[
1
]);
const
dom
=
document
.
getElementById
(
'detailIframeId'
);
if
(
dom
)
{
document
.
getElementById
(
'detailIframeId'
).
height
=
height
+
50
;
}
}
},
false
,
);
}
constructor
(
props
)
{
super
(
props
);
const
{
state
}
=
this
.
props
.
location
;
let
id
=
''
;
let
code
=
''
;
if
(
state
&&
state
.
record
)
{
if
(
state
.
record
.
id
)
{
id
=
state
.
record
.
id
;
}
if
(
state
.
record
.
code
)
{
code
=
state
.
record
.
code
;
}
}
if
(
!
id
)
{
id
=
getUrlInfo
().
id
;
}
if
(
!
code
)
{
code
=
getUrlInfo
().
code
;
}
this
.
state
=
{
id
,
code
,
showAll
:
props
.
from
!==
'onestopApp2.0'
&&
getUrlInfo
().
showAll
!==
'false'
,
};
}
showAll
=
()
=>
{
this
.
setState
({
showAll
:
true
,
});
};
componentDidMount
()
{
window
.
addEventListener
(
'message'
,
(
event
)
=>
{
if
(
event
.
data
&&
event
.
data
.
indexOf
&&
event
.
data
.
indexOf
(
'iframeDetailHeight'
)
>
-
1
)
{
const
height
=
Number
(
event
.
data
.
split
(
'-'
)[
1
]);
const
dom
=
document
.
getElementById
(
'detailIframeId'
);
if
(
dom
)
{
document
.
getElementById
(
'detailIframeId'
).
height
=
height
+
50
;
}
}
},
false
,
);
}
render
()
{
const
{
from
}
=
this
.
props
;
const
{
id
,
showAll
,
code
,
}
=
this
.
state
;
const
url
=
config
.
onestopPC
.
split
(
'/#/'
);
let
showPrint
=
this
.
props
.
location
?.
state
?.
showPrint
;
if
(
getIsGui_Jian
()
&&
!
showPrint
)
{
// 27590 寝室调整管理-寝室调整申请,详情的打印预览按钮不见了210301080119-122617
// 贵建把打印预览显示出来
showPrint
=
true
;
}
let
iframeUrl
=
`
${
url
[
0
]}
/#/IframeForDetail?id=
${
id
}
&token=
${
getToken
()}
`
;
if
(
showPrint
)
{
iframeUrl
=
iframeUrl
+
'&showPrint=true'
;
}
if
(
from
===
'onestopApp2.0'
)
{
iframeUrl
=
config
.
gateWayPort
+
`/portal/#/showAuditIframe?id=
${
id
}
&code=
${
code
}
&hasSingle=false&token=
${
getToken
()}
&isPrint=false`
;
}
// iframeUrl = `http://localhost:8000/onestop/IframeForDetail?id=${id}&token=${getToken()}`;
// console.log(showPrint);
return
(
<
PageHeaderWrapper
title
=
""
>
<
Shell
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
,
}}
>
{
showAll
?
(
<
ButtonDiy
name
=
"返回"
className
=
"defaultBlue"
handleClick
=
{()
=>
{
router
.
goBack
();
}}
icon
=
"arrow-left"
/>
)
:
null
}
<
ButtonDiy
name
=
{
'全屏查看'
}
className
=
"defaultBlue"
handleClick
=
{()
=>
{
document
.
getElementById
(
'detailIframeId'
)
.
requestFullscreen
();
}}
/
>
<
/div
>
<
/Shell
>
<
Shell
>
{
from
===
'onestopApp2.0'
?
<
iframe
src
=
{
iframeUrl
}
frameBorder
=
{
0
}
id
=
"detailIframeId"
name
=
"applyIframe"
marginWidth
=
"0"
marginHeight
=
"0"
onLoad
=
{
this
.
showAll
}
allowtransparency
=
"yes"
seamless
scrolling
=
{
'no'
}
style
=
{{
width
:
'100%'
,
overflowY
:
'hidden'
,
minHeight
:
'80vh'
,
}}
/>
:
<
div
id
=
{
'detailIframeId'
}
>
<
DetailOneStop
id
=
{
id
}
{...
this
.
props
}
code
=
{
code
}
showPrint
=
{
showPrint
||
false
}
/
>
<
/div
>
}
showAll
=
()
=>
{
this
.
setState
({
showAll
:
true
,
});
};
<
/Shell
>
<
Shell
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
,
}}
>
{
showAll
?
(
<
ButtonDiy
name
=
"返回"
className
=
"defaultBlue"
handleClick
=
{()
=>
{
router
.
goBack
();
}}
icon
=
"arrow-left"
/>
)
:
null
}
<
ButtonDiy
name
=
{
'全屏查看'
}
type
=
{
'primary'
}
// className='primaryBlue'
handleClick
=
{()
=>
{
document
.
getElementById
(
'detailIframeId'
)
.
requestFullscreen
();
}}
/
>
<
/div
>
<
/Shell
>
<
/PageHeaderWrapper
>
);
}
render
()
{
const
{
from
}
=
this
.
props
;
const
{
id
,
showAll
,
code
}
=
this
.
state
;
const
url
=
config
.
onestopPC
.
split
(
'/#/'
);
let
showPrint
=
this
.
props
.
location
?.
state
?.
showPrint
;
if
(
getIsGui_Jian
()
&&
!
showPrint
)
{
// 27590 寝室调整管理-寝室调整申请,详情的打印预览按钮不见了210301080119-122617
// 贵建把打印预览显示出来
showPrint
=
true
;
}
let
iframeUrl
=
`
${
url
[
0
]}
/#/IframeForDetail?id=
${
id
}
&token=
${
getToken
()}
`
;
if
(
showPrint
)
{
iframeUrl
=
iframeUrl
+
'&showPrint=true'
;
}
if
(
from
===
'onestopApp2.0'
)
{
iframeUrl
=
config
.
gateWayPort
+
`/portal/#/showAuditIframe?id=
${
id
}
&code=
${
code
}
&hasSingle=false&token=
${
getToken
()}
&isPrint=false`
;
}
// iframeUrl = `http://localhost:8000/onestop/IframeForDetail?id=${id}&token=${getToken()}`;
// console.log(showPrint);
return
(
<
PageHeaderWrapper
title
=
""
>
<
Shell
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
,
}}
>
{
showAll
?
(
<
ButtonDiy
name
=
"返回"
className
=
"defaultBlue"
handleClick
=
{()
=>
{
router
.
goBack
();
}}
icon
=
"arrow-left"
/>
)
:
null
}
<
ButtonDiy
name
=
{
'全屏查看'
}
className
=
"defaultBlue"
handleClick
=
{()
=>
{
document
.
getElementById
(
'detailIframeId'
).
requestFullscreen
();
}}
/
>
<
/div
>
<
/Shell
>
<
Shell
>
{
from
===
'onestopApp2.0'
?
(
<
iframe
src
=
{
iframeUrl
}
frameBorder
=
{
0
}
id
=
"detailIframeId"
name
=
"applyIframe"
marginWidth
=
"0"
marginHeight
=
"0"
onLoad
=
{
this
.
showAll
}
allowtransparency
=
"yes"
seamless
scrolling
=
{
'no'
}
style
=
{{
width
:
'100%'
,
overflowY
:
'hidden'
,
minHeight
:
'80vh'
,
}}
/
>
)
:
(
<
div
id
=
{
'detailIframeId'
}
>
<
DetailOneStop
id
=
{
id
}
{...
this
.
props
}
code
=
{
code
}
showPrint
=
{
showPrint
||
false
}
/
>
<
/div
>
)}
<
/Shell
>
<
Shell
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
,
}}
>
{
showAll
?
(
<
ButtonDiy
name
=
"返回"
className
=
"defaultBlue"
handleClick
=
{()
=>
{
router
.
goBack
();
}}
icon
=
"arrow-left"
/>
)
:
null
}
<
ButtonDiy
name
=
{
'全屏查看'
}
type
=
{
'primary'
}
// className='primaryBlue'
handleClick
=
{()
=>
{
document
.
getElementById
(
'detailIframeId'
).
requestFullscreen
();
}}
/
>
<
/div
>
<
/Shell
>
<
/PageHeaderWrapper
>
);
}
}
FormInsertDiy/RenderForm/IframeForRenderForm.js
浏览文件 @
10a10afa
...
...
@@ -2,24 +2,8 @@ import RenderForm from "@/webPublic/FormInsertDiy/RenderForm";
import
{
fetchTemplateById
}
from
'@/webPublic/Services'
;
import
{
useState
,
useEffect
}
from
"react"
;
import
{
Form
}
from
'antd'
;
import
{
getOneStopConfig
}
from
"@/baseComponent/utils"
;
import
{
setToken
}
from
'@/utils/authority'
;
const
getUrlInfo
=
(
param
)
=>
{
let
url
=
window
.
document
.
location
.
href
.
toString
();
let
u
=
url
.
split
(
"?"
);
if
(
typeof
(
u
[
1
])
==
"string"
)
{
u
=
u
[
1
].
split
(
"&"
);
let
get
=
{};
for
(
let
i
in
u
)
{
let
j
=
u
[
i
].
split
(
"="
);
get
[
j
[
0
]]
=
decodeURIComponent
(
j
[
1
]);
}
return
get
;
}
else
{
return
{};
}
};
import
{
getUrlInfo
}
from
'@/webPublic/one_stop_public/DetailForAudit/utils'
;
function
OtherCheckRecord
({
form
,
location
:
{
pathname
},
...
props
})
{
const
[
data
,
setData
]
=
useState
();
...
...
one_stop_public/DetailForAudit/DetailSplit.js
浏览文件 @
10a10afa
...
...
@@ -43,9 +43,9 @@ import {
checkNeedWriteAuditInfo
,
}
from
'./splitDetailSplit'
;
import
{
queryApiVersion
,
queryApiActionPath
,
queryFileUrl
,
queryApiVersion
,
queryApiActionPath
,
queryFileUrl
,
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
isJSON
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
HistoryFormList
from
'@/webPublic/one_stop_public/DetailForAudit/HistoryFormList'
;
...
...
@@ -385,6 +385,15 @@ class DetailSplit extends Component {
this
.
setState
({
paddingBottom
:
value
});
};
goOtherDetail
=
(
e
)
=>
{
const
code
=
e
.
currentTarget
.
dataset
.
codeId
;
console
.
log
(
this
.
props
);
let
url
=
window
.
location
.
href
.
split
(
'#'
)[
0
];
if
(
code
)
{
window
.
open
(
url
+
'#'
+
this
.
props
.
history
.
location
.
pathname
+
'?code='
+
code
+
'&showAll=false'
);
}
};
render
()
{
const
{
stepFlow
,
...
...
@@ -642,6 +651,22 @@ class DetailSplit extends Component {
)}
<
/div
>
)}
{
// 关联流程 禅道 29126
Array
.
isArray
(
data
.
pcodeData
)
&&
data
.
pcodeData
.
length
&&
(
<
div
className
=
{
styles
.
body_hea
}
>
<
h3
>
关联流程
<
/h3
>
<
div
className
=
{
styles
.
guanLianLiuCheng
}
>
{
data
.
pcodeData
.
filter
((
x
)
=>
!!
x
.
pcode
).
map
((
g
)
=>
{
return
(
<
a
key
=
{
g
.
code
}
onClick
=
{
this
.
goOtherDetail
}
data
-
code
-
id
=
{
g
.
pcode
}
>
{
g
.
appName
}
<
/a
>
);
})}
<
/div
>
<
/div
>
)}
<
div
className
=
{
styles
.
HistoryFormList
}
id
=
"card_table"
...
...
@@ -971,50 +996,55 @@ function Index(props) {
const
[
prepare
,
setPrepare
]
=
useState
(
false
);
const
DetailSplitFormNew
=
useRef
();
useEffect
(()
=>
{
getFormDetailData
();
getFormDetailData
();
},
[]);
const
getFormDetailData
=
()
=>
{
const
id
=
history
.
location
.
state
&&
history
.
location
.
state
.
id
;
const
code
=
history
.
location
.
state
&&
history
.
location
.
state
.
code
;
const
id
=
history
.
location
.
state
&&
history
.
location
.
state
.
id
;
const
code
=
history
.
location
.
state
&&
history
.
location
.
state
.
code
;
const
queryId
=
history
.
location
.
query
&&
history
.
location
.
query
.
id
;
const
taskId
=
history
.
location
.
state
&&
history
.
location
.
state
.
taskId
;
if
(
!
id
&&
!
code
)
{
if
(
queryId
)
{
}
else
{
openToast
(
'error'
,
'数据已过期'
,
'当前页面数据已过期,请重新进入'
);
return
;
}
}
message
.
info
(
'正在加载数据,请等待。'
);
dispatch
({
type
:
'affair/getIdFormDetail'
,
payload
:
{
id
:
queryId
?
queryId
:
id
,
// 审批表Id
code
:
code
||
null
,
// 表单值
handleUser
:
null
,
// 处理人
taskId
,
// 多任务流程会使用到,后续改为必须传入
lite
:
true
,
},
callback
:
(
val
)
=>
{
console
.
log
(
val
);
message
.
destroy
();
if
(
val
)
{
DetailSplitFormNew
.
current
=
Form
.
create
(
window
.
zdyTableTemplateWillMountProps
?.
formCreateOptions
||
undefined
,
)(
DetailSplit
);
setPrepare
(
val
);
}
},
});
}
const
queryCode
=
history
.
location
.
query
&&
history
.
location
.
query
.
code
;
const
taskId
=
history
.
location
.
state
&&
history
.
location
.
state
.
taskId
;
if
(
!
id
&&
!
code
)
{
if
(
queryId
)
{
}
else
{
openToast
(
'error'
,
'数据已过期'
,
'当前页面数据已过期,请重新进入'
);
return
;
}
}
message
.
info
(
'正在加载数据,请等待。'
);
dispatch
({
type
:
'affair/getIdFormDetail'
,
payload
:
{
id
:
queryId
||
id
||
undefined
,
// 审批表Id
code
:
queryCode
||
code
||
null
,
// 表单值
handleUser
:
null
,
// 处理人
taskId
,
// 多任务流程会使用到,后续改为必须传入
lite
:
true
,
},
callback
:
(
val
)
=>
{
console
.
log
(
val
);
message
.
destroy
();
if
(
val
)
{
DetailSplitFormNew
.
current
=
Form
.
create
(
window
.
zdyTableTemplateWillMountProps
?.
formCreateOptions
||
undefined
,
)(
DetailSplit
);
setPrepare
(
val
);
}
},
});
};
if
(
!
prepare
)
{
return
<
Spin
size
=
"large"
spinning
=
{
true
}
/>
;
}
return
<
DetailSplitFormNew
.
current
{...
props
}
formPrepareData
=
{
prepare
}
getFormDetailData
=
{
getFormDetailData
}
/>
;
return
(
<
DetailSplitFormNew
.
current
{...
props
}
formPrepareData
=
{
prepare
}
getFormDetailData
=
{
getFormDetailData
}
/
>
);
}
export
default
connect
(()
=>
{
...
...
one_stop_public/DetailForAudit/styles.less
浏览文件 @
10a10afa
...
...
@@ -204,3 +204,9 @@
align-items: center;
}
}
.guanLianLiuCheng{
display: grid;
grid-template-columns: repeat(auto-fill, 20%);
width: 100%;
justify-items: center;
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论