startDialog.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "headerAlign": "center",
  3. "align": "center",
  4. "border": true,
  5. "index": true,
  6. "lazy": true,
  7. "tip": false,
  8. "searchShow": true,
  9. "searchMenuPosition": "right",
  10. "searchMenuSpan": 6,
  11. "tree": true,
  12. "selection": true,
  13. "addBtn": false,
  14. "viewBtn": false,
  15. "editBtn": false,
  16. "delBtn": false,
  17. "menuWidth": 150,
  18. "column":[
  19. {
  20. "label": "租户编号",
  21. "prop": "tenantId",
  22. "search": true,
  23. "index": 1,
  24. "width":150
  25. },{
  26. "label": "流程分类",
  27. "prop": "category",
  28. "search": true,
  29. "row": true,
  30. "dicUrl": "/api/blade-system/dict/dictionary?code=flow",
  31. "props": {
  32. "label": "dictValue",
  33. "value": "dictKey"
  34. },
  35. "dataType":"number",
  36. "slot": true,
  37. "index": 2,
  38. "width":120
  39. },{
  40. "label": "流程标识",
  41. "prop": "key",
  42. "index": 4,
  43. "width":120
  44. },{
  45. "label": "流程名称",
  46. "prop": "name",
  47. "search": true,
  48. "index": 5,
  49. "width":140
  50. },{
  51. "label": "状态",
  52. "prop": "suspensionState",
  53. "index": 6,
  54. "width":120
  55. },{
  56. "label": "部署时间",
  57. "prop": "deploymentTime",
  58. "index": 7,
  59. "width":150
  60. }
  61. ]
  62. }