Commit 263ca1a9 by 张蕴鹏

feat(工作流): 详情页的 page 下嵌入的工作流列表支持更丰富的配置选项

parent eb48d777
Showing with 39 additions and 15 deletions
......@@ -183,7 +183,7 @@
"parameters": {
"actionName": "insert",
"parameters": {
"inputs":[
"inputs": [
]
}
}
......@@ -196,7 +196,7 @@
"parameters": {
"actionName": "update",
"parameters": {
"inputs":[
"inputs": [
]
}
}
......@@ -211,7 +211,7 @@
"id": "1",
"actionName": "update",
"parameters": {
"inputs":[
"inputs": [
]
}
}
......@@ -225,7 +225,8 @@
"parameters": {
"actionName": "insert",
"parameters": {
"inputs":[{
"inputs": [
{
"label": "name",
"property": "name",
"default_value": "'zhangsan'",
......@@ -703,12 +704,13 @@
"showWorkflowList"
],
"actions": [
],
"sortDefs": [{
"sortDefs": [
{
"property": "id",
"type": "asc"
}]
}
]
},
{
"name": "page3",
......@@ -729,10 +731,12 @@
"template": "{name}"
}
],
"sortDefs": [{
"sortDefs": [
{
"property": "name",
"type": "desc"
}],
}
],
"intents": [
"executeActionOther",
"executeAction",
......@@ -740,7 +744,6 @@
"showWorkflowList"
],
"actions": [
]
}
],
......@@ -855,7 +858,9 @@
"actions": [
"update"
],
"intents": ["executeActionOther"]
"intents": [
"executeActionOther"
]
},
"sections": [
{
......@@ -864,7 +869,10 @@
{
"label": "id",
"template": "{id}",
"intents": ["otherAction", "executeActionOther"]
"intents": [
"otherAction",
"executeActionOther"
]
}
],
"actions": []
......@@ -900,7 +908,10 @@
"update",
"delete"
],
"intents": ["addUserRemark","executeActionOther"]
"intents": [
"addUserRemark",
"executeActionOther"
]
}
]
},
......@@ -914,7 +925,18 @@
]
},
"sections": [
]
},
{
"name": "workflowList",
"label": "工作流列表",
"workflow_list": {
"name": "Example1",
"workflowListName": "test_list",
"prefilters": [
]
},
"sections": [
]
}
]
......@@ -1001,7 +1023,9 @@
"workflowLists": [
{
"name": "test_list",
"detailName": "detail1"
"detailName": "detail1",
"appointProcessName": "测试流程",
"showSwitchComponent": false
}
],
"tagGroups": [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment