| | |
| | | if (status == '异常') { |
| | | color = 'red'; |
| | | text = status; |
| | | } else if (status == '修改') { |
| | | color = 'yellow'; |
| | | } else if (status == '更新') { |
| | | color = 'orange'; |
| | | text = status; |
| | | } else { |
| | | text = status; |
| | |
| | | }, |
| | | }, |
| | | { |
| | | title: '处理结果', |
| | | title: '处理提示', |
| | | dataIndex: 'VALIDATION_RESULT', |
| | | ifShow: true, |
| | | width: 280, |
| | |
| | | var color = 'green'; |
| | | if (status == '异常') { |
| | | color = 'red'; |
| | | } else if (status == '修改') { |
| | | color = 'yellow'; |
| | | } else if (status == '更新') { |
| | | color = 'orange'; |
| | | } |
| | | return h(Tooltip, { title: text }, () => h(Tag, { color: color }, () => text)); |
| | | }, |