You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1001 B
19 lines
1001 B
export const information = [
|
|
[
|
|
{ title: '身高 cm', name: 'RYPG-height', type: 'heath', value: '' },
|
|
{ title: '体重 kg', name: 'RYPG-weight', type: 'heath', value: '' },
|
|
{ title: 'BMI(系统自动计算)', name: 'RYPG-bmi', type: 'heaths', value: '' },
|
|
],
|
|
[
|
|
{ title: '收缩压 mmHg', name: 'RYPG-systolicPressure', type: 'heath', value: '' },
|
|
{ title: '舒张压 mmHg', name: 'RYPG-diastolicPressure', type: 'heath', value: '' },
|
|
{ title: '脉搏 次/分', name: 'RYPG-pulse', type: 'heath', value: '' },
|
|
{ title: '快速血糖 mmol/L', name: 'RYPG-bloodGlucose', type: 'heath', value: '' },
|
|
],
|
|
[
|
|
{ title: '本次入院mRS评分', name: 'RYPG-mRSScore', type: 'heath', value: '' },
|
|
{ title: '本次入院NIHSS评分', name: 'RYPG-NIHSSScore', type: 'heath', value: '' },
|
|
{ title: '吞咽功能', name: 'RYPG-swallowingFunction', type: 'radio', value: null },
|
|
],
|
|
[{ title: '既往病史', name: 'RYPG-medicalHistory', type: 'radios' }],
|
|
];
|
|
|