| | |
| | | <el-table-column label="二级主题" prop="categoryName" min-width="60"> </el-table-column> |
| | | <el-table-column label="观察项" prop="problemTitle" min-width="100"> </el-table-column> |
| | | <el-table-column label="不符合原因" prop="eventInfo" min-width="120" /> |
| | | <el-table-column label="处理状态" prop="status" min-width="80"> |
| | | <el-table-column label="状态" prop="status" min-width="80"> |
| | | <template slot-scope="{row}"> |
| | | <!-- <span :class="'statusInfo'+row.status" v-if="row.status ==0">待处理</span>--> |
| | | <span :class="'statusInfo'+row.status" v-if="row.status ==3 ||row.status ==4||row.status ==5">已处理</span> |
| | | <span :class="'statusInfo'+row.status" v-else>处理中</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="statusInfo" label="状态描述" min-width="100px"> |
| | | <template slot-scope="{row}"> |
| | | <span :class="'statusInfo'+row.status" >{{ row.statusName }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作" prop="status" min-width="80"> |
| | |
| | | dataList2: [], |
| | | statusMap: { |
| | | 0: '待分配WTS', |
| | | 1: '待分配任务', |
| | | 2: '待工程师处理', |
| | | 3: '已解决', |
| | | 4: '已解决', |
| | | 5: '已解决' |
| | | 1: '待分配工程师', |
| | | 2: '待分配任务', |
| | | 3: 'SHE关闭', |
| | | 4: 'WTS关闭', |
| | | 5: '工程师关闭' |
| | | }, |
| | | cateList: { |
| | | 0: 'SHE事件工单', |
| | |
| | | |
| | | .modal_wrap { |
| | | display: flex; |
| | | height: 100%; |
| | | height: auto; |
| | | |
| | | .modal_content { |
| | | flex: 1; |
| | |
| | | flex-wrap: wrap; |
| | | .item { |
| | | display: flex; |
| | | width: 30%; |
| | | width: 50%; |
| | | font-size: 14px; |
| | | margin-bottom: 20px; |
| | | |
| | | &:nth-of-type(2n) { |
| | | width: 30%; |
| | | width: 50%; |
| | | } |
| | | |
| | | .label { |
| | | color: #888888; |
| | | width: 100px; |
| | | } |
| | | |
| | | .value { |
| | | width: calc(100% - 100px); |
| | | color: #111111; |
| | | } |
| | | } |