Browse Source

解决我的已办 进行中的流程 已结束流程小屏幕样式问题

dev
long 2 years ago
parent
commit
3c4f230177
  1. 20
      src/views/activiti/doneManage.vue
  2. 22
      src/views/activiti/processFinishManage.vue
  3. 14
      src/views/activiti/processInsManage.vue

20
src/views/activiti/doneManage.vue

@ -47,32 +47,32 @@
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
ref="table"
>
<a-table-column title="序号" :width="80" align="center">
<a-table-column title="序号" :width="70" align="center">
<template slot-scope="t,r,i" >
<span> {{i+1}} </span>
</template>
</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">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="所属流程" dataIndex="processName" :width="150" align="center">
<a-table-column title="所属流程" dataIndex="processName" align="center">
<template slot-scope="t,r,i">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="委托人" dataIndex="owner" :width="130" align="center">
<a-table-column title="委托人" dataIndex="owner" align="center">
<template slot-scope="t,r,i">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="流程发起人" dataIndex="applyer" :width="130" align="center">
<a-table-column title="流程发起人" dataIndex="applyer" align="center">
<template slot-scope="t,r,i">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="优先级" dataIndex="priority" :width="100" align="center"
<a-table-column title="优先级" dataIndex="priority" align="center"
key="priority" :sorter="(a,b)=>a.priority - b.priority"
>
<template slot-scope="t">
@ -82,25 +82,25 @@
<span v-else style="color: #999;"> </span>
</template>
</a-table-column>
<a-table-column title="审批操作" dataIndex="deleteReason" :width="100" align="center">
<a-table-column title="审批操作" dataIndex="deleteReason" align="center">
<template slot-scope="t">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="审批意见" dataIndex="comment" :width="100" align="center">
<a-table-column title="审批意见" dataIndex="comment" align="center">
<template slot-scope="t">
<!--<j-ellipsis :value="t" :length="10"/>-->
<span>{{removeHtmlStyle(t)}}</span>
</template>
</a-table-column>
<a-table-column title="耗时" dataIndex="duration" :width="100" align="center"
<a-table-column title="耗时" dataIndex="duration" align="center"
key="duration" :sorter="(a,b)=>a.duration - b.duration"
>
<template slot-scope="t">
<span> {{millsToTime(t)}} </span>
</template>
</a-table-column>
<a-table-column title="创建时间" dataIndex="createTime" :width="200" align="center">
<a-table-column title="创建时间" dataIndex="createTime" align="center">
<template slot-scope="t">
<span> {{t}} </span>
</template>

22
src/views/activiti/processFinishManage.vue

@ -56,27 +56,27 @@
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
ref="table"
>
<a-table-column title="序号" :width="50" align="center">
<a-table-column title="序号" :width="70" align="center">
<template slot-scope="t,r,i" >
<span> {{i+1}} </span>
</template>
</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" >
<span> {{t}} </span>
</template>
</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" >
<span> {{t}} </span>
</template>
</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" >
<span> {{t}} </span>
</template>
</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" >-->
<!-- <span> {{t}} </span>-->
<!-- </template>-->
@ -86,7 +86,7 @@
<!-- <span> v.{{t}} </span>-->
<!-- </template>-->
<!-- </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">
<template slot-scope="t,r,i" >
<span v-if="t==4" style="color: #999999"> 发起人撤回 </span>
@ -95,28 +95,28 @@
<span v-else-if="t==3" style="color: red"> 已驳回 </span>
</template>
</a-table-column>
<!-- <a-table-column title="原因详情" dataIndex="deleteReason" :width="150">
<!-- <a-table-column title="原因详情" dataIndex="deleteReason" >
<template slot-scope="t,r,i" >
<j-ellipsis :value="t" :length="10"></j-ellipsis>
</template>
</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">
<template slot-scope="t,r,i" >
<span > {{millsToTime(t)}} </span>
</template>
</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" >
<span > {{t}} </span>
</template>
</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" >
<span > {{t}} </span>
</template>
</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" >
<!--<a href="javascript:void(0);" style="color: green;" @click="history(r)" >审批历史</a>
<a-divider type="vertical" />-->

14
src/views/activiti/processInsManage.vue

@ -47,27 +47,27 @@
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
ref="table"
>
<a-table-column title="序号" :width="80">
<a-table-column title="序号" :width="70">
<template slot-scope="t,r,i" >
<span> {{i+1}} </span>
</template>
</a-table-column>
<a-table-column title="流程实例ID" dataIndex="id" :width="200">
<a-table-column title="流程实例ID" dataIndex="id" >
<template slot-scope="t,r,i" >
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="流程名称" dataIndex="name" :width="200">
<a-table-column title="流程名称" dataIndex="name" >
<template slot-scope="t,r,i" >
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="申请人" dataIndex="applyer" :width="200">
<a-table-column title="申请人" dataIndex="applyer" >
<template slot-scope="t,r,i" >
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="流程描述" dataIndex="key" :width="200">
<a-table-column title="流程描述" dataIndex="key" >
<template slot-scope="t,r,i" >
<span> {{t}} </span>
</template>
@ -77,12 +77,12 @@
<!-- <span> v.{{t}} </span>-->
<!-- </template>-->
<!-- </a-table-column>-->
<a-table-column title="当前环节" dataIndex="currTaskName" :width="250">
<a-table-column title="当前环节" dataIndex="currTaskName" >
<template slot-scope="t,r,i" >
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="状态" dataIndex="isSuspended" :width="110"
<a-table-column title="状态" dataIndex="isSuspended"
key="isSuspended" :sorter="(a,b)=>Boolean(a.isSuspended)?0:1 - Boolean(b.isSuspended)?0:1"
>
<template slot-scope="t,r,i" >

Loading…
Cancel
Save