Ben Lin
2025-01-09 7bcfc0507043dc878c801a259aa7d058f4982551
src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO.ts
@@ -100,8 +100,8 @@
                    if (status == '异常') {
                      color = 'red';
                      text = status;
                    } else if (status == '修改') {
                      color = 'yellow';
                    } else if (status == '更新') {
                      color = 'orange';
                      text = status;
                    } else {
                      text = status;
@@ -110,7 +110,7 @@
                  },
                },
                {
                  title: '处理结果',
                  title: '处理提示',
                  dataIndex: 'VALIDATION_RESULT',
                  ifShow: true,
                  width: 280,
@@ -120,8 +120,8 @@
                    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));
                  },