Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
7f411293
提交
7f411293
authored
8月 12, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
28803 评奖评优管理/优秀毕业生/优秀毕业生审核,点击详情时--审核界面显示两行提示等待数据(100661,bdk@2022*$)
上级
9c13cead
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
23 行增加
和
24 行删除
+23
-24
index.js
FormInsertDiy/AffairPage/AuditPage/index.js
+3
-1
ActiveMenuComponent.js
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
+12
-16
DetailSplit.js
one_stop_public/DetailForAudit/DetailSplit.js
+7
-6
ZdyTable.jsx
one_stop_public/Table/ZdyTable.jsx
+1
-1
没有找到文件。
FormInsertDiy/AffairPage/AuditPage/index.js
浏览文件 @
7f411293
...
@@ -87,7 +87,8 @@ class Index extends React.Component {
...
@@ -87,7 +87,8 @@ class Index extends React.Component {
columns
.
push
({
columns
.
push
({
dataIndex
:
'operation'
,
dataIndex
:
'operation'
,
title
:
'操作'
,
title
:
'操作'
,
fixed
:
columns
.
length
>
12
?
'right'
:
false
,
// fixed: columns.length > 12 ? 'right' : false,
fixed
:
'right'
,
render
:
(
text
,
record
)
=>
{
render
:
(
text
,
record
)
=>
{
return
(
return
(
<
Link
<
Link
...
@@ -119,6 +120,7 @@ class Index extends React.Component {
...
@@ -119,6 +120,7 @@ class Index extends React.Component {
if
(
!
response
||
!
Array
.
isArray
(
response
))
{
if
(
!
response
||
!
Array
.
isArray
(
response
))
{
response
=
[];
response
=
[];
}
}
// console.log('columns', response);
for
(
let
item
of
response
)
{
for
(
let
item
of
response
)
{
if
(
item
.
dataIndex
===
'taskName'
&&
!
item
.
width
)
{
if
(
item
.
dataIndex
===
'taskName'
&&
!
item
.
width
)
{
item
.
width
=
200
;
item
.
width
=
200
;
...
...
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
浏览文件 @
7f411293
import
React
,
{
useEffect
,
useState
,
createContext
}
from
'react'
;
import
React
,
{
useEffect
,
useState
,
createContext
,
useRef
}
from
'react'
;
import
CheckRecord
from
'@/webPublic/FormInsertDiy/ExportComponent/CheckRecord'
;
// 查询类
import
CheckRecord
from
'@/webPublic/FormInsertDiy/ExportComponent/CheckRecord'
;
// 查询类
import
Apply
from
'@/webPublic/FormInsertDiy/AffairPage/ApplyPage'
;
// 申请
import
Apply
from
'@/webPublic/FormInsertDiy/AffairPage/ApplyPage'
;
// 申请
import
BatchAudit
from
'@/webPublic/FormInsertDiy/AffairPage/AuditPage/BatchAudit'
;
// 批量审批
import
BatchAudit
from
'@/webPublic/FormInsertDiy/AffairPage/AuditPage/BatchAudit'
;
// 批量审批
...
@@ -11,7 +11,6 @@ export const CreateC = createContext({
...
@@ -11,7 +11,6 @@ export const CreateC = createContext({
routerConfig
:
{},
routerConfig
:
{},
});
});
window
.
iframeParentComponent
=
{
window
.
iframeParentComponent
=
{
Modal
,
Modal
,
message
,
message
,
...
@@ -19,25 +18,23 @@ window.iframeParentComponent = {
...
@@ -19,25 +18,23 @@ window.iframeParentComponent = {
Popconfirm
,
Popconfirm
,
};
};
function
ActiveMenuComponent
({
function
ActiveMenuComponent
({
routerConfig
,
...
otherProps
})
{
routerConfig
,
const
{
component
=
''
,
appId
}
=
routerConfig
;
...
otherProps
const
refType
=
useRef
();
})
{
const
{
component
=
''
,
appId
}
=
routerConfig
;
const
{
location
}
=
otherProps
;
const
{
location
}
=
otherProps
;
const
record
=
location
?.
state
?.
record
;
const
record
=
location
?.
state
?.
record
;
const
[
show
,
setShow
]
=
useState
(
false
);
const
[
show
,
setShow
]
=
useState
(
false
);
useEffect
(
useEffect
(
()
=>
{
()
=>
{
if
(
appId
||
record
.
id
)
{
if
((
appId
||
record
.
id
)
&&
refType
.
current
?.
component
===
component
)
{
// 当同一个组件渲染时 切换show 保证重新调接口并渲染页面
setShow
(
false
);
setShow
(
false
);
setTimeout
(()
=>
{
setTimeout
(()
=>
{
setShow
(
true
);
setShow
(
true
);
},
100
);
},
100
);
}
else
{
setShow
(
true
);
}
}
refType
.
current
=
routerConfig
;
},
},
[
appId
,
record
],
[
appId
,
record
],
);
);
...
@@ -49,7 +46,7 @@ function ActiveMenuComponent({
...
@@ -49,7 +46,7 @@ function ActiveMenuComponent({
switch
(
component
)
{
switch
(
component
)
{
case
'CheckRecord'
:
// 查询类应用
case
'CheckRecord'
:
// 查询类应用
Res
=
<
CheckRecord
workId
=
{
appId
}
/>
;
Res
=
<
CheckRecord
workId
=
{
appId
}
/>
;
break
;
break
;
case
'Apply'
:
// 申请类
case
'Apply'
:
// 申请类
Res
=
<
Apply
workId
=
{
appId
}
{...
otherProps
}
/>
;
Res
=
<
Apply
workId
=
{
appId
}
{...
otherProps
}
/>
;
...
@@ -58,9 +55,7 @@ function ActiveMenuComponent({
...
@@ -58,9 +55,7 @@ function ActiveMenuComponent({
Res
=
<
Audit
workId
=
{
appId
}
{...
otherProps
}
/>
;
Res
=
<
Audit
workId
=
{
appId
}
{...
otherProps
}
/>
;
break
;
break
;
case
'BatchAudit'
:
// 批量审批
case
'BatchAudit'
:
// 批量审批
Res
=
<
BatchAudit
workId
=
{
appId
}
Res
=
<
BatchAudit
workId
=
{
appId
}
{...
otherProps
}
/>
;
{...
otherProps
}
/>
;
break
;
break
;
case
'Detail'
:
// 详情
case
'Detail'
:
// 详情
Res
=
<
Detail
{...
otherProps
}
/>
;
Res
=
<
Detail
{...
otherProps
}
/>
;
...
@@ -69,7 +64,8 @@ function ActiveMenuComponent({
...
@@ -69,7 +64,8 @@ function ActiveMenuComponent({
break
;
break
;
}
}
return
(
return
(
<
CreateC
.
Provider
value
=
{{
<
CreateC
.
Provider
value
=
{{
routerConfig
,
routerConfig
,
}}
>
}}
>
{
Res
}
{
Res
}
...
...
one_stop_public/DetailForAudit/DetailSplit.js
浏览文件 @
7f411293
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* 2019年9月19日
* 2019年9月19日
* 查看详情页面
* 查看详情页面
*/
*/
import
React
,
{
Component
,
Fragment
,
useEffect
,
useState
}
from
'react'
;
import
React
,
{
Component
,
Fragment
,
useEffect
,
useState
,
useRef
}
from
'react'
;
import
{
import
{
Row
,
Row
,
Col
,
Col
,
...
@@ -973,6 +973,7 @@ class DetailSplit extends Component {
...
@@ -973,6 +973,7 @@ class DetailSplit extends Component {
function
Index
(
props
)
{
function
Index
(
props
)
{
const
{
dispatch
,
history
}
=
props
;
const
{
dispatch
,
history
}
=
props
;
const
[
prepare
,
setPrepare
]
=
useState
(
false
);
const
[
prepare
,
setPrepare
]
=
useState
(
false
);
const
DetailSplitFormNew
=
useRef
();
useEffect
(()
=>
{
useEffect
(()
=>
{
const
id
=
history
.
location
.
state
&&
history
.
location
.
state
.
id
;
const
id
=
history
.
location
.
state
&&
history
.
location
.
state
.
id
;
const
code
=
history
.
location
.
state
&&
history
.
location
.
state
.
code
;
const
code
=
history
.
location
.
state
&&
history
.
location
.
state
.
code
;
...
@@ -996,7 +997,11 @@ function Index(props) {
...
@@ -996,7 +997,11 @@ function Index(props) {
lite
:
true
,
lite
:
true
,
},
},
callback
:
(
val
)
=>
{
callback
:
(
val
)
=>
{
message
.
destroy
();
if
(
val
)
{
if
(
val
)
{
DetailSplitFormNew
.
current
=
Form
.
create
(
window
.
zdyTableTemplateWillMountProps
?.
formCreateOptions
||
undefined
,
)(
DetailSplit
);
setPrepare
(
val
);
setPrepare
(
val
);
}
}
},
},
...
@@ -1006,11 +1011,7 @@ function Index(props) {
...
@@ -1006,11 +1011,7 @@ function Index(props) {
if
(
!
prepare
)
{
if
(
!
prepare
)
{
return
<
Spin
size
=
"large"
spinning
=
{
true
}
/>
;
return
<
Spin
size
=
"large"
spinning
=
{
true
}
/>
;
}
}
return
<
DetailSplitFormNew
.
current
{...
props
}
formPrepareData
=
{
prepare
}
/>
;
const
DetailSplitFormNew
=
Form
.
create
(
window
.
zdyTableTemplateWillMountProps
?.
formCreateOptions
||
undefined
,
)(
DetailSplit
);
return
<
DetailSplitFormNew
{...
props
}
formPrepareData
=
{
prepare
}
/>
;
}
}
export
default
connect
(()
=>
{
export
default
connect
(()
=>
{
...
...
one_stop_public/Table/ZdyTable.jsx
浏览文件 @
7f411293
...
@@ -19,7 +19,7 @@ import getActiveJson from '@/webPublic/one_stop_public/Table/getActiveJson';
...
@@ -19,7 +19,7 @@ import getActiveJson from '@/webPublic/one_stop_public/Table/getActiveJson';
export
default
class
ZdyTable
extends
Component
{
export
default
class
ZdyTable
extends
Component
{
constructor
(
props
)
{
constructor
(
props
)
{
super
(
props
);
super
(
props
);
console
.
log
(
props
);
//
console.log(props);
this
.
state
=
{
this
.
state
=
{
objRealTime
:
{},
objRealTime
:
{},
isChange
:
false
,
isChange
:
false
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论