diff --git a/web/air/src/components/LogsTable.js b/web/air/src/components/LogsTable.js
index 004188c3..7d372d49 100644
--- a/web/air/src/components/LogsTable.js
+++ b/web/air/src/components/LogsTable.js
@@ -28,6 +28,8 @@ function renderType(type) {
return 管理 ;
case 4:
return 系统 ;
+ case 5:
+ return 测试 ;
default:
return 未知 ;
}
diff --git a/web/berry/src/views/Log/type/LogType.js b/web/berry/src/views/Log/type/LogType.js
index 4891b66b..23db2766 100644
--- a/web/berry/src/views/Log/type/LogType.js
+++ b/web/berry/src/views/Log/type/LogType.js
@@ -3,7 +3,8 @@ const LOG_TYPE = {
1: { value: '1', text: '充值', color: 'primary' },
2: { value: '2', text: '消费', color: 'orange' },
3: { value: '3', text: '管理', color: 'default' },
- 4: { value: '4', text: '系统', color: 'secondary' }
+ 4: { value: '4', text: '系统', color: 'secondary' },
+ 5: { value: '5', text: '测试', color: 'secondary' },
};
export default LOG_TYPE;