questionList.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. var questionList = [
  2. {
  3. label: '(第一次)大便潜血阳性(使用试剂盒化验后填写结果)',
  4. type: 'radio',
  5. options: [
  6. {
  7. label: '阴性',
  8. value: '1'
  9. },
  10. {
  11. label: '阳性',
  12. value: '2'
  13. }
  14. ],
  15. field: 'isHigh1',
  16. required: true
  17. },
  18. {
  19. label: '(第二次)大便潜血阳性(第一次检查后7天再次复查,结果更准确,非必填)',
  20. type: 'radio',
  21. options: [
  22. {
  23. label: '阴性',
  24. value: '1'
  25. },
  26. {
  27. label: '阳性',
  28. value: '2'
  29. }
  30. ],
  31. field: 'isHigh2'
  32. },
  33. {
  34. label: '社区名称',
  35. type: 'input',
  36. field: 'belongCommunity',
  37. required: true
  38. },
  39. {
  40. label: '医生姓名',
  41. type: 'input',
  42. field: 'doctorName',
  43. required: true
  44. },
  45. {
  46. label: '医生电话',
  47. type: 'input',
  48. field: 'doctorPhoneNo',
  49. required: true
  50. },
  51. {
  52. label: '申请单号',
  53. type: 'input',
  54. field: 'applyNo'
  55. },
  56. {
  57. label: '用户姓名',
  58. type: 'input',
  59. field: 'userName',
  60. required: true
  61. },
  62. {
  63. label: '证件类型',
  64. type: 'input',
  65. field: 'idNoType',
  66. required: true
  67. },
  68. {
  69. label: '身份证号',
  70. type: 'input',
  71. field: 'idNo',
  72. required: true
  73. },
  74. {
  75. label: '手机',
  76. type: 'input',
  77. field: 'phoneNo',
  78. required: true
  79. },
  80. {
  81. label: '年龄',
  82. type: 'input',
  83. field: 'age',
  84. required: true
  85. },
  86. {
  87. label: '性别',
  88. type: 'radio',
  89. field: 'sex',
  90. required: true,
  91. options: [
  92. {
  93. label: '男',
  94. value: '1'
  95. },
  96. {
  97. label: '女',
  98. value: '2'
  99. }
  100. ]
  101. },
  102. {
  103. label: '户籍省市区',
  104. type: 'input',
  105. field: 'hujiAddress',
  106. required: true
  107. },
  108. {
  109. label: '户籍街道地址',
  110. type: 'input',
  111. field: 'hujiAddressJiedao',
  112. required: true
  113. },
  114. {
  115. label: '居住省市区',
  116. type: 'input',
  117. field: 'juzhuAddress',
  118. required: true
  119. },
  120. {
  121. label: '居住街道地址',
  122. type: 'input',
  123. field: 'juzhuAddressJiedao',
  124. required: true
  125. },
  126. {
  127. label: '婚姻状况',
  128. type: 'radio',
  129. options: [],
  130. field: 'isMerge',
  131. required: true
  132. },
  133. {
  134. label: '文化程度',
  135. type: 'radio',
  136. options: [],
  137. field: 'eduState',
  138. required: true
  139. },
  140. {
  141. label: '工作状况',
  142. type: 'radio',
  143. options: [],
  144. field: 'jobState',
  145. required: true
  146. },
  147. {
  148. label: '服用抗栓药物',
  149. type: 'radio',
  150. options: [
  151. {
  152. label: '有',
  153. value: '1'
  154. },
  155. {
  156. label: '无',
  157. value: '2'
  158. }
  159. ],
  160. field: 'isFuyongks',
  161. required: true
  162. },
  163. {
  164. label: '抗栓药物名称',
  165. type: 'checkbox',
  166. options: [],
  167. field: 'ksDrugName1'
  168. },
  169. {
  170. label: '抗栓药物其他名称',
  171. type: 'input',
  172. field: 'ksDrugName'
  173. },
  174. {
  175. label: '本人有癌症史',
  176. type: 'radio',
  177. field: 'isCancerHistory',
  178. options: [
  179. {
  180. label: '有',
  181. value: '1'
  182. },
  183. {
  184. label: '无',
  185. value: '2'
  186. },
  187. {
  188. label: '不详',
  189. value: '3'
  190. }
  191. ],
  192. required: true
  193. },
  194. {
  195. label: '癌症类型或名称',
  196. type: 'input',
  197. field: 'cancerType',
  198. required: true
  199. },
  200. {
  201. label: '是否做过胃肠镜检查',
  202. type: 'radio',
  203. field: 'isEndoscopy',
  204. required: true,
  205. options: [
  206. {
  207. label: '是',
  208. value: '1'
  209. },
  210. {
  211. label: '否',
  212. value: '2'
  213. },
  214. ]
  215. },
  216. {
  217. label: '做胃肠镜检查时间',
  218. type: 'input',
  219. field: 'endoscopyTime'
  220. },
  221. {
  222. label: '胃肠镜检查结果',
  223. type: 'input',
  224. field: 'endoscopyResult'
  225. },
  226. {
  227. label: '胃肠镜检查医院',
  228. type: 'input',
  229. field: 'endoscopyHospitalName'
  230. },
  231. {
  232. label: '本人有无肠息肉史',
  233. type: 'radio',
  234. field: 'isCxrHistory',
  235. required: true,
  236. options: [
  237. {
  238. label: '有',
  239. value: '1'
  240. },
  241. {
  242. label: '无',
  243. value: '2'
  244. },
  245. {
  246. label: '不详',
  247. value: '3'
  248. },
  249. ]
  250. },
  251. {
  252. label: '一级亲属有结直肠癌病史(如:父母、兄弟姐妹、子女)',
  253. type: 'radio',
  254. field: 'relativeAizHistory',
  255. required: true,
  256. options: [
  257. {
  258. label: '有',
  259. value: '1'
  260. },
  261. {
  262. label: '无',
  263. value: '2'
  264. },
  265. {
  266. label: '不详',
  267. value: '3'
  268. },
  269. ]
  270. },
  271. {
  272. label: '有无以下任意2项:慢性腹泻、慢性便秘、粘液血便、慢性阑尾炎或阑尾切除史、慢性胆囊炎或胆囊切除史、长期精神压抑',
  273. type:'radio',
  274. field: 'isMangxibing',
  275. required: true,
  276. options: [
  277. {
  278. label: '有',
  279. value: '1'
  280. },
  281. {
  282. label: '无',
  283. value: '2'
  284. },
  285. {
  286. label: '不详',
  287. value: '3'
  288. },
  289. ]
  290. },
  291. {
  292. label: '填写人签名',
  293. type:'input',
  294. field: 'signName',
  295. required: true
  296. },
  297. {
  298. label: '与被筛查人关系',
  299. type:'input',
  300. field: 'relations',
  301. required: true
  302. },
  303. {
  304. label: '申请时间',
  305. type:'input',
  306. field: 'createDate',
  307. required: true
  308. },
  309. {
  310. label: '钙卫蛋白结果(如无请忽略)',
  311. type:'radio',
  312. field: 'gwdbResult',
  313. options: [
  314. {
  315. label: '阴性',
  316. value: '1'
  317. },
  318. {
  319. label: '阳性',
  320. value: '2'
  321. }
  322. ]
  323. },
  324. {
  325. label: '是否医技检查',
  326. type:'input',
  327. field: 'isExam',
  328. required: true
  329. },
  330. {
  331. label: '评估结果',
  332. type:'radio',
  333. field: 'screenResult',
  334. required: true,
  335. options: [
  336. {
  337. label: '阴性',
  338. value: '1'
  339. },
  340. {
  341. label: '阳性',
  342. value: '2'
  343. }
  344. ]
  345. },
  346. ]