data.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. module.exports.DoctorList = [
  2. {
  3. "objectId": "doc001",
  4. "name": "张伟",
  5. "title": "主任医师",
  6. "desc": "拥有20年内科临床经验,擅长心血管疾病的治疗",
  7. "gender": "男",
  8. "age": 45,
  9. "specialty": "内科",
  10. "qualifications": ["医学博士,内科专科医生"],
  11. "depart": {
  12. "objectId": "dept001"
  13. }
  14. },
  15. {
  16. "objectId": "doc002",
  17. "avatar":"https://nova-cloud.obs.cn-south-1.myhuaweicloud.com/storage/aigc/imagine/Q4Zif7fTbK-0.png",
  18. "name": "李娜",
  19. "title": "主任医师",
  20. "desc": "外科领域专家,擅长微创手术",
  21. "gender": "女",
  22. "age": 50,
  23. "specialty": "外科",
  24. "qualifications": ["外科专科医生,硕士研究生"],
  25. "depart": {
  26. "objectId": "dept002"
  27. }
  28. },
  29. {
  30. "objectId": "doc003",
  31. "name": "王芳",
  32. "title": "主任医师",
  33. "desc": "儿童健康专家,擅长儿童生长发育",
  34. "gender": "女",
  35. "age": 40,
  36. "specialty": "儿科",
  37. "qualifications": ["儿科专科医生,医学硕士"],
  38. "depart": {
  39. "objectId": "dept003"
  40. }
  41. },
  42. {
  43. "objectId": "doc004",
  44. "name": "刘强",
  45. "title": "主任医师",
  46. "desc": "妇产科专家,专注于高危妊娠管理",
  47. "gender": "男",
  48. "age": 48,
  49. "specialty": "妇产科",
  50. "qualifications": ["妇产科专科医生,博士研究生"],
  51. "depart": {
  52. "objectId": "dept004"
  53. }
  54. },
  55. {
  56. "objectId": "doc005",
  57. "name": "陈静",
  58. "title": "主任医师",
  59. "desc": "神经科专家,擅长癫痫和头痛的治疗",
  60. "gender": "女",
  61. "age": 42,
  62. "specialty": "神经科",
  63. "qualifications": ["神经科专科医生,医学博士"],
  64. "depart": {
  65. "objectId": "dept005"
  66. }
  67. },
  68. {
  69. "objectId": "qwdoc001",
  70. "name": "余海涛",
  71. "title": "主任医师",
  72. "desc": "中医药科专家,擅长用中药调养身体来根治病症",
  73. "gender": "男",
  74. "age": 20,
  75. "specialty": "中医药科",
  76. "qualifications": ["中医药科专科医生,医学博士"],
  77. "depart": {
  78. "objectId": "dept006"
  79. }
  80. },
  81. {
  82. "objectId": "qwdoc002",
  83. "name": "聂翼伏",
  84. "title": "副主任医师",
  85. "desc": "骨科专家,擅长治疗各种骨骼损伤症状",
  86. "gender": "男",
  87. "age": 22,
  88. "specialty": "骨科",
  89. "qualifications": ["骨科专科医生,医学硕士"],
  90. "depart": {
  91. "objectId": "dept001"
  92. }
  93. },
  94. {
  95. "objectId": "qwdoc003",
  96. "name": "徐君豪",
  97. "title": "主治医师",
  98. "desc": "心理专家,擅长解决各类心理问题和疾病",
  99. "gender": "男",
  100. "age": 21,
  101. "specialty": "心理科",
  102. "qualifications": ["心理科专科医生,心理学博士"],
  103. "depart": {
  104. "objectId": "dept007"
  105. }
  106. },
  107. ]
  108. module.exports.DepartList = [
  109. {
  110. "objectId": "dept001",
  111. "name": "内科",
  112. "desc": "负责内科疾病的诊断和治疗"
  113. },
  114. {
  115. "objectId": "dept002",
  116. "name": "外科",
  117. "desc": "负责外科手术和相关疾病的治疗"
  118. },
  119. {
  120. "objectId": "dept003",
  121. "name": "儿科",
  122. "desc": "专注于儿童疾病的预防和治疗"
  123. },
  124. {
  125. "objectId": "dept004",
  126. "name": "妇产科",
  127. "desc": "负责女性生殖系统及相关疾病的治疗"
  128. },
  129. {
  130. "objectId": "dept005",
  131. "name": "神经科",
  132. "desc": "专注于神经系统疾病的诊断和治疗"
  133. },
  134. {
  135. "objectId": "dept006",
  136. "name": "中医科",
  137. "desc": "专注于中医领域的针灸等治疗手法和草药养身的理念"
  138. },
  139. {
  140. "objectId": "dept007",
  141. "name": "心理科",
  142. "desc": "专注于异常心理活动的预防和治疗"
  143. }
  144. ]
  145. // tab2 / 热点数据
  146. module.exports.HotDotList = [
  147. {
  148. "objectId": "001",
  149. "category": "HotDot",
  150. "image": "https://ts1.cn.mm.bing.net/th/id/R-C.604489b58d051acbf08b082baed5240b?rik=2wfk1JgczvfOQw&riu=http%3a%2f%2fpsy.china.com.cn%2fpic%2f2023-09%2f05%2f22937582-f9a1-4bfd-8f19-cc0d7369ac02.jpg&ehk=cN5yrGkIBYJHeeT8KaPLeUcl5XmS5rnUh2pSPyVqdjM%3d&risl=&pid=ImgRaw&r=0",
  151. "title": "如何保持心理健康",
  152. "content": "在现代社会中,保持心理健康变得尤为重要。本文将探讨一些有效的方法来管理压力和焦虑。",
  153. "topic": "心理健康",
  154. "date": "2024-12-14T10:00:00Z",
  155. "author": ["张伟", "李娜"],
  156. "views": 1500,
  157. "likes": 250,
  158. },
  159. {
  160. "objectId": "002",
  161. "category": "HotDot",
  162. "image": "https://tse3-mm.cn.bing.net/th/id/OIP-C.C39QnSPshcJxgj1efBr75QHaFp?w=226&h=180&c=7&r=0&o=5&dpr=1.5&pid=1.7",
  163. "title": "冬季养生:如何增强免疫力",
  164. "content": "冬季是流感和感冒的高发季节,本文提供一些增强免疫力的建议,包括饮食和生活习惯的调整。",
  165. "topic": "健康养生",
  166. "date": "2024-12-13T14:30:00Z",
  167. "author": ["王芳"],
  168. "views": 2300,
  169. "likes": 400,
  170. },
  171. {
  172. "objectId": "003",
  173. "category": "HotDot",
  174. "image": "https://img-s-msn-com.akamaized.net/tenant/amp/entityid/AA1vwPs7.img?w=640&h=426&m=6",
  175. "title": "运动与健康:每周锻炼的益处",
  176. "content": "定期锻炼对身体健康至关重要。本文将讨论每周锻炼的多重好处,以及如何制定适合自己的运动计划。",
  177. "topic": "运动健康",
  178. "date": "2024-12-12T09:15:00Z",
  179. "author": ["赵强", "刘洋"],
  180. "views": 1800,
  181. "likes": 320,
  182. },
  183. {
  184. "objectId": "004",
  185. "category": "HotDot",
  186. "image": "https://th.bing.com/th?&id=OVP.Xw33st6_8Ujcv6teydlQDwEsC7&w=285&h=160&c=7&pid=2.1&rs=1",
  187. "title": "饮食与心理:食物如何影响情绪",
  188. "content": "我们的饮食习惯与心理健康息息相关。本文探讨了哪些食物可以改善情绪,哪些应尽量避免。",
  189. "topic": "饮食心理",
  190. "date": "2024-12-11T11:45:00Z",
  191. "author": ["陈刚"],
  192. "views": 1200,
  193. "likes": 210,
  194. },
  195. {
  196. "objectId": "005",
  197. "category": "HotDot",
  198. "image": "https://tse3-mm.cn.bing.net/th/id/OIP-C._S3n4LWflXFG5drI2J8kywHaE8?w=288&h=192&c=7&r=0&o=5&dpr=1.5&pid=1.7",
  199. "title": "老年人的健康管理",
  200. "content": "随着年龄的增长,健康管理变得尤为重要。本文将介绍老年人应注意的健康问题及管理策略。",
  201. "topic": "老年健康",
  202. "date": "2024-12-10T08:30:00Z",
  203. "author": ["李静", "王平"],
  204. "views": 900,
  205. "likes": 150,
  206. },
  207. {
  208. "objectId": "006",
  209. "category": "MaleHealth",
  210. "image": "https://example.com/malehealth1.jpg",
  211. "title": "男性健康:如何管理压力",
  212. "content": "男性在生活和工作中面临着各种压力,如何有效管理这些压力是保持身心健康的关键。本文提供了一些实用的方法和技巧。",
  213. "topic": "心理健康",
  214. "date": "2024-12-14T10:00:00Z",
  215. "author": ["张伟", "李强"],
  216. "views": 1200,
  217. "likes": 300
  218. },
  219. {
  220. "objectId": "007",
  221. "category": "MaleHealth",
  222. "image": "https://example.com/malehealth2.jpg",
  223. "title": "提升男性生育力的饮食建议",
  224. "content": "饮食对男性的生育力有着重要影响。本文将介绍一些有助于提高生育力的食物,以及应避免的饮食习惯。",
  225. "topic": "生育健康",
  226. "date": "2024-12-13T14:30:00Z",
  227. "author": ["王芳"],
  228. "views": 1800,
  229. "likes": 450
  230. },
  231. {
  232. "objectId": "008",
  233. "category": "MaleHealth",
  234. "image": "https://example.com/malehealth3.jpg",
  235. "title": "男性如何应对性功能障碍",
  236. "content": "性功能障碍是许多男性面临的问题。本文将探讨其可能的原因及有效的应对策略,包括心理咨询和医疗建议。",
  237. "topic": "性健康",
  238. "date": "2024-12-12T09:15:00Z",
  239. "author": ["赵强", "刘洋"],
  240. "views": 2200,
  241. "likes": 500
  242. },
  243. {
  244. "objectId": "009",
  245. "category": "MaleHealth",
  246. "image": "https://example.com/malehealth4.jpg",
  247. "title": "男性学习:如何提高注意力",
  248. "content": "在快节奏的生活中,男性如何提高注意力和学习效率是一个重要课题。本文将分享一些提高注意力的技巧和方法。",
  249. "topic": "学习与成长",
  250. "date": "2024-12-11T11:45:00Z",
  251. "author": ["陈刚"],
  252. "views": 1500,
  253. "likes": 320
  254. },
  255. {
  256. "objectId": "010",
  257. "category": "MaleHealth",
  258. "image": "https://example.com/malehealth5.jpg",
  259. "title": "男性的健康体检:你需要知道的",
  260. "content": "定期体检对男性健康至关重要。本文将介绍男性在不同年龄阶段应关注的健���检查项目及其重要性。",
  261. "topic": "健康管理",
  262. "date": "2024-12-10T08:30:00Z",
  263. "author": ["李静", "王平"],
  264. "views": 900,
  265. "likes": 200
  266. },
  267. {
  268. "objectId": "011",
  269. "category": "FemaleHealth",
  270. "image": "https://example.com/femalehealth1.jpg",
  271. "title": "女性健康:月经周期的管理",
  272. "content": "了解和管理月经周期对女性健康至关重要。本文将探讨如何更好地理解月经周期及其对身体的影响。",
  273. "topic": "生理健康",
  274. "date": "2024-12-14T10:00:00Z",
  275. "author": ["张伟", "李娜"],
  276. "views": 1400,
  277. "likes": 280
  278. },
  279. {
  280. "objectId": "012",
  281. "category": "FemaleHealth",
  282. "image": "https://example.com/femalehealth2.jpg",
  283. "title": "女性心理健康:应对焦虑与压力",
  284. "content": "女性在生活中常常面临各种压力,了解应对焦虑的方法非常重要。本文将提供实用的建议,帮助女性管理心理健康。",
  285. "topic": "心理健康",
  286. "date": "2024-12-13T14:30:00Z",
  287. "author": ["王芳"],
  288. "views": 2200,
  289. "likes": 450
  290. },
  291. {
  292. "objectId": "013",
  293. "category": "FemaleHealth",
  294. "image": "https://example.com/femalehealth3.jpg",
  295. "title": "孕期保健:健康饮食与锻炼",
  296. "content": "孕期是女性生命中重要的阶段,合理的饮食与适当的锻炼对母婴健康至关重要。本文将介绍孕期的饮食和锻炼建议。",
  297. "topic": "孕产健康",
  298. "date": "2024-12-12T09:15:00Z",
  299. "author": ["赵强", "陈刚"],
  300. "views": 1800,
  301. "likes": 320
  302. },
  303. {
  304. "objectId": "014",
  305. "category": "FemaleHealth",
  306. "image": "https://example.com/femalehealth4.jpg",
  307. "title": "女性生育力与年龄的关系",
  308. "content": "女性的生育力与年龄密切相关。本文将探讨年龄对生育力的影响以及如何在不同年龄段保持生育健康。",
  309. "topic": "生育健康",
  310. "date": "2024-12-11T11:45:00Z",
  311. "author": ["李静"],
  312. "views": 1500,
  313. "likes": 210
  314. },
  315. {
  316. "objectId": "015",
  317. "category": "FemaleHealth",
  318. "image": "https://example.com/femalehealth5.jpg",
  319. "title": "女性职场中的心理健康",
  320. "content": "在职场中,女性常常面临独特的挑战。本文将探讨如何在职场中维护心理健康,提升工作效率。",
  321. "topic": "职场心理",
  322. "date": "2024-12-10T08:30:00Z",
  323. "author": ["王平", "李强"],
  324. "views": 1600,
  325. "likes": 250
  326. }
  327. ]