Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
3ca2ad82
提交
3ca2ad82
authored
6月 15, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
北电科删除部分字段
上级
018d04be
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
281 行增加
和
239 行删除
+281
-239
index.js
FormInsertDiy/AffairPage/ApplyPage/index.js
+281
-239
没有找到文件。
FormInsertDiy/AffairPage/ApplyPage/index.js
浏览文件 @
3ca2ad82
...
...
@@ -6,7 +6,7 @@
* */
import
{
message
}
from
'antd'
;
import
React
from
'react'
;
import
React
,
{
useEffect
,
useState
,
}
from
'react'
;
import
*
as
service
from
'../publicApiService'
;
import
*
as
destructionFunc
from
'../destruction'
;
import
{
Link
}
from
'dva/router'
;
...
...
@@ -23,65 +23,90 @@ import ApplyForZyd from '@/webPublic/one_stop_public/ForZydApply/index';
export
default
function
index
(
props
)
{
const
{
state
=
{}
}
=
props
.
location
;
if
(
state
.
justApply
)
{
return
<
JustApply
{...
props
}
/>
;
}
else
{
return
<
AffairPage
{...
props
}
/>
;
}
const
{
state
=
{}
}
=
props
.
location
;
const
[
show
,
setShow
]
=
useState
(
false
);
useEffect
(()
=>
{
setShow
(
false
);
setTimeout
(()
=>
{
setShow
(
true
);
},
100
);
},
[
props
.
location
.
pathname
]);
if
(
!
show
){
return
null
;
}
if
(
state
.
justApply
)
{
return
<
JustApply
{...
props
}
/>
;
}
else
{
return
<
AffairPage
{...
props
}
/>
;
}
}
class
AffairPage
extends
React
.
Component
{
constructor
(
props
)
{
super
(
props
);
let
pathname
=
this
.
props
.
location
.
pathname
;
const
{
dataBaseId
,
workId
}
=
this
.
props
;
this
.
state
=
{
showIframe
:
false
,
columns
:
[],
pathname
,
workId
:
workId
||
''
,
searchCondition
:
[],
dataBaseId
:
''
,
addFields
:
[],
// 新增时填写的字段。
renderIframe
:
false
,
allConfigSetInfo
:
null
,
};
}
constructor
(
props
)
{
super
(
props
);
let
pathname
=
this
.
props
.
location
.
pathname
;
const
{
dataBaseId
,
workId
}
=
this
.
props
;
this
.
state
=
{
showIframe
:
false
,
columns
:
[],
pathname
,
workId
:
workId
||
''
,
searchCondition
:
[],
dataBaseId
:
''
,
addFields
:
[],
// 新增时填写的字段。
renderIframe
:
false
,
allConfigSetInfo
:
null
,
};
}
getFormDetail
=
(
workId
)
=>
{
service
.
getFormDetail
(
workId
).
then
((
response
)
=>
{
if
(
typeof
response
.
unifiedServicePatternModel
===
'undefined'
)
{
return
false
;
}
destructionFunc
.
destructionGetDetail
(
response
).
then
((
x
)
=>
{
const
{
addFields
,
tableInfo
,
allConfigSetInfo
}
=
x
;
this
.
setState
(
{
addFields
,
tableInfo
,
allConfigSetInfo
,
},
()
=>
{
this
.
giveDetailColumns
();
},
);
});
});
};
getFormDetail
=
(
workId
)
=>
{
service
.
getFormDetail
(
workId
)
.
then
((
response
)
=>
{
if
(
typeof
response
.
unifiedServicePatternModel
===
'undefined'
)
{
return
false
;
}
destructionFunc
.
destructionGetDetail
(
response
)
.
then
((
x
)
=>
{
const
{
addFields
,
tableInfo
,
allConfigSetInfo
}
=
x
;
this
.
setState
(
{
addFields
,
tableInfo
,
allConfigSetInfo
,
},
()
=>
{
this
.
giveDetailColumns
();
},
);
});
});
};
giveDetailColumns
=
()
=>
{
const
{
columns
,
workId
,
dataBaseId
,
addFields
}
=
this
.
state
;
const
process_status
=
columns
.
find
((
x
)
=>
{
return
x
.
name
===
'process_status'
;
});
if
(
process_status
&&
process_status
.
dataIndex
)
{
process_status
.
render
=
(
text
,
record
)
=>
{
return
record
.
statusName
||
record
[
process_status
.
dataIndex
];
};
}
let
findCz
=
columns
.
find
((
g
)
=>
g
.
dataIndex
===
'operation'
);
if
(
!
findCz
){
giveDetailColumns
=
()
=>
{
const
{
columns
,
workId
,
dataBaseId
,
addFields
}
=
this
.
state
;
const
process_status
=
columns
.
find
((
x
)
=>
{
return
x
.
name
===
'process_status'
;
});
if
(
process_status
&&
process_status
.
dataIndex
)
{
process_status
.
render
=
(
text
,
record
)
=>
{
return
record
.
statusName
||
record
[
process_status
.
dataIndex
];
};
}
let
findCz
=
columns
.
find
((
g
)
=>
g
.
dataIndex
===
'operation'
);
if
(
!
findCz
)
{
columns
.
push
({
dataIndex
:
'operation'
,
title
:
'操作'
,
...
...
@@ -107,97 +132,113 @@ class AffairPage extends React.Component {
}
this
.
setState
({
columns
,
});
};
handleButtonSet
=
()
=>
{
const
{
canApply
,
otherButtons
=
[]
}
=
this
.
props
;
const
{
allConfigSetInfo
}
=
this
.
state
;
if
(
!
allConfigSetInfo
)
{
return
[];
}
const
isCloseStart
=
allConfigSetInfo
?.
isCloseStart
;
this
.
setState
({
columns
,
});
};
handleButtonSet
=
()
=>
{
const
{
canApply
,
otherButtons
=
[]
}
=
this
.
props
;
const
{
allConfigSetInfo
}
=
this
.
state
;
if
(
!
allConfigSetInfo
)
{
return
[];
}
const
isCloseStart
=
allConfigSetInfo
?.
isCloseStart
;
if
(
canApply
===
false
||
isCloseStart
)
{
return
[...
otherButtons
];
}
if
(
canApply
===
false
||
isCloseStart
)
{
return
[...
otherButtons
];
}
return
[
{
type
:
'add'
,
name
:
'申请'
,
component
:
'Normal'
,
handleClick
:
()
=>
{
this
.
setState
(
{
showIframe
:
true
,
return
[
{
type
:
'add'
,
name
:
'申请'
,
component
:
'Normal'
,
handleClick
:
()
=>
{
this
.
setState
(
{
showIframe
:
true
,
renderIframe
:
true
,
},
()
=>
{},
);
},
},
...
otherButtons
,
];
};
()
=>
{
},
);
},
},
...
otherButtons
,
];
};
handleSearchSet
=
()
=>
{
const
{
columns
,
searchCondition
}
=
this
.
state
;
const
{
onResponse
}
=
this
.
props
;
const
pageSearch
=
{
search
:
{
field
:
{},
getPageService
:
getApplyPage
,
responseCallBack
:
(
response
)
=>
{
if
(
onResponse
)
{
onResponse
(
response
);
}
return
response
;
},
condition
:
searchCondition
,
nameSpan
:
{
big
:
8
,
small
:
9
},
fileSpan
:
{
big
:
4
,
small
:
4
},
},
tableRowKey
:
'id'
,
columns
,
};
return
pageSearch
;
};
handleSearchSet
=
()
=>
{
const
{
columns
,
searchCondition
}
=
this
.
state
;
const
{
onResponse
}
=
this
.
props
;
const
pageSearch
=
{
search
:
{
field
:
{},
getPageService
:
getApplyPage
,
responseCallBack
:
(
response
)
=>
{
if
(
onResponse
)
{
onResponse
(
response
);
}
return
response
;
},
condition
:
searchCondition
,
nameSpan
:
{
big
:
8
,
small
:
9
},
fileSpan
:
{
big
:
4
,
small
:
4
},
},
tableRowKey
:
'id'
,
columns
,
};
return
pageSearch
;
};
getColumns
=
()
=>
{
const
{
workId
}
=
this
.
state
;
service
.
getColumns
(
workId
).
then
((
response
)
=>
{
if
(
response
&&
Array
.
isArray
(
response
)){
response
=
response
.
filter
((
x
)
=>
{
return
x
.
title
!==
'流程进度'
;
});
}
getColumns
=
()
=>
{
const
{
workId
}
=
this
.
state
;
service
.
getColumns
(
workId
)
.
then
((
response
)
=>
{
if
(
response
&&
Array
.
isArray
(
response
))
{
response
=
response
.
filter
((
x
)
=>
{
return
x
.
title
!==
'流程进度'
;
});
}
if
(
response
)
{
this
.
setState
(
{
columns
:
response
,
},
()
=>
{
this
.
getFormDetail
(
workId
);
},
);
}
});
};
if
(
response
)
{
this
.
setState
(
{
columns
:
response
,
},
()
=>
{
this
.
getFormDetail
(
workId
);
},
);
}
});
};
initData
=
()
=>
{
initData
=
()
=>
{
if
(
!
getToken
())
{
message
.
error
(
'您的数据未同步,请联系管理员!'
);
return
false
;
}
const
{
pathname
}
=
this
.
state
;
const
{
dataBaseId
,
workId
,
iframeHeight
}
=
this
.
props
;
const
{
dataBaseId
,
workId
,
iframeHeight
}
=
this
.
props
;
if
(
dataBaseId
||
workId
)
{
this
.
setState
(
{
...
...
@@ -209,17 +250,18 @@ class AffairPage extends React.Component {
},
);
}
else
{
service
.
getId
(
pathname
).
then
((
x
)
=>
{
this
.
setState
(
{
workId
:
x
.
workId
,
dataBaseId
:
x
.
dataBaseId
,
},
()
=>
{
this
.
getColumns
();
},
);
});
service
.
getId
(
pathname
)
.
then
((
x
)
=>
{
this
.
setState
(
{
workId
:
x
.
workId
,
dataBaseId
:
x
.
dataBaseId
,
},
()
=>
{
this
.
getColumns
();
},
);
});
}
window
.
addEventListener
(
...
...
@@ -241,102 +283,102 @@ class AffairPage extends React.Component {
);
return
true
;
}
}
;
componentDidMount
()
{
this
.
initData
();
}
componentDidMount
()
{
this
.
initData
();
}
componentDidUpdate
(
prevProps
,
prevState
)
{
if
(
prevProps
.
workId
!==
this
.
props
.
workId
)
{
// console.log('123123', prevProps, this.props);
this
.
initData
();
if
(
prevProps
.
workId
!==
this
.
props
.
workId
)
{
// console.log('123123', prevProps, this.props);
this
.
initData
();
}
}
returnList
=
(
needSearchList
=
false
)
=>
{
console
.
log
(
needSearchList
);
const
{
workId
}
=
this
.
state
;
this
.
setState
(
{
renderIframe
:
false
,
},
()
=>
{
if
(
needSearchList
)
{
this
.
ListComponent
.
getPage
();
setTimeout
(()
=>
{
this
.
getFormDetail
(
workId
);
},
2000
);
}
this
.
setState
({
showIframe
:
false
,
});
},
);
};
console
.
log
(
needSearchList
);
const
{
workId
}
=
this
.
state
;
this
.
setState
(
{
renderIframe
:
false
,
},
()
=>
{
if
(
needSearchList
)
{
this
.
ListComponent
.
getPage
();
setTimeout
(()
=>
{
this
.
getFormDetail
(
workId
);
},
2000
);
}
this
.
setState
({
showIframe
:
false
,
});
},
);
};
render
()
{
const
{
iframeUrlDiy
}
=
this
.
props
;
const
{
workId
,
dataBaseId
,
addFields
,
showIframe
,
renderIframe
,
allConfigSetInfo
,
}
=
this
.
state
;
if
(
!
workId
||
!
allConfigSetInfo
)
{
return
null
;
}
// console.log(allConfigSetInfo.isCloseStart);
// const url = config.onestopPC.split('/#/');
// let iframeUrl = iframeUrlDiy || `${url[0]}/#/IFrameForApply?id=${workId}&token=${getToken()}`;
let
buttons
=
this
.
handleButtonSet
({});
let
listConfig
=
pageSetting
.
listConfig
;
if
(
!
buttons
.
length
)
{
listConfig
=
deepCopy
(
listConfig
);
listConfig
.
buttonArea
=
false
;
}
return
(
<
PageHeaderWrapper
title
=
""
>
<
div
style
=
{{
display
:
showIframe
?
'none'
:
'block'
,
}}
>
<
List
listConfig
=
{
listConfig
}
pageButton
=
{
buttons
}
pageSearch
=
{
this
.
handleSearchSet
({})}
addFields
=
{
addFields
}
ref
=
{(
ListComponent
)
=>
(
this
.
ListComponent
=
ListComponent
)}
workId
=
{
workId
}
dataBaseId
=
{
dataBaseId
}
/
>
<
/div
>
<
div
style
=
{{
visibility
:
showIframe
?
'visible'
:
'hidden'
,
render
()
{
const
{
iframeUrlDiy
}
=
this
.
props
;
const
{
workId
,
dataBaseId
,
addFields
,
showIframe
,
renderIframe
,
allConfigSetInfo
,
}
=
this
.
state
;
if
(
!
workId
||
!
allConfigSetInfo
)
{
return
null
;
}
// console.log(allConfigSetInfo.isCloseStart);
// const url = config.onestopPC.split('/#/');
// let iframeUrl = iframeUrlDiy || `${url[0]}/#/IFrameForApply?id=${workId}&token=${getToken()}`;
let
buttons
=
this
.
handleButtonSet
({});
let
listConfig
=
pageSetting
.
listConfig
;
if
(
!
buttons
.
length
)
{
listConfig
=
deepCopy
(
listConfig
);
listConfig
.
buttonArea
=
false
;
}
return
(
<
PageHeaderWrapper
title
=
""
>
<
div
style
=
{{
display
:
showIframe
?
'none'
:
'block'
,
}}
>
<
List
listConfig
=
{
listConfig
}
pageButton
=
{
buttons
}
pageSearch
=
{
this
.
handleSearchSet
({})}
addFields
=
{
addFields
}
ref
=
{(
ListComponent
)
=>
(
this
.
ListComponent
=
ListComponent
)}
workId
=
{
workId
}
dataBaseId
=
{
dataBaseId
}
/
>
<
/div
>
<
div
style
=
{{
visibility
:
showIframe
?
'visible'
:
'hidden'
,
height
:
showIframe
?
'auto'
:
'0px'
,
width
:
'100%'
,
backgroundColor
:
'#fff'
,
paddingLeft
:
'24px'
,
}}
>
<
Shell
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
,
display
:
showIframe
?
'block'
:
'none'
,
}}
>
<
ButtonDiy
name
=
"返回"
className
=
"defaultBlue"
handleClick
=
{
this
.
returnList
}
icon
=
"arrow-left"
/>
<
/div
>
<
/Shell
>
{
renderIframe
?
(
width
:
'100%'
,
backgroundColor
:
'#fff'
,
paddingLeft
:
'24px'
,
}}
>
<
Shell
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
,
display
:
showIframe
?
'block'
:
'none'
,
}}
>
<
ButtonDiy
name
=
"返回"
className
=
"defaultBlue"
handleClick
=
{
this
.
returnList
}
icon
=
"arrow-left"
/>
<
/div
>
<
/Shell
>
{
renderIframe
?
(
iframeUrlDiy
?
<
iframe
src
=
{
iframeUrlDiy
}
...
...
@@ -355,14 +397,14 @@ class AffairPage extends React.Component {
backgroundColor
:
'#fff'
,
}}
/>
:
<
ApplyForZyd
{...
this
.
props
}
returnList
=
{
this
.
returnList
}
id
=
{
workId
}
/
>
)
:
null
}
<
/div
>
<
/PageHeaderWrapper
>
);
}
<
ApplyForZyd
{...
this
.
props
}
returnList
=
{
this
.
returnList
}
id
=
{
workId
}
/
>
)
:
null
}
<
/div
>
<
/PageHeaderWrapper
>
);
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论