Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
571fd437
提交
571fd437
authored
3月 30, 2020
作者:
徐立
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增保存草稿按钮
上级
049a2ad7
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
68 行增加
和
4 行删除
+68
-4
index.jsx
one_stop_public/AffairButton/SumbitButton/index.jsx
+66
-4
按钮使用文档.md
one_stop_public/AffairButton/按钮使用文档.md
+2
-0
没有找到文件。
one_stop_public/AffairButton/SumbitButton/index.jsx
浏览文件 @
571fd437
...
...
@@ -12,13 +12,23 @@ import AddModel from './AddModal';
import
{
preHandle
}
from
'../../utils/myutils'
;
import
{
connect
}
from
'dva'
;
import
{
openToast
}
from
'../../location/Notification'
;
import
{
isEmpty
}
from
'../../copy'
;
@
connect
()
export
default
class
idnex
extends
Component
{
constructor
(
props
){
super
(
props
)
this
.
state
=
{
visible
:
false
,
isLoading
:
false
isLoading
:
false
,
draftId
:
props
.
draftId
??
''
,
}
}
componentWillReceiveProps
(
nextProps
){
const
{
draftId
}
=
nextProps
if
(
draftId
)
{
// 接收到最新草稿Id更新
this
.
setState
({
draftId
})
}
}
showModal
=
()
=>
{
...
...
@@ -44,12 +54,15 @@ export default class idnex extends Component {
payload
:
{
content
:
JSON
.
stringify
(
values
),
// 表单数据
appId
:
this
.
props
.
appId
,
// 这里应该由上级路由跳转传入 事务Id
id
:
!!
this
.
props
.
draftId
?
this
.
props
.
draftId
:
null
// 确认是否存在草稿表单Id存在即传入
id
:
!!
this
.
state
.
draftId
?
this
.
state
.
draftId
:
null
// 确认是否存在草稿表单Id存在即传入
},
callback
:
val
=>
{
if
(
val
)
{
this
.
setState
({
draftId
:
val
.
id
})
if
(
this
.
props
?.
callback
){
this
.
props
.
callback
()
this
.
props
.
callback
(
val
)
}
}
else
{
openToast
(
'error'
,
'保存失败'
,
'请尝试'
);
...
...
@@ -72,9 +85,45 @@ export default class idnex extends Component {
visible
:
false
})
}
handleDraft
=
()
=>
{
let
{
dispatch
,
id
,
radioValue
}
=
this
.
props
;
this
.
setState
({
isLoading
:
true
},()
=>
{
this
.
props
.
form
.
validateFields
((
err
,
values
)
=>
{
if
(
!
err
)
{
preHandle
(
values
);
// 引入 import {preHandle} from '@/webPublic/one_stop_public/utils/myutils.js'
dispatch
({
type
:
'affair/saveDraft'
,
payload
:
{
content
:
JSON
.
stringify
(
values
),
// 表单数据
appId
:
this
.
props
.
appId
,
// 这里应该由上级路由跳转传入 事务Id
id
:
!!
this
.
state
.
draftId
?
this
.
state
.
draftId
:
null
// 确认是否存在草稿表单Id存在即传入
},
callback
:
val
=>
{
if
(
isEmpty
(
val
)
===
false
)
{
this
.
setState
({
// 存在草稿后保存草稿Id 后续修改在这草稿Id上处理
draftId
:
val
.
id
})
openToast
(
'success'
,
'保存成功'
,
'草稿保存成功'
);
}
else
{
openToast
(
'error'
,
'保存失败'
,
'请尝试'
);
}
},
}).
then
((
res
)
=>
{
this
.
setState
({
isLoading
:
false
})
})
}
});
})
};
render
()
{
const
{
text
text
,
openDraftButton
,
DraftButtonText
,
}
=
this
.
props
const
{
visible
,
...
...
@@ -82,6 +131,19 @@ export default class idnex extends Component {
}
=
this
.
state
return
(
<>
{
openDraftButton
?
<
Button
style=
{
{
marginRight
:
20
}
}
isLoading=
{
isLoading
}
onClick=
{
this
.
handleDraft
}
>
{
DraftButtonText
??
'暂存草稿'
}
</
Button
>
:
null
}
<
Button
onClick=
{
this
.
showModal
}
isLoading=
{
isLoading
}
...
...
one_stop_public/AffairButton/按钮使用文档.md
浏览文件 @
571fd437
...
...
@@ -14,6 +14,8 @@ import SumbitButton from '@/webPublic/one_stop_public/AffairButton/SumbitButton'
appId
=
{
'事务ID'
}
// 事务ID
text
=
'提交'
// 按钮文本
draftId
=
{
'草稿Id'
}
// 可不传 不传为发起全新 传后修改草稿
openDraftButton
=
{
true
}
// 开启保存草稿按钮
DraftButtonText
=
'草稿按钮文本'
// 草稿按钮内置文本
/>
```
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论