| | |
| | | <div class="h1">{{ cateList[type] }}</div> |
| | | <div class="time">提交时间:{{ info.createDate }}</div> |
| | | </div> |
| | | <div class="right" :class="{ scs: info.status == '4', msg: info.status == '3' }">{{ statusMap[info.status] }}</div> |
| | | <div class="right" :class="{ scs: info.status == '3' || info.status == '4' || info.status == '5', msg: info.status == '6' }">{{statusMap[info.status] }}</div> |
| | | </div> |
| | | <div class="info"> |
| | | <div class="title">访客预约信息</div> |
| | |
| | | title: '工单详情', |
| | | info: {}, |
| | | statusMap: { |
| | | 0: '待审核', |
| | | 1: '处理中', |
| | | 2: '已同意', |
| | | 3: '已拒绝', |
| | | 4: '已取消', |
| | | 0: '待分配WTS', |
| | | 1: '待分配任务', |
| | | 2: '待处理', |
| | | 3: '已解决', |
| | | 4: '已解决', |
| | | 5: '已解决' |
| | | }, |
| | | cateList: { |
| | | 0: 'SHE事件工单', |
| | |
| | | } |
| | | |
| | | |
| | | public interface workOrderStatus{ |
| | | int waitConfirm = 0; |
| | | int waitAllocation = 1; |
| | | int waitDeal = 2; |
| | | int sheClose = 3; |
| | | int wtsClose = 4; |
| | | int close = 5; |
| | | public enum workOrderStatus{ |
| | | waitConfirm( 0, "待分配WTS","待分配WTS",""), |
| | | waitAllocation(1, "待分配任务","待分配任务",""), |
| | | waitDeal(2, "待处理","待处理",""), |
| | | sheClose(3, "已解决","SHE已关闭",""), |
| | | wtsClose(4, "已解决","WTS已关闭",""), |
| | | close(5, "已解决","已解决",""), |
| | | urge (6, "催促","","") |
| | | ; |
| | | |
| | | private int status; |
| | | private String statusInfo; |
| | | private String logTitle; |
| | | private String noticeContent; |
| | | } |
| | | |
| | | |
| | | } |