qcp QCP pad
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.
 
 
 
 
 

208 lines
6.4 KiB

// 性别列表
export const GENDER_LIST = [
{ text: '男', value: 0 },
{ text: '女', value: 1 },
]
/**
* 根据value获取text 性别
* @param {number} code gender value
* @return {string | undefined} 男/女
*/
export function GET_GENDER_TEXT_BY_CODE(code: number | undefined): string | undefined {
if (!code) return ''
const target = GENDER_LIST.find(item => item.value === code)
return target?.text
}
// 急救状态
export const AID_STATUS = { 0: '创建', 1: '待审核', 2: '审核通过', 3: '审核拒绝' }
// 平车状态
export const CAR_STATUS = { 0: '离线', 1: '在线' }
// 疑似诊断
export const FIRST_AID_ZL_TYPE = [
{ value: 0, text: 'AS急性脑卒中' },
{ value: 1, text: 'AMI急性心肌梗死' },
{ value: 2, text: 'ATI急性创伤' },
{ value: 3, text: 'AGB急性消化道出血' },
]
// 是否发病时间已知
export const fbTimeKnown = [
{ value: '已知', text: '已知' },
{ value: '未知', text: '未知' },
{ value: '醒后卒中', text: '醒后卒中' },
]
// 初步判断
export const CHU_BU_PAN_DUAN = [
{ value: '缺血性脑卒中', text: '缺血性脑卒中' },
{ value: '出血性脑卒中', text: '出血性脑卒中' },
{ value: '短暂性脑缺血发作', text: '短暂性脑缺血发作' },
{ value: '其他', text: '其他' },
]
// mrs
export const MRS_LIST = [
{ value: '0', text: '完全无症状(0分)' },
{ value: '1', text: '尽管有症状,但无明显功能障碍,能完成所有日常工作和生活(1分)' },
{ value: '2', text: '轻度残疾,不能完成病前所有活动,但不需帮助能照料自己的日常事务(2分)' },
{ value: '3', text: '中度残疾,需部分帮助,但能独立行走(3分)' },
{ value: '4', text: '中重度残疾,不能独立行走,日常生活需别人帮助(4分)' },
{ value: '5', text: '重度残疾,卧床,二便失禁,日常生活完全依赖他人(5分)' },
]
// nihss
export const NIHSS_LIST = [
{
text: '1a.意识水平',
description:
'即使不能全面评价 (如气管插管、语言障碍、气管创伤及绷带包扎等),检查者也必须选择1个反应。只在患者对有害刺激无反应时 (不是反射)才能记录3分',
value: 0,
range: [
{ value: 0, text: '清醒,反应灵敏(0分)' },
{ value: 1, text: '嗜睡,轻微刺激能唤醒,可回答问题,执行指令' },
{ value: 2, text: '昏睡或反应迟钝,需反复刺激强烈或疼痛刺激才有非刻板的反应' },
{ value: 3, text: '昏迷,仅有反射性活动或自发性反应或完全无反应、软瘫、无反射' },
],
},
{
text: '1b.意识水平提问',
description:
'月份、年龄。仅对初次回答评分。失语和昏迷者不能理解问题记2分,因气管插管、气管创伤、严重构音障碍、语言障碍或其他任何原因不能完成者(非失语所致)记1分。可书面回答',
value: 0,
range: [
{ value: 0, text: '两项均正确' },
{ value: 1, text: '一项正确' },
{ value: 2, text: '两项均不正确' },
],
},
{
text: '1c.意识水平指令',
description:
'睁闭眼;非瘫痪侧握拳松开。仅对最初反应评分,有明确努力但未完成的也给分。若对指令无反应,用动作示意,然后记录评分。对创伤、截肢或其他生理缺陷者,应予适当的指令',
value: 0,
range: [
{ value: 0, text: '两项均正确' },
{ value: 1, text: '一项正确' },
{ value: 2, text: '两项均不正确' },
],
},
{
text: '2.凝视',
description:
'只测试水平眼球运动。对随意或反射性眼球运动计分。若眼球偏斜能被随意或反射性活动纠正,记1分。若为孤立的周围性眼肌麻痹记1分。对失语者,凝视是可以测试的。对眼球创伤、绷带包扎、盲人或有其他视力、视野障碍者,由检查者选择一种反射性运动来测试,确定眼球的联系,然后从一侧向另一侧运动,偶尔能发现部分性凝视麻痹。',
value: 0,
range: [
{ value: 0, text: '正常' },
{ value: 1, text: '部分凝视麻痹(单眼或双眼凝视异常,但无强迫凝视或全凝视麻痹)' },
{ value: 2, text: '强迫凝视或完全凝视麻痹(不能被头眼反射克服)' },
],
},
{
text: '3.视野',
description: '描述',
value: 0,
range: [
{ value: 0, text: '0' },
{ value: 1, text: '1' },
{ value: 2, text: '2' },
{ value: 3, text: '3' },
],
},
{
text: '4.面瘫',
description: '',
value: 0,
range: [
{ value: 0, text: '0' },
{ value: 1, text: '1' },
{ value: 2, text: '2' },
{ value: 3, text: '3' },
],
},
{
text: '5.上肢运动',
description: '描述',
value: 0,
range: [
{ value: 0, text: '0' },
{ value: 1, text: '1' },
{ value: 2, text: '2' },
{ value: 3, text: '3' },
{ value: 4, text: '4' },
{ value: 9, text: '9' },
],
},
{
text: '6.下肢运动',
description: '描述',
value: 0,
range: [
{ value: 0, text: '0' },
{ value: 1, text: '1' },
{ value: 2, text: '2' },
{ value: 3, text: '3' },
{ value: 4, text: '4' },
{ value: 9, text: '9' },
],
},
{
text: '7.肢体共济失调',
description: '描述',
value: 0,
range: [
{ value: 0, text: '0' },
{ value: 1, text: '1' },
{ value: 2, text: '2' },
{ value: 3, text: '3' },
],
},
{
text: '8.感觉',
description: '描述',
value: 0,
range: [
{ value: 0, text: '0' },
{ value: 1, text: '1' },
{ value: 2, text: '2' },
{ value: 3, text: '3' },
],
},
{
text: '9.语言',
description: '描述',
value: 0,
range: [
{ value: 0, text: '0' },
{ value: 1, text: '1' },
{ value: 2, text: '2' },
{ value: 3, text: '3' },
],
},
{
text: '10.构音障碍',
description: '描述',
value: 0,
range: [
{ value: 0, text: '0' },
{ value: 1, text: '1' },
{ value: 2, text: '2' },
{ value: 3, text: '3' },
],
},
{
text: '11.忽视',
description: '描述',
value: 0,
range: [
{ value: 0, text: '0' },
{ value: 1, text: '1' },
{ value: 2, text: '2' },
{ value: 3, text: '3' },
],
},
]