1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| export const constTestType = [
| {
| label: '空载试验',
| value: 'kz',
| route: '/index/windingTest',
| step: true, // 是否有试验步骤
| },
| {
| label: '负载试验',
| value: 'fz',
| route: '/index/noLoadTest',
| step: true, // 是否有试验步骤
| },
| {
| label: '绕阻试验',
| value: 'rz',
| route: '/index/loadTest',
| step: false,
| }
| ];
|
|