fix: 生产测试单词发送消息数限制为 0~1000

This commit is contained in:
GraceWalk
2022-09-21 16:15:19 +08:00
parent d83d35aee9
commit 30fba21c48

View File

@@ -152,6 +152,7 @@ export const getFormConfig = (params: any) => {
rules: [{ required: true, message: '请输入' }],
attrs: {
min: 0,
max: 1000,
style: { width: 232 },
},
},
@@ -391,7 +392,7 @@ export const getTableColumns = () => {
{
title: 'time',
dataIndex: 'costTimeUnitMs',
width: 60,
width: 100,
},
];
};