feat: support for configuration after successful draft submission
This commit is contained in:
parent
d94cf316e8
commit
cef2161972
@ -63,7 +63,19 @@ export function Page(props: any) {
|
|||||||
<View
|
<View
|
||||||
currentRowId={currentRowId}
|
currentRowId={currentRowId}
|
||||||
onDraft={() => {
|
onDraft={() => {
|
||||||
|
if (!view.draft) {
|
||||||
message.success('草稿保存成功');
|
message.success('草稿保存成功');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (view.draft.returnType === 'message' && view.draft.message) {
|
||||||
|
Modal.success({
|
||||||
|
title: '草稿保存成功',
|
||||||
|
content: <div dangerouslySetInnerHTML={{__html: markdown(view.draft.message)}}/>,
|
||||||
|
});
|
||||||
|
} else if (view.draft.returnType === 'redirect') {
|
||||||
|
const path = get(view, 'draft.redirect.name');
|
||||||
|
path && history.push(`${path}`);
|
||||||
|
}
|
||||||
}}
|
}}
|
||||||
onFinish={() => {
|
onFinish={() => {
|
||||||
if (view.returnType === 'message' && view.message) {
|
if (view.returnType === 'message' && view.message) {
|
||||||
|
@ -43,6 +43,11 @@ export default {
|
|||||||
"target": "message",
|
"target": "message",
|
||||||
"condition": "{{ $self.value && $self.value.type === 'form' }}"
|
"condition": "{{ $self.value && $self.value.type === 'form' }}"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "value:visible",
|
||||||
|
"target": "draft.returnType",
|
||||||
|
"condition": "{{ $self.value && $self.value.type === 'form' }}"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -117,6 +122,59 @@ export default {
|
|||||||
component: {
|
component: {
|
||||||
type: 'wysiwyg',
|
type: 'wysiwyg',
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
interface: 'radio',
|
||||||
|
type: 'virtual',
|
||||||
|
name: 'draft.returnType',
|
||||||
|
title: '草稿提交成功后',
|
||||||
|
dataSource: [
|
||||||
|
{ label: '显示文字信息', value: 'message' },
|
||||||
|
{ label: '跳转到页面', value: 'redirect' },
|
||||||
|
],
|
||||||
|
component: {
|
||||||
|
type: 'radio',
|
||||||
|
'x-linkages': [
|
||||||
|
{
|
||||||
|
"type": "value:visible",
|
||||||
|
"target": "draft.message",
|
||||||
|
"condition": "{{ $self.value === 'message' }}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "value:visible",
|
||||||
|
"target": "draft.redirect",
|
||||||
|
"condition": "{{ $self.value === 'redirect' }}"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
interface: 'linkTo',
|
||||||
|
type: 'virtual',
|
||||||
|
name: 'draft.redirect',
|
||||||
|
target: 'menus',
|
||||||
|
title: '跳转到页面',
|
||||||
|
labelField: 'title',
|
||||||
|
valueField: 'id',
|
||||||
|
multiple: false,
|
||||||
|
component: {
|
||||||
|
type: 'drawerSelect',
|
||||||
|
'x-component-props': {
|
||||||
|
viewName: 'menus.table',
|
||||||
|
resourceName: 'menus',
|
||||||
|
labelField: 'title',
|
||||||
|
valueField: 'id',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
interface: 'wysiwyg',
|
||||||
|
type: 'virtual',
|
||||||
|
title: '显示文字信息',
|
||||||
|
name: 'draft.message',
|
||||||
|
component: {
|
||||||
|
type: 'wysiwyg',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
views_v2: [
|
views_v2: [
|
||||||
@ -170,6 +228,9 @@ export default {
|
|||||||
'returnType',
|
'returnType',
|
||||||
'redirect',
|
'redirect',
|
||||||
'message',
|
'message',
|
||||||
|
'draft.returnType',
|
||||||
|
'draft.redirect',
|
||||||
|
'draft.message',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user