Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
89b6f355
提交
89b6f355
authored
4月 02, 2020
作者:
王绍森
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
提交按钮增加draftCode
上级
a706cad3
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
9 行增加
和
6 行删除
+9
-6
index.jsx
one_stop_public/AffairButton/SumbitButton/index.jsx
+8
-6
按钮使用文档.md
one_stop_public/AffairButton/按钮使用文档.md
+1
-0
没有找到文件。
one_stop_public/AffairButton/SumbitButton/index.jsx
浏览文件 @
89b6f355
...
...
@@ -41,7 +41,7 @@ export default class idnex extends Component {
});
}
handleOk
=
()
=>
{
let
{
dispatch
}
=
this
.
props
;
let
{
dispatch
,
draftCode
}
=
this
.
props
;
this
.
props
.
form
.
validateFields
((
err
,
values
)
=>
{
if
(
!
err
)
{
preHandle
(
values
);
// 引入 import preHandle from '@/webPublic/one_stop_public/utils/myutils.js'
...
...
@@ -54,7 +54,8 @@ export default class idnex extends Component {
payload
:
{
content
:
JSON
.
stringify
(
values
),
// 表单数据
appId
:
this
.
props
.
appId
,
// 这里应该由上级路由跳转传入 事务Id
id
:
!!
this
.
state
.
draftId
?
this
.
state
.
draftId
:
null
// 确认是否存在草稿表单Id存在即传入
id
:
!!
this
.
state
.
draftId
?
this
.
state
.
draftId
:
null
,
// 确认是否存在草稿表单Id存在即传入
code
:
typeof
draftCode
!==
'undefined'
?
draftCode
:
null
,
// 确认是否存在草稿表单code存在即传入
},
callback
:
val
=>
{
if
(
val
)
{
...
...
@@ -86,7 +87,7 @@ export default class idnex extends Component {
})
}
handleDraft
=
()
=>
{
let
{
dispatch
,
id
,
radioValue
,
draftCallback
}
=
this
.
props
;
let
{
dispatch
,
id
,
radioValue
,
draftCallback
,
draftCode
}
=
this
.
props
;
this
.
setState
({
isLoading
:
true
},()
=>
{
...
...
@@ -96,9 +97,10 @@ export default class idnex extends Component {
dispatch
({
type
:
'affair/saveDraft'
,
payload
:
{
content
:
JSON
.
stringify
(
values
),
// 表单数据
content
:
JSON
.
stringify
(
values
),
// 表单数据
appId
:
this
.
props
.
appId
,
// 这里应该由上级路由跳转传入 事务Id
id
:
!!
this
.
state
.
draftId
?
this
.
state
.
draftId
:
null
// 确认是否存在草稿表单Id存在即传入
id
:
!!
this
.
state
.
draftId
?
this
.
state
.
draftId
:
null
,
// 确认是否存在草稿表单Id存在即传入
code
:
typeof
draftCode
!==
'undefined'
?
draftCode
:
null
,
// 确认是否存在草稿表单code存在即传入
},
callback
:
val
=>
{
if
(
isEmpty
(
val
)
===
false
)
{
...
...
@@ -156,7 +158,7 @@ export default class idnex extends Component {
text
??
'提交'
}
</
Button
>
<
AddModel
<
AddModel
visible=
{
visible
}
handleOk=
{
this
.
handleOk
}
isLoading=
{
isLoading
}
...
...
one_stop_public/AffairButton/按钮使用文档.md
浏览文件 @
89b6f355
...
...
@@ -14,6 +14,7 @@ import SumbitButton from '@/webPublic/one_stop_public/AffairButton/SumbitButton'
appId
=
{
'事务ID'
}
// 事务ID
text
=
'提交'
// 按钮文本
draftId
=
{
'草稿Id'
}
// 可不传 不传为发起全新 传后修改草稿
draftCode
=
{
'草稿code'
}
// 可不传 不传为发起全新 传后修改草稿,草稿id和草稿code传一个就行。
openDraftButton
=
{
true
}
// 开启保存草稿按钮
DraftButtonText
=
'草稿按钮文本'
// 草稿按钮内置文本
callback
=
'提交按钮回调函数'
// 提交按钮回调函数
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论