123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- import { formatDate } from '@/utils/formatTime'
- export const TabColumns = {
- //待办
- '1': [
- {
- label: '操作',
- name: 'action',
- width: 138,
- frozen: true,
- fixed: true
- },
- { label: '业务编号', align: 'center', name: 'CODE', width: 250 },
- {
- label: '环节状态',
- align: 'center',
- name: 'statusVal',
- width: 90
- },
- {
- label: '流程描述',
- align: 'left',
- name: 'DESCRIBTION',
- minminWidth: 600
- },
- { label: '流程名称', align: 'left', name: 'NAME', width: 130 },
- { label: '办理环节', align: 'center', name: 'ACTIVITYNAME', width: 200 },
- {
- label: '接件时间',
- align: 'center',
- name: 'RECEIVE_TIME',
- width: 190,
- formatter(row: any, column: any, cellValue: any, index: number) {
- if (cellValue) {
- return formatDate(cellValue)
- }
- }
- }
- ],
- //已完成
- '90': [
- {
- label: '操作',
- name: 'action',
- width: 200,
- frozen: true,
- fixed: true
- },
- { label: '业务编号', align: 'center', name: 'CODE', width: 200 },
- {
- label: '环节完成情况',
- align: 'center',
- name: 'statusVal',
- width: 150
- },
- {
- label: '流程描述',
- align: 'left',
- name: 'DESCRIBTION',
- minWidth: 600
- },
- { label: '流程名称', align: 'left', name: 'NAME', width: 130 },
- { label: '完成环节', align: 'center', name: 'ACTIVITYNAME', width: 160 },
- {
- label: '完成时间',
- align: 'center',
- name: 'FINISH_TIME',
- width: 190,
- formatter(row: any, column: any, cellValue: any, index: number) {
- if (cellValue) {
- return formatDate(cellValue)
- }
- }
- },
- { label: '当前在办环节', align: 'center', name: 'currentActivityVal', width: 200 }
- ],
- //已退回
- '40': [
- {
- label: '操作',
- name: 'action',
- width: 138,
- frozen: true,
- fixed: true
- },
- { label: '业务编号', align: 'center', name: 'CODE', width: 250 },
- {
- label: '退至环节完成情况',
- align: 'center',
- name: 'statusVal',
- width: 160,
- fixed: true
- },
- {
- label: '流程描述',
- align: 'left',
- name: 'DESCRIBTION',
- minWidth: 600
- },
- { label: '流程名称', align: 'left', name: 'NAME', width: 130 },
- { label: '被退环节', align: 'center', name: 'BACTIVITYNAME', width: 160 },
- { label: '退至环节', align: 'center', name: 'ACTIVITYNAME', width: 160 },
- {
- label: '退回时间',
- align: 'center',
- name: 'CREATE_TIME',
- width: 190,
- formatter(row: any, column: any, cellValue: any, index: number) {
- if (cellValue) {
- return formatDate(cellValue)
- }
- }
- }
- ],
- //挂起
- '20': [
- {
- label: '操作',
- name: 'action',
- width: 228,
- frozen: true,
- fixed: true
- },
- {
- label: '挂起环节(挂起人)',
- align: 'center',
- name: 'activityInsName',
- width: 250,
- fixed: true
- },
- { label: '业务编号', align: 'center', name: 'flowCode', width: 250 },
- {
- label: '流程描述',
- align: 'left',
- name: 'DESCRIBTION',
- minWidth: 600
- },
- { label: '流程名称', align: 'left', name: 'flowName', width: 130 },
- { label: '挂起时间', align: 'center', name: 'hangUpTime', width: 160 },
- {
- label: '解挂后截止时间',
- align: 'center',
- name: 'shouldFinishDate',
- width: 190,
- formatter(row: any, column: any, cellValue: any, index: number) {
- if (cellValue) {
- return formatDate(cellValue)
- }
- }
- }
- ],
- //作废
- '160': [
- {
- label: '操作',
- name: 'action',
- width: 320,
- frozen: true,
- fixed: true
- },
- { label: '作废人', align: 'center', name: 'nullyUserName', width: 200 },
- { label: '业务编号', align: 'center', name: 'flowCode', width: 250 },
- {
- label: '流程描述',
- align: 'left',
- name: 'DESCRIBTION',
- minWidth: 600
- },
- { label: '流程名称', align: 'left', name: 'flowName', width: 130 },
- {
- label: '作废时间',
- align: 'center',
- name: 'nullyTime',
- width: 190,
- formatter(row: any, column: any, cellValue: any, index: number) {
- if (cellValue) {
- return formatDate(cellValue)
- }
- }
- }
- ]
- }
|