Initial commit: 心理咨询预约系统
PHP 前后端一体:首页咨询师列表、预约表单、管理后台、二维码准入与邮件通知;敏感配置与提交数据通过 .gitignore 排除。 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
12
data/.htaccess
Normal file
12
data/.htaccess
Normal file
@@ -0,0 +1,12 @@
|
||||
<IfModule mod_authz_core.c>
|
||||
<Files "submissions.json">
|
||||
Require all denied
|
||||
</Files>
|
||||
</IfModule>
|
||||
|
||||
<IfModule !mod_authz_core.c>
|
||||
<Files "submissions.json">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
</Files>
|
||||
</IfModule>
|
||||
29
data/doctors.json
Normal file
29
data/doctors.json
Normal file
@@ -0,0 +1,29 @@
|
||||
[
|
||||
{
|
||||
"id": "song",
|
||||
"name": "宋崇升",
|
||||
"avatar": "assets/avatars/song.jpg",
|
||||
"role": "副主任医师",
|
||||
"hospital": "北京回龙观医院",
|
||||
"fields": ["抑郁障碍", "焦虑障碍", "双相情感障碍", "青少年行为情绪障碍", "睡眠障碍等"],
|
||||
"bio": "擅长抑郁障碍、焦虑障碍、双相情感障碍、青少年行为情绪障碍、睡眠障碍等。"
|
||||
},
|
||||
{
|
||||
"id": "zeng",
|
||||
"name": "曾媛",
|
||||
"avatar": "assets/avatars/zeng.jpg",
|
||||
"role": "热门咨询师",
|
||||
"hospital": "上海六一儿童医院",
|
||||
"fields": ["抑郁", "焦虑", "职业关系", "家庭关系", "自我成长", "青少年休学厌学"],
|
||||
"bio": "擅长抑郁、焦虑、职业关系、家庭关系、自我成长、青少年休学厌学。"
|
||||
},
|
||||
{
|
||||
"id": "li",
|
||||
"name": "李相伟",
|
||||
"avatar": "assets/avatars/li.jpg",
|
||||
"role": "热门咨询师",
|
||||
"hospital": "上海市精神卫生中心",
|
||||
"fields": ["焦虑", "抑郁", "两性情感", "家庭及亲密关系", "个人心理成长", "亲子教育等"],
|
||||
"bio": "擅长焦虑、抑郁、两性情感、家庭及亲密关系、个人心理成长、亲子教育等。"
|
||||
}
|
||||
]
|
||||
1
data/submissions.example.json
Normal file
1
data/submissions.example.json
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
||||
8
data/topics.json
Normal file
8
data/topics.json
Normal file
@@ -0,0 +1,8 @@
|
||||
[
|
||||
{ "id": "interpersonal", "label": "人际关系" },
|
||||
{ "id": "emotion", "label": "情绪压力" },
|
||||
{ "id": "career", "label": "职业发展" },
|
||||
{ "id": "family", "label": "家庭婚姻" },
|
||||
{ "id": "adolescent", "label": "青少年成长" },
|
||||
{ "id": "self", "label": "自我探索" }
|
||||
]
|
||||
Reference in New Issue
Block a user