49 lines
1.8 KiB
PHP
49 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: yancheng<cheng@love.xiaoyan.me>
|
|
* Date: 2019/6/19
|
|
* Time: 5:11 PM
|
|
*/
|
|
return [
|
|
'headache' => [
|
|
'title' => '您是否感到头疼不适?',
|
|
'subject' => '头痛',
|
|
'options' => [
|
|
['text' => '无头痛', 'score' => 0],
|
|
['text' => '轻度头痛', 'score' => 1],
|
|
['text' => '重度头痛', 'score' => 2],
|
|
['text' => '严重头痛,丧失活动能力', 'score' => 3],
|
|
]
|
|
],
|
|
'gastrointestinal' => [
|
|
'title' => '您是否感觉到胃肠道不适?',
|
|
'subject' => '胃肠道症状',
|
|
'options' => [
|
|
['text' => '食欲好', 'score' => 0],
|
|
['text' => '食欲不振或恶心', 'score' => 1],
|
|
['text' => '恶心或呕吐(小于等于5次呕吐)', 'score' => 2],
|
|
['text' => '严重恶心或呕吐(大于5次呕吐),丧失活动能力', 'score' => 3],
|
|
]
|
|
],
|
|
'tired' => [
|
|
'title' => '您是否感觉到疲劳或虚弱?',
|
|
'subject' => '劳累或虚弱',
|
|
'options' => [
|
|
['text' => '疲劳或虚弱', 'score' => 0],
|
|
['text' => '轻度疲劳或虚弱', 'score' => 1],
|
|
['text' => '重度疲劳或虚弱', 'score' => 2],
|
|
['text' => '严重疲劳或虚弱,丧失活动能力', 'score' => 3],
|
|
]
|
|
],
|
|
'dizzy' => [
|
|
'title' => '您是否感觉到头晕或眩晕?',
|
|
'subject' => '头晕或眩晕',
|
|
'options' => [
|
|
['text' => '无头晕或眩晕', 'score' => 0],
|
|
['text' => '轻度头晕或眩晕', 'score' => 1],
|
|
['text' => '重度头晕或眩晕', 'score' => 2],
|
|
['text' => '严重头晕或眩晕,丧失活动能力', 'score' => 3],
|
|
]
|
|
],
|
|
]; |