微调
This commit is contained in:
@@ -4,33 +4,152 @@ const errordata = ref<ErrorSystem.ErrorSystemList[]>([
|
||||
{
|
||||
'id': '1',
|
||||
'name': 'Q/GDW 1650.2- 2016',
|
||||
'publishTime':'',
|
||||
'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' },
|
||||
],
|
||||
'state':'',
|
||||
},
|
||||
{
|
||||
'id': '2',
|
||||
'name': 'Q/GDW 10650.2 - 2021',
|
||||
'publishTime':'',
|
||||
'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' },
|
||||
],
|
||||
'state':'',
|
||||
},
|
||||
{
|
||||
'id': '3',
|
||||
'name': 'GBT 19862 - 2016',
|
||||
'publishTime':'',
|
||||
'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' },
|
||||
],
|
||||
'state':'',
|
||||
|
||||
},
|
||||
])
|
||||
|
||||
export default errordata
|
||||
const errordetail = ref<ErrorSystem.ErrorSystemDetail[]>([
|
||||
{
|
||||
measured: '电压',
|
||||
deviceLevel: 'A',
|
||||
condition: '10%~150%标称电压',
|
||||
maxErrorValue: '±0.1%Un'
|
||||
},
|
||||
{
|
||||
measured: '频率',
|
||||
deviceLevel: 'A',
|
||||
condition: '42.5~57.5 Hz',
|
||||
maxErrorValue: '±0.01Hz'
|
||||
},
|
||||
{
|
||||
measured: '电压三相不平衡度',
|
||||
deviceLevel: 'A',
|
||||
condition: '0.5%~5%',
|
||||
maxErrorValue: '±0.15%'
|
||||
},
|
||||
{
|
||||
measured: '电压三相不平衡度',
|
||||
deviceLevel: 'A',
|
||||
condition: '5%(不包含)~ 40%',
|
||||
maxErrorValue: '±0.3%'
|
||||
},
|
||||
{
|
||||
measured: '电流三相不平衡度',
|
||||
deviceLevel: 'A',
|
||||
condition: '',
|
||||
maxErrorValue: '±1%'
|
||||
},
|
||||
{
|
||||
measured: '短时闪变',
|
||||
deviceLevel: 'A',
|
||||
condition: 'Pst:0.2~10',
|
||||
maxErrorValue: '±5%'
|
||||
},
|
||||
{
|
||||
measured: '谐波电压',
|
||||
deviceLevel: 'A',
|
||||
condition: 'Uh≥1%Un',
|
||||
maxErrorValue: '±5%Uh'
|
||||
},
|
||||
{
|
||||
measured: '谐波电压',
|
||||
deviceLevel: 'A',
|
||||
condition: 'Uh<1%Un',
|
||||
maxErrorValue: '±0.05%Un'
|
||||
},
|
||||
{
|
||||
measured: '谐波电流',
|
||||
deviceLevel: 'A',
|
||||
condition: 'In≥3%In',
|
||||
maxErrorValue: '±5%Ih'
|
||||
},
|
||||
{
|
||||
measured: '谐波电流',
|
||||
deviceLevel: 'A',
|
||||
condition: 'In<3%In',
|
||||
maxErrorValue: '±0.15%In'
|
||||
},
|
||||
{
|
||||
measured: '谐波功率',
|
||||
deviceLevel: 'A',
|
||||
condition: 'Ph≥150W',
|
||||
maxErrorValue: '±1%Ph'
|
||||
},
|
||||
{
|
||||
measured: '谐波功率',
|
||||
deviceLevel: 'A',
|
||||
condition: 'Ph<150W',
|
||||
maxErrorValue: '±1.5W'
|
||||
},
|
||||
{
|
||||
measured: '间谐波电压',
|
||||
deviceLevel: 'A',
|
||||
condition: 'Uh≥1%Un',
|
||||
maxErrorValue: '±5%Uh'
|
||||
},
|
||||
{
|
||||
measured: '间谐波电压',
|
||||
deviceLevel: 'A',
|
||||
condition: 'Uh<1%Un',
|
||||
maxErrorValue: '±0.05%Un'
|
||||
},
|
||||
{
|
||||
measured: '间谐波电流',
|
||||
deviceLevel: 'A',
|
||||
condition: 'In≥3%In',
|
||||
maxErrorValue: '±5%Ih'
|
||||
},
|
||||
{
|
||||
measured: '间谐波电流',
|
||||
deviceLevel: 'A',
|
||||
condition: 'In<3%In',
|
||||
maxErrorValue: '±0.15%In'
|
||||
},
|
||||
{
|
||||
measured: '电流',
|
||||
deviceLevel: 'A',
|
||||
condition: 'I≥0.05In',
|
||||
maxErrorValue: '±0.5%'
|
||||
},
|
||||
{
|
||||
measured: '电流',
|
||||
deviceLevel: 'A',
|
||||
condition: '0.01In≤I<0.05In',
|
||||
maxErrorValue: '±1%'
|
||||
},
|
||||
{
|
||||
measured: '暂态幅值',
|
||||
deviceLevel: 'A',
|
||||
condition: '',
|
||||
maxErrorValue: '±0.2%Un'
|
||||
},
|
||||
{
|
||||
measured: '暂态时间',
|
||||
deviceLevel: 'A',
|
||||
condition: '',
|
||||
maxErrorValue: '±1周波'
|
||||
},
|
||||
])
|
||||
|
||||
|
||||
export default {errordata,errordetail}
|
||||
@@ -4,14 +4,18 @@ export namespace ErrorSystem {
|
||||
export interface ErrorSystemList {
|
||||
id: string;//误差体系表Id
|
||||
name: string;//误差体系名称
|
||||
publishTime:string;//发布时间
|
||||
year:string;//标准实施年份
|
||||
level:string;//使用设备等级
|
||||
details?: Array<{
|
||||
measured: string;//被测量
|
||||
deviceLevel: string;//检测装置级别
|
||||
condition: string;//测量条件
|
||||
maxErrorValue: string;//最大误差
|
||||
}>; // 详细信息
|
||||
state:string;//状态
|
||||
}
|
||||
|
||||
|
||||
// 查看详细误差体系
|
||||
export interface ErrorSystemDetail {
|
||||
measured: string;//被测量
|
||||
deviceLevel: string;//检测装置级别
|
||||
condition: string;//测量条件
|
||||
maxErrorValue: string;//最大误差
|
||||
}
|
||||
}
|
||||
@@ -223,7 +223,7 @@ const resourcedata = ref<Resource.ResResourceList[]>([
|
||||
'name': '普通表格',
|
||||
|
||||
'path':'/plan/planList/index',
|
||||
'sort':71,
|
||||
'sort':100,
|
||||
'type':'菜单',
|
||||
'remark':'检测计划描述',
|
||||
'route_Name':'route',
|
||||
@@ -235,7 +235,7 @@ const resourcedata = ref<Resource.ResResourceList[]>([
|
||||
'name': '表格树',
|
||||
|
||||
'path':'/plan/planList/index',
|
||||
'sort':72,
|
||||
'sort':100,
|
||||
'type':'菜单',
|
||||
'remark':'检测计划描述',
|
||||
'route_Name':'route',
|
||||
|
||||
Reference in New Issue
Block a user