| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <template>
- <div class="app-container home">
- <!-- <el-divider /> -->
- <el-row :gutter="20">
- <el-col :xs="24" :sm="24" :md="12" :lg="8">
- <el-card class="update-log">
- <div slot="header" class="clearfix">
- <span>流程功能列表</span>
- </div>
- <p>1.单节点配置表单</p>
- <p>2.多实例会签任务</p>
- <p>3.节点任务/执行监听器</p>
- <p>4.动态配置任务候选人</p>
- <p>5.其它模块优化</p>
- </el-card>
- </el-col>
- <!-- <el-col :xs="24" :sm="24" :md="12" :lg="16">
- <el-card class="update-log">
- <div slot="header" class="clearfix">
- <span>流程演示</span>
- </div>
- <img style="width: 850px" src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/f248dea817f74341b70f4087f425975b~tplv-k3u1fbpfcp-watermark.image?"/>
- </el-card>
- </el-col> -->
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: "index",
- data() {
- return {
- // 版本号
- version: "3.4.0",
- };
- },
- methods: {
- goTarget(href) {
- window.open(href, "_blank");
- },
- },
- };
- </script>
- <style scoped lang="scss">
- .home {
- blockquote {
- padding: 10px 20px;
- margin: 0 0 20px;
- font-size: 17.5px;
- border-left: 5px solid #eee;
- }
- hr {
- margin-top: 20px;
- margin-bottom: 20px;
- border: 0;
- border-top: 1px solid #eee;
- }
- .col-item {
- margin-bottom: 20px;
- }
- ul {
- padding: 0;
- margin: 0;
- }
- font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 13px;
- color: #676a6c;
- overflow-x: hidden;
- ul {
- list-style-type: none;
- }
- h4 {
- margin-top: 0px;
- }
- h2 {
- margin-top: 10px;
- font-size: 26px;
- font-weight: 100;
- }
- p {
- margin-top: 10px;
- b {
- font-weight: 700;
- }
- }
- .update-log {
- ol {
- display: block;
- list-style-type: decimal;
- margin-block-start: 1em;
- margin-block-end: 1em;
- margin-inline-start: 0;
- margin-inline-end: 0;
- padding-inline-start: 40px;
- }
- }
- }
- </style>
|