|
@@ -46,12 +46,12 @@
|
|
|
<span> {{ i + 1 }} </span>
|
|
|
</template>
|
|
|
</a-table-column>
|
|
|
- <a-table-column title="任务名称" dataIndex="name" width="10%" align="center">
|
|
|
+ <a-table-column title="任务名称" dataIndex="name" width="16%" align="center">
|
|
|
<template slot-scope="t">
|
|
|
<span> {{ t }} </span>
|
|
|
</template>
|
|
|
</a-table-column>
|
|
|
- <a-table-column title="所属流程" dataIndex="processName" width="8%" align="center">
|
|
|
+ <a-table-column title="所属流程" dataIndex="processName" width="13%" align="center">
|
|
|
<template slot-scope="t">
|
|
|
<span> {{ t }} </span>
|
|
|
</template>
|
|
@@ -66,7 +66,7 @@
|
|
|
<span> {{ t }} </span>
|
|
|
</template>
|
|
|
</a-table-column>
|
|
|
- <a-table-column title="流程发起人" dataIndex="applyer" width="8%" align="center">
|
|
|
+ <a-table-column title="流程发起人" dataIndex="applyer" width="13%" align="center">
|
|
|
<template slot-scope="t">
|
|
|
<span> {{ t }} </span>
|
|
|
</template>
|
|
@@ -93,7 +93,7 @@
|
|
|
<a-table-column
|
|
|
title="状态"
|
|
|
dataIndex="isSuspended"
|
|
|
- :width="100"
|
|
|
+ width="80"
|
|
|
align="center"
|
|
|
key="z"
|
|
|
:sorter="(a, b) => (Boolean(a.isSuspended) ? 0 : 1 - Boolean(b.isSuspended) ? 0 : 1)"
|
|
@@ -103,7 +103,7 @@
|
|
|
<a-tag color="orange" v-if="Boolean(t)">已完成</a-tag>
|
|
|
</template>
|
|
|
</a-table-column>
|
|
|
- <a-table-column title="创建时间" dataIndex="createTime" width="20%" align="center">
|
|
|
+ <a-table-column title="创建时间" dataIndex="createTime" width="15%" align="center">
|
|
|
<template slot-scope="t">
|
|
|
<span>{{ t }}</span>
|
|
|
</template>
|