index.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <div class="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. ::v-deep .el-card__body{
  46. background-color: #fff;
  47. }
  48. .home {
  49. padding: 20px;
  50. blockquote {
  51. padding: 10px 20px;
  52. margin: 0 0 20px;
  53. font-size: 17.5px;
  54. border-left: 5px solid #eee;
  55. }
  56. hr {
  57. margin-top: 20px;
  58. margin-bottom: 20px;
  59. border: 0;
  60. border-top: 1px solid #eee;
  61. }
  62. .col-item {
  63. margin-bottom: 20px;
  64. }
  65. ul {
  66. padding: 0;
  67. margin: 0;
  68. }
  69. font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  70. font-size: 13px;
  71. color: #676a6c;
  72. overflow-x: hidden;
  73. ul {
  74. list-style-type: none;
  75. }
  76. h4 {
  77. margin-top: 0px;
  78. }
  79. h2 {
  80. margin-top: 10px;
  81. font-size: 26px;
  82. font-weight: 100;
  83. }
  84. p {
  85. margin-top: 10px;
  86. b {
  87. font-weight: 700;
  88. }
  89. }
  90. .update-log {
  91. ol {
  92. display: block;
  93. list-style-type: decimal;
  94. margin-block-start: 1em;
  95. margin-block-end: 1em;
  96. margin-inline-start: 0;
  97. margin-inline-end: 0;
  98. padding-inline-start: 40px;
  99. }
  100. }
  101. }
  102. </style>