Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
e7dfe0b7
提交
e7dfe0b7
authored
10月 28, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
30305 所有申请应用--学生填错后,在审核前可以撤回一次
上级
1f112437
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
59 行增加
和
3 行删除
+59
-3
List.js
FormInsertDiy/AffairPage/ApplyPage/List.js
+1
-0
index.js
FormInsertDiy/AffairPage/ApplyPage/index.js
+57
-3
index.js
FormInsertDiy/AffairPage/ButtonListDom/index.js
+1
-0
没有找到文件。
FormInsertDiy/AffairPage/ApplyPage/List.js
浏览文件 @
e7dfe0b7
...
...
@@ -248,6 +248,7 @@ export default class List extends Component {
noSelectRow
:
!
listConfig
.
selectRows
,
onSelectRow
:
this
.
handleSelectRows
,
scroll
:
{
x
:
window
.
location
.
href
.
includes
(
'Portal/#/'
)
?
'max-content'
:
true
},
selectType
:
'radio'
,
};
// console.log(tableProps);
if
(
!
listConfig
.
paging
)
{
...
...
FormInsertDiy/AffairPage/ApplyPage/index.js
浏览文件 @
e7dfe0b7
...
...
@@ -5,7 +5,7 @@
*
* */
import
{
message
}
from
'antd'
;
import
{
message
,
Modal
}
from
'antd'
;
import
React
,
{
useEffect
,
useState
,
}
from
'react'
;
import
*
as
service
from
'../publicApiService'
;
import
*
as
destructionFunc
from
'../destruction'
;
...
...
@@ -18,8 +18,9 @@ import List from './List';
import
pageSetting
from
'./pageSetting'
;
import
ButtonDiy
from
'@/baseComponent/ButtonDiy'
;
import
Shell
from
'@/baseComponent/Shell'
;
import
{
deepCopy
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
{
deepCopy
,
getIsBei_Dian
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
ApplyForZyd
from
'@/webPublic/one_stop_public/ForZydApply/index'
;
import
{
uaaRequest
}
from
'@/webPublic/one_stop_public/utils/request'
;
export
default
function
index
(
props
)
{
...
...
@@ -32,7 +33,7 @@ export default function index(props) {
},
100
);
},
[
props
.
location
.
pathname
]);
if
(
!
show
)
{
if
(
!
show
)
{
return
null
;
}
if
(
state
.
justApply
)
{
...
...
@@ -151,6 +152,58 @@ class AffairPage extends React.Component {
if
(
canApply
===
false
||
isCloseStart
)
{
return
[...
otherButtons
];
}
let
reBack
=
[];
if
(
getIsBei_Dian
())
{
reBack
.
push
({
type
:
'chehui'
,
name
:
'撤回'
,
buttonType
:
'danger'
,
component
:
'Normal'
,
handleClick
:
(
selectRows
,
formValues
,
getPage
,
search
,
columns
)
=>
{
if
(
!
selectRows
||
!
selectRows
.
length
||
selectRows
.
length
!==
1
)
{
message
.
warning
(
'请选择一条需要撤回的数据!'
);
return
false
;
}
if
(
!
selectRows
[
0
].
isBack
)
{
message
.
warning
(
'流程已被审核,无法撤回'
);
return
false
;
}
Modal
.
confirm
({
title
:
'撤回'
,
content
:
'确定撤回吗?'
,
okText
:
'确认'
,
cancelText
:
'取消'
,
onOk
:
()
=>
{
return
uaaRequest
(
'/UnifiedAppFormApi/regressionProcess'
,
{
taskIds
:
[
selectRows
[
0
].
taskId
],
})
.
then
((
res
)
=>
{
if
(
res
)
{
Modal
.
info
({
title
:
'提示'
,
content
:
'撤回成功, 点击详情可再次编辑并提交申请'
,
});
getPage
();
}
else
{
message
.
info
(
'操作失败'
);
return
false
;
}
});
// dispatch({
// type: 'urge/GetRecall',
// payload: {
// taskIds: [id],
// },
// callback: () => {
// openToast('success', '成功', '撤回成功');
// this.getInit();
// },
// });
},
});
},
});
}
return
[
{
...
...
@@ -168,6 +221,7 @@ class AffairPage extends React.Component {
);
},
},
...
reBack
,
...
otherButtons
,
];
};
...
...
FormInsertDiy/AffairPage/ButtonListDom/index.js
浏览文件 @
e7dfe0b7
...
...
@@ -31,6 +31,7 @@ export default class ButtonListDom extends Component {
<
ButtonDiy
name
=
{
item
.
name
}
key
=
{
item
.
type
}
type
=
{
item
.
buttonType
}
className
=
{
item
.
className
||
'defaultBule'
}
handleClick
=
{()
=>
{
item
.
handleClick
(
selectRows
,
formValues
,
getPage
,
search
,
columns
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论