index.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <div class="app-container home">
  3. <!-- <el-divider /> -->
  4. <el-row :gutter="20">
  5. <el-col :xs="24" :sm="24" :md="12" :lg="8">
  6. <el-card class="update-log">
  7. <div slot="header" class="clearfix">
  8. <span>流程功能列表</span>
  9. </div>
  10. <p>1.单节点配置表单</p>
  11. <p>2.多实例会签任务</p>
  12. <p>3.节点任务/执行监听器</p>
  13. <p>4.动态配置任务候选人</p>
  14. <p>5.其它模块优化</p>
  15. </el-card>
  16. </el-col>
  17. <!-- <el-col :xs="24" :sm="24" :md="12" :lg="16">
  18. <el-card class="update-log">
  19. <div slot="header" class="clearfix">
  20. <span>流程演示</span>
  21. </div>
  22. <img style="width: 850px" src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/f248dea817f74341b70f4087f425975b~tplv-k3u1fbpfcp-watermark.image?"/>
  23. </el-card>
  24. </el-col> -->
  25. </el-row>
  26. </div>
  27. </template>
  28. <script>
  29. export default {
  30. name: "index",
  31. data() {
  32. return {
  33. // 版本号
  34. version: "3.4.0",
  35. };
  36. },
  37. methods: {
  38. goTarget(href) {
  39. window.open(href, "_blank");
  40. },
  41. },
  42. };
  43. </script>
  44. <style scoped lang="scss">
  45. .home {
  46. blockquote {
  47. padding: 10px 20px;
  48. margin: 0 0 20px;
  49. font-size: 17.5px;
  50. border-left: 5px solid #eee;
  51. }
  52. hr {
  53. margin-top: 20px;
  54. margin-bottom: 20px;
  55. border: 0;
  56. border-top: 1px solid #eee;
  57. }
  58. .col-item {
  59. margin-bottom: 20px;
  60. }
  61. ul {
  62. padding: 0;
  63. margin: 0;
  64. }
  65. font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  66. font-size: 13px;
  67. color: #676a6c;
  68. overflow-x: hidden;
  69. ul {
  70. list-style-type: none;
  71. }
  72. h4 {
  73. margin-top: 0px;
  74. }
  75. h2 {
  76. margin-top: 10px;
  77. font-size: 26px;
  78. font-weight: 100;
  79. }
  80. p {
  81. margin-top: 10px;
  82. b {
  83. font-weight: 700;
  84. }
  85. }
  86. .update-log {
  87. ol {
  88. display: block;
  89. list-style-type: decimal;
  90. margin-block-start: 1em;
  91. margin-block-end: 1em;
  92. margin-inline-start: 0;
  93. margin-inline-end: 0;
  94. padding-inline-start: 40px;
  95. }
  96. }
  97. }
  98. </style>