whychdw
2021-05-26 c04bbbbe82d0f1ee4bd01ba2ca9f2b3c0b71425e
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,
    }
];