index.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <div class="app-container home">
  3. <el-row :gutter="20">
  4. <el-col :xs="24" :sm="24" :md="12" :lg="14">
  5. <el-card class="update-log">
  6. <div slot="header" class="clearfix">
  7. <span>联系信息</span>
  8. </div>
  9. <div class="body">
  10. <p>
  11. <i class="el-icon-user-solid"></i> QQ群:
  12. <a href="https://jq.qq.com/?_wv=1027&k=2zE87c2G" target="_blank"
  13. > 782924350</a
  14. >
  15. </p>
  16. <p>
  17. <i class="el-icon-chat-dot-round"></i> 微信:<a
  18. >Almost-2y</a
  19. >
  20. </p>
  21. <p style="color: #f54a4a;font-size:16px">
  22. <i class="el-icon-bell"></i> 说明:<a
  23. >技术咨询、业务定制等其它支持可添加 微信: Almost-2y / QQ: 846249920 进行沟通交流</a
  24. >
  25. </p>
  26. <p>
  27. <i class="el-icon-shopping-bag-2"></i> 腾讯云秒杀:<a style="color: #365be4" href="https://curl.qcloud.com/W5KFkBG4" target="_blank"
  28. >点我进入</a>
  29. </p>
  30. <p>
  31. <i class="el-icon-shopping-bag-2"></i> 腾讯云服务器:<a style="color: #365be4" href="https://curl.qcloud.com/AacfyRxq" target="_blank"
  32. >点我进入</a>
  33. </p>
  34. <p>
  35. <i class="el-icon-shopping-bag-2"></i> 阿里云优惠:<a style="color: #365be4" href="https://www.aliyun.com/activity/daily/bestoffer?userCode=q2b8atsa" target="_blank"
  36. >点我进入</a>
  37. </p>
  38. <p>
  39. <i class="el-icon-shopping-bag-2"></i> 阿里云服务器:<a style="color: #365be4" href="https://www.aliyun.com/daily-act/ecs/activity_selection?userCode=q2b8atsa" target="_blank"
  40. >点我进入</a>
  41. </p>
  42. </div>
  43. </el-card>
  44. </el-col>
  45. <el-col :xs="24" :sm="24" :md="12" :lg="10">
  46. <el-card class="update-log">
  47. <div slot="header" class="clearfix">
  48. <span>捐赠支持</span>
  49. </div>
  50. <div class="body">
  51. <img
  52. src="https://foruda.gitee.com/images/1672215449995765124/596b46c3_2042292.png"
  53. alt="donate"
  54. width="100%"
  55. />
  56. <span style="display: inline-block; height: 30px; line-height: 30px"
  57. >可以请作者喝杯咖啡以示鼓励!</span
  58. >
  59. </div>
  60. </el-card>
  61. </el-col>
  62. </el-row>
  63. <el-divider />
  64. <el-row :gutter="20">
  65. <el-col :xs="24" :sm="24" :md="12" :lg="8">
  66. <el-card class="update-log">
  67. <div slot="header" class="clearfix">
  68. <span>流程功能列表</span>
  69. </div>
  70. <p>1.单节点配置表单</p>
  71. <p>2.多实例会签任务</p>
  72. <p>3.节点任务/执行监听器</p>
  73. <p>4.动态配置任务候选人</p>
  74. <p>5.其它模块优化</p>
  75. </el-card>
  76. </el-col>
  77. <el-col :xs="24" :sm="24" :md="12" :lg="16">
  78. <el-card class="update-log">
  79. <div slot="header" class="clearfix">
  80. <span>流程演示</span>
  81. </div>
  82. <img style="width: 850px" src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/f248dea817f74341b70f4087f425975b~tplv-k3u1fbpfcp-watermark.image?"/>
  83. </el-card>
  84. </el-col>
  85. </el-row>
  86. </div>
  87. </template>
  88. <script>
  89. export default {
  90. name: "index",
  91. data() {
  92. return {
  93. // 版本号
  94. version: "3.4.0",
  95. };
  96. },
  97. methods: {
  98. goTarget(href) {
  99. window.open(href, "_blank");
  100. },
  101. },
  102. };
  103. </script>
  104. <style scoped lang="scss">
  105. .home {
  106. blockquote {
  107. padding: 10px 20px;
  108. margin: 0 0 20px;
  109. font-size: 17.5px;
  110. border-left: 5px solid #eee;
  111. }
  112. hr {
  113. margin-top: 20px;
  114. margin-bottom: 20px;
  115. border: 0;
  116. border-top: 1px solid #eee;
  117. }
  118. .col-item {
  119. margin-bottom: 20px;
  120. }
  121. ul {
  122. padding: 0;
  123. margin: 0;
  124. }
  125. font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  126. font-size: 13px;
  127. color: #676a6c;
  128. overflow-x: hidden;
  129. ul {
  130. list-style-type: none;
  131. }
  132. h4 {
  133. margin-top: 0px;
  134. }
  135. h2 {
  136. margin-top: 10px;
  137. font-size: 26px;
  138. font-weight: 100;
  139. }
  140. p {
  141. margin-top: 10px;
  142. b {
  143. font-weight: 700;
  144. }
  145. }
  146. .update-log {
  147. ol {
  148. display: block;
  149. list-style-type: decimal;
  150. margin-block-start: 1em;
  151. margin-block-end: 1em;
  152. margin-inline-start: 0;
  153. margin-inline-end: 0;
  154. padding-inline-start: 40px;
  155. }
  156. }
  157. }
  158. </style>