jiangping
2025-04-10 3fbaa9e04c4721b2adfd6d7a6ca4895571a138a8
代码初始化
已修改2个文件
36 ■■■■■ 文件已修改
admin/src/components/business/OperaWorkorderDetailSheWindow.vue 13 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/src/main/java/com/doumee/core/constants/Constants.java 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/components/business/OperaWorkorderDetailSheWindow.vue
@@ -17,7 +17,7 @@
            <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>
@@ -126,11 +126,12 @@
      title: '工单详情',
      info: {},
      statusMap: {
        0: '待审核',
        1: '处理中',
        2: '已同意',
        3: '已拒绝',
        4: '已取消',
        0: '待分配WTS',
        1: '待分配任务',
        2: '待处理',
        3: '已解决',
        4: '已解决',
        5: '已解决'
      },
      cateList: {
        0: 'SHE事件工单',
server/src/main/java/com/doumee/core/constants/Constants.java
@@ -205,14 +205,19 @@
    }
    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;
    }
}