36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
|
|
import type {ErrorSystem} from "./interface"
|
||
|
|
|
||
|
|
const errordata = ref<ErrorSystem.ErrorSystemList[]>([
|
||
|
|
{
|
||
|
|
'id': '1',
|
||
|
|
'name': 'Q/GDW 1650.2- 2016',
|
||
|
|
'year':'2016',
|
||
|
|
'level':'A级',
|
||
|
|
'details': [
|
||
|
|
{ measured: '详细1-1', deviceLevel: '详细1-2', condition: '详细1-3', maxErrorValue: '详细1-4' },
|
||
|
|
{ measured: '详细1-5', deviceLevel: '详细1-6', condition: '详细1-7', maxErrorValue: '详细1-8' },
|
||
|
|
],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
'id': '2',
|
||
|
|
'name': 'Q/GDW 10650.2 - 2021',
|
||
|
|
'year':'2021',
|
||
|
|
'level':'A级',
|
||
|
|
'details': [
|
||
|
|
{ measured: '详细1-1', deviceLevel: '详细1-2', condition: '详细1-3', maxErrorValue: '详细1-4' },
|
||
|
|
{ measured: '详细1-5', deviceLevel: '详细1-6', condition: '详细1-7', maxErrorValue: '详细1-8' },
|
||
|
|
],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
'id': '3',
|
||
|
|
'name': 'GBT 19862 - 2016',
|
||
|
|
'year':'2016',
|
||
|
|
'level':'A级',
|
||
|
|
'details': [
|
||
|
|
{ measured: '详细1-1', deviceLevel: '详细1-2', condition: '详细1-3', maxErrorValue: '详细1-4' },
|
||
|
|
{ measured: '详细1-5', deviceLevel: '详细1-6', condition: '详细1-7', maxErrorValue: '详细1-8' },
|
||
|
|
],
|
||
|
|
},
|
||
|
|
])
|
||
|
|
|
||
|
|
export default errordata
|