|
|
@ -56,27 +56,27 @@ |
|
|
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
|
|
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
|
|
|
ref="table" |
|
|
|
ref="table" |
|
|
|
> |
|
|
|
> |
|
|
|
<a-table-column title="序号" :width="50" align="center"> |
|
|
|
<a-table-column title="序号" :width="70" align="center"> |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<span> {{i+1}} </span> |
|
|
|
<span> {{i+1}} </span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<a-table-column title="流程实例ID" dataIndex="id" :width="100" align="center"> |
|
|
|
<a-table-column title="流程实例ID" dataIndex="id" align="center"> |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<span> {{t}} </span> |
|
|
|
<span> {{t}} </span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<a-table-column title="流程名称" dataIndex="name" :width="150" align="center"> |
|
|
|
<a-table-column title="流程名称" dataIndex="name" align="center"> |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<span> {{t}} </span> |
|
|
|
<span> {{t}} </span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<a-table-column title="申请人" dataIndex="applyer" :ellipsis= "true" :width="80" align="center"> |
|
|
|
<a-table-column title="申请人" dataIndex="applyer" :ellipsis= "true" align="center"> |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<span> {{t}} </span> |
|
|
|
<span> {{t}} </span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<!-- <a-table-column title="标识Key" dataIndex="key" :width="150" >--> |
|
|
|
<!-- <a-table-column title="标识Key" dataIndex="key" >--> |
|
|
|
<!-- <template slot-scope="t,r,i" >--> |
|
|
|
<!-- <template slot-scope="t,r,i" >--> |
|
|
|
<!-- <span> {{t}} </span>--> |
|
|
|
<!-- <span> {{t}} </span>--> |
|
|
|
<!-- </template>--> |
|
|
|
<!-- </template>--> |
|
|
@ -86,7 +86,7 @@ |
|
|
|
<!-- <span> v.{{t}} </span>--> |
|
|
|
<!-- <span> v.{{t}} </span>--> |
|
|
|
<!-- </template>--> |
|
|
|
<!-- </template>--> |
|
|
|
<!-- </a-table-column>--> |
|
|
|
<!-- </a-table-column>--> |
|
|
|
<a-table-column title="审批结果" dataIndex="result" :width="80" |
|
|
|
<a-table-column title="审批结果" dataIndex="result" |
|
|
|
key="result" :sorter="(a,b)=>a.result - b.result" align="center"> |
|
|
|
key="result" :sorter="(a,b)=>a.result - b.result" align="center"> |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<span v-if="t==4" style="color: #999999"> 发起人撤回 </span> |
|
|
|
<span v-if="t==4" style="color: #999999"> 发起人撤回 </span> |
|
|
@ -95,28 +95,28 @@ |
|
|
|
<span v-else-if="t==3" style="color: red"> 已驳回 </span> |
|
|
|
<span v-else-if="t==3" style="color: red"> 已驳回 </span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<!-- <a-table-column title="原因详情" dataIndex="deleteReason" :width="150"> |
|
|
|
<!-- <a-table-column title="原因详情" dataIndex="deleteReason" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<j-ellipsis :value="t" :length="10"></j-ellipsis> |
|
|
|
<j-ellipsis :value="t" :length="10"></j-ellipsis> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column>--> |
|
|
|
</a-table-column>--> |
|
|
|
<a-table-column title="总耗时" dataIndex="duration" :width="100" |
|
|
|
<a-table-column title="总耗时" dataIndex="duration" |
|
|
|
key="duration" :sorter="(a,b)=>a.duration - b.duration" align="center"> |
|
|
|
key="duration" :sorter="(a,b)=>a.duration - b.duration" align="center"> |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<span > {{millsToTime(t)}} </span> |
|
|
|
<span > {{millsToTime(t)}} </span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<a-table-column title="开始时间" dataIndex="startTime" :width="150" align="center"> |
|
|
|
<a-table-column title="开始时间" dataIndex="startTime" align="center"> |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<span > {{t}} </span> |
|
|
|
<span > {{t}} </span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<a-table-column title="结束时间" dataIndex="endTime" :width="150" align="center"> |
|
|
|
<a-table-column title="结束时间" dataIndex="endTime" align="center"> |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<span > {{t}} </span> |
|
|
|
<span > {{t}} </span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<a-table-column title="操作" dataIndex="" :width="200" align="center" > |
|
|
|
<a-table-column title="操作" dataIndex="" align="center" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
<!--<a href="javascript:void(0);" style="color: green;" @click="history(r)" >审批历史</a> |
|
|
|
<!--<a href="javascript:void(0);" style="color: green;" @click="history(r)" >审批历史</a> |
|
|
|
<a-divider type="vertical" />--> |
|
|
|
<a-divider type="vertical" />--> |
|
|
|