ribao.js 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938
  1. function ribao_init() {
  2. //lingyun
  3. $('#btnRB').on('click', function () {
  4. window.location.href = "/yeweihui/home.html";
  5. });
  6. $("#js_input_gzzd").select({
  7. title: "选择工作驻地",
  8. items: [
  9. {
  10. title: "武汉市",
  11. value: "1",
  12. },
  13. {
  14. title: "宜昌市",
  15. value: "2",
  16. },
  17. {
  18. title: "当阳市",
  19. value: "3",
  20. },
  21. {
  22. title: "其它地点",
  23. value: "4",
  24. }]
  25. });
  26. $("#js_input_jrszd").select({
  27. title: "选择今晚住地",
  28. items: [
  29. {
  30. title: "武汉市",
  31. value: "1",
  32. }, {
  33. title: "宜昌市",
  34. value: "2",
  35. },
  36. {
  37. title: "当阳市",
  38. value: "3",
  39. },
  40. {
  41. title: "其它地点",
  42. value: "4",
  43. }]
  44. });
  45. $("#js_input_sf").select({
  46. title: "",
  47. items: [
  48. {
  49. title: "否",
  50. value: "0",
  51. },
  52. {
  53. title: "是",
  54. value: "1",
  55. }]
  56. });
  57. $("#js_input_cfd").select({
  58. title: "选择出发地",
  59. items: [
  60. {
  61. title: "武汉市",
  62. value: "1",
  63. }, {
  64. title: "宜昌市",
  65. value: "2",
  66. },
  67. {
  68. title: "当阳市",
  69. value: "3",
  70. },
  71. {
  72. title: "其它地点",
  73. value: "4",
  74. }]
  75. });
  76. $("#js_input_mdd").select({
  77. title: "选择目的地",
  78. items: [
  79. {
  80. title: "武汉市",
  81. value: "1",
  82. }, {
  83. title: "宜昌市",
  84. value: "2",
  85. },
  86. {
  87. title: "当阳市",
  88. value: "3",
  89. },
  90. {
  91. title: "其它地点",
  92. value: "4",
  93. }]
  94. });
  95. $("#js_input_cxfs").select({
  96. title: "选择出行方式",
  97. items: [
  98. {
  99. title: "长途汽车",
  100. value: "1",
  101. },
  102. {
  103. title: "火车",
  104. value: "2",
  105. },
  106. {
  107. title: "飞机",
  108. value: "3",
  109. },
  110. {
  111. title: "自驾",
  112. value: "4",
  113. }]
  114. });
  115. // $("#js_input_user_sex").val(getGreder(2)); //设置初始值
  116. $('#btnRB').on('click', function () {
  117. window.location.href = "/yeweihui/home.html";
  118. });
  119. $("#js_input_user_sex").select({
  120. title: "选择性别",
  121. items: [
  122. {
  123. title: "男",
  124. value: "1",
  125. },
  126. {
  127. title: "女",
  128. value: "2",
  129. }]
  130. });
  131. $("#js_input_user_status").select({
  132. title: "选择基本状况",
  133. items: [
  134. {
  135. title: "无病史",
  136. value: "0",
  137. }, {
  138. title: "心脑血管疾病(服用ARB)",
  139. value: "1",
  140. },
  141. {
  142. title: "心脑血管疾病(未服ARB)",
  143. value: "2",
  144. },
  145. {
  146. title: "呼吸系统病史",
  147. value: "3",
  148. },
  149. {
  150. title: "肿瘤病史",
  151. value: "4",
  152. },
  153. {
  154. title: "糖尿病史",
  155. value: "5",
  156. },
  157. {
  158. title: "服用过激素药物",
  159. value: "6",
  160. },
  161. {
  162. title: "妊娠期",
  163. value: "7",
  164. }]
  165. });
  166. $("#js_input_user_kesou").select({
  167. title: "选择咳嗽情况",
  168. items: [
  169. {
  170. title: "无咳嗽",
  171. value: "0",
  172. },
  173. {
  174. title: "偶有短暂咳嗽",
  175. value: "1",
  176. },
  177. {
  178. title: "咳嗽轻度影响生活",
  179. value: "2",
  180. },
  181. {
  182. title: "咳嗽严重影响生活",
  183. value: "3",
  184. }]
  185. });
  186. $("#js_input_user_jirou").select({
  187. title: "选择肌肉情况",
  188. items: [
  189. {
  190. title: "无",
  191. value: "0",
  192. },
  193. {
  194. title: "按压有",
  195. value: "1",
  196. },
  197. {
  198. title: "偶尔",
  199. value: "2",
  200. },
  201. {
  202. title: "持续有",
  203. value: "3",
  204. }]
  205. });
  206. $("#js_input_user_huxi").select({
  207. title: "选择呼吸情况",
  208. items: [
  209. {
  210. title: "无",
  211. value: "0",
  212. },
  213. {
  214. title: "急走或上坡气短",
  215. value: "1",
  216. },
  217. {
  218. title: "气短而走路变慢",
  219. value: "2",
  220. },
  221. {
  222. title: "走路数分钟后气短",
  223. value: "3",
  224. },
  225. {
  226. title: "气短无法离开房间",
  227. value: "4",
  228. }]
  229. });
  230. $("#js_input_user_fali").select({
  231. title: "选择乏力情况",
  232. items: [
  233. {
  234. title: "无",
  235. value: "0",
  236. },
  237. {
  238. title: "体力劳动后不能恢复",
  239. value: "1",
  240. },
  241. {
  242. title: "轻体力活非常累",
  243. value: "2",
  244. },
  245. {
  246. title: "不能正常生活",
  247. value: "3",
  248. }]
  249. });
  250. $("#js_input_user_fuxie").select({
  251. title: "选择腹泻情况",
  252. items: [
  253. {
  254. title: "无",
  255. value: "0",
  256. },
  257. {
  258. title: "轻度腹泻(少于3次)",
  259. value: "1",
  260. },
  261. {
  262. title: "中度腹泻(4-6次)",
  263. value: "2",
  264. },
  265. {
  266. title: "重度腹泻(超过6次)",
  267. value: "3",
  268. }]
  269. });
  270. // $("#switchQuezhen").select({
  271. // title: "选择是否确诊",
  272. // items: [
  273. // {
  274. // title: "否",
  275. // value: "0",
  276. // },
  277. // {
  278. // title: "是",
  279. // value: "1",
  280. // }]
  281. // });
  282. $("#switchQuezhen").select({
  283. title: "选择症状",
  284. items: [
  285. {
  286. title: "无",
  287. value: "0",
  288. },
  289. {
  290. title: "新冠确诊",
  291. value: "1",
  292. },
  293. {
  294. title: "新冠疑似",
  295. value: "2",
  296. },
  297. {
  298. title: "密切接触者",
  299. value: "3",
  300. },
  301. {
  302. title: "解除观察",
  303. value: "4",
  304. }]
  305. });
  306. $("#switchDanjiangeli").select({
  307. title: "选择是否单间隔离",
  308. items: [
  309. {
  310. title: "否",
  311. value: "0",
  312. },
  313. {
  314. title: "是",
  315. value: "1",
  316. }]
  317. });
  318. //
  319. // updateSuspected({
  320. // userName : 'www',
  321. // grender : 2,
  322. // age : 34,
  323. // familyStatus : 1,
  324. // statusDesp : "",
  325. // medical:0,
  326. // singleRoom:1,
  327. // temperature:0,
  328. // cough:2,
  329. // muscle:1,
  330. // dyspnea:1,
  331. // fatigue:1,
  332. // diarrhea:2,
  333. // others:""
  334. // })
  335. //
  336. // var grender = $("#js_input_user_sex").attr("data-values") == undefined ? 0 : $("#js_input_user_sex").attr("data-values");
  337. // console.log("grender:" + grender)
  338. }
  339. function selectinput1(obj) {
  340. var grender = $("#js_input_gzzd").attr("data-values") == undefined ? 0 : $("#js_input_gzzd").attr("data-values");
  341. if (grender != 4) {//js_input_qtdd
  342. // $('#js_input_qtdd')[0].disabled == 'disabled'
  343. $('#js_input_qtdd').attr("disabled", "disabled");
  344. $("#js_input_qtdd").val("");
  345. } else {
  346. $('#js_input_qtdd').removeAttr("disabled")
  347. }
  348. }
  349. function selectinput2(obj) {
  350. var grender = $("#js_input_jrszd").attr("data-values") == undefined ? 0 : $("#js_input_jrszd").attr("data-values");
  351. if (grender != 4) {//js_input_qtdd
  352. // $('#js_input_qtdd')[0].disabled == 'disabled' js_input_jrszq
  353. $('#js_input_jrszq').attr("disabled", "disabled");
  354. $("#js_input_jrszq").val("");
  355. } else {
  356. $('#js_input_jrszq').removeAttr("disabled")
  357. }
  358. }
  359. function selectinput3(obj) {
  360. var grender = $("#js_input_cfd").attr("data-values") == undefined ? 0 : $("#js_input_cfd").attr("data-values");
  361. if (grender != 4) {
  362. $('#js_input_cfdq').attr("disabled", "disabled");
  363. $("#js_input_cfdq").val("");
  364. } else {
  365. $('#js_input_cfdq').removeAttr("disabled")
  366. }
  367. }
  368. function selectinput4(obj) {
  369. var grender = $("#js_input_mdd").attr("data-values") == undefined ? 0 : $("#js_input_mdd").attr("data-values");
  370. if (grender != 4) {
  371. $('#js_input_mddq').attr("disabled", "disabled");
  372. $("#js_input_mddq").val("");
  373. } else {
  374. $('#js_input_mddq').removeAttr("disabled")
  375. }
  376. }
  377. function selectinput5(obj) {
  378. var grender = $("#js_input_cxfs").attr("data-values") == undefined ? 0 : $("#js_input_cxfs").attr("data-values");
  379. if (grender == 4) {
  380. // $('#js_input_cxfsq').attr("disabled","disabled")
  381. } else {
  382. $('#js_input_cxfsq').removeAttr("disabled")
  383. }
  384. }
  385. var listcx = [];
  386. function selectinput6(obj) {
  387. var grender = $("#js_input_sf").attr("data-values") == undefined ? 3 : $("#js_input_sf").attr("data-values");
  388. if (grender == 0) {
  389. $('#none')[0].style.display = 'none';
  390. $("#js_input_cfd").val("");
  391. $("#js_input_cfd").attr("data-values", "");
  392. $("#js_input_mdd").val("");
  393. $("#js_input_mdd").attr("data-values", "");
  394. $("#js_input_cxfs").val("");
  395. $("#js_input_cxfs").attr("data-values", "");
  396. $('#js_input_cxfsq').val("");
  397. $('#js_input_cfdq').val("");
  398. $('#js_input_mddq').val("");
  399. listcx.splice(0, listcx.length);
  400. $('#tabtr').empty();
  401. } else if (grender == 1) {
  402. $('#none')[0].style.display = '';
  403. }
  404. }
  405. //添加出行详情
  406. function insertlingyun() {
  407. var sf = $("#js_input_sf").attr("data-values") == undefined ? 3 : $("#js_input_sf").attr("data-values");
  408. if (sf == 0 || sf == 3) {
  409. $.alert("请选择是否出行");
  410. return;
  411. }
  412. var person = new Object();
  413. var cxfs = $("#js_input_cxfs").attr("data-values") == undefined ? 0 : $("#js_input_cxfs").attr("data-values");
  414. var jrszd = $("#js_input_jrszd").attr("data-values") == undefined ? 0 : $("#js_input_jrszd").attr("data-values");
  415. var cfd = $("#js_input_cfd").attr("data-values") == undefined ? 0 : $("#js_input_cfd").attr("data-values");
  416. var mdd = $("#js_input_mdd").attr("data-values") == undefined ? 0 : $("#js_input_mdd").attr("data-values");
  417. var jrszq = $('#js_input_jrszq').val();
  418. var mddq = $('#js_input_mddq').val();
  419. var cfdq = $('#js_input_cfdq').val();
  420. if (mdd != jrszd) {
  421. $.alert("目的地与今晚住地不一致");
  422. return;
  423. }
  424. if (jrszq != mddq) {
  425. $.alert("目的地与今晚住地不一致");
  426. return;
  427. }
  428. if (cfd == 4 && mdd == 4) {
  429. if (mddq == cfdq) {
  430. $.alert("出发地与目的地不能一致");
  431. return;
  432. }
  433. } else if (cfd != 4 || mdd != 4) {
  434. if (cfd == mdd) {
  435. $.alert("出发地与目的地不能一致");
  436. return;
  437. }
  438. }
  439. var cxfsq = $('#js_input_cxfsq').val();
  440. for (var i = 0; i < listcx.length; i++) {
  441. if (listcx[i].tripTypeDesp == cxfsq && listcx[i].tripType == cxfs && listcx[i].startLocal == cfd && listcx[i].startLocalOther == cfdq && listcx[i].endLocal == mdd && listcx[i].endLocalOther == mddq) {
  442. $.alert("此行程已添加");
  443. return;
  444. }
  445. }
  446. if (cxfs != 4 && cxfs != 0) {
  447. var val = $('#js_input_cxfsq').val();
  448. if (val == "") {
  449. $.alert("请填写车次/航班/车牌");
  450. return;
  451. }
  452. person.tripTypeDesp = $('#js_input_cxfsq').val();
  453. if (cxfs == 1) {
  454. person.tripType = 1;
  455. person.tripTypeStr = "长途汽车"
  456. } else if (cxfs == 2) {
  457. person.tripType = 2;
  458. person.tripTypeStr = "火车";
  459. } else if (cxfs == 3) {
  460. person.tripType = 3;
  461. person.tripTypeStr = "飞机";
  462. }
  463. } else if (cxfs == 0) {
  464. $.alert("请选择出行方式");
  465. return;
  466. } else if (cxfs == 4) {
  467. var val6 = $('#js_input_cxfsq').val();
  468. if (val6 == "") {
  469. $.alert("请填写车次/航班/车牌");
  470. return;
  471. }
  472. person.tripTypeStr = "自驾";
  473. person.tripType = 4;
  474. person.tripTypeDesp = $('#js_input_cxfsq').val();
  475. }
  476. if (cfd == 4 && cfd != 0) {
  477. var val2 = $('#js_input_cfdq').val();
  478. if (val2 == "") {
  479. $.alert("请填写出发地");
  480. return;
  481. }
  482. person.startLocal = 4;
  483. person.startLocalOther = $('#js_input_cfdq').val();
  484. person.startLocalStr = $('#js_input_cfdq').val();
  485. } else if (cfd != 4 && cfd != 0) {
  486. if (cfd == 1) {
  487. person.startLocal = 1;
  488. person.startLocalStr = "武汉市";
  489. person.startLocalOther = $('#js_input_cfdq').val() == undefined ? "" : $('#js_input_cfdq').val();
  490. } else if (cfd == 2) {
  491. person.startLocal = 2;
  492. person.startLocalStr = "宜昌市";
  493. person.startLocalOther = $('#js_input_cfdq').val() == undefined ? "" : $('#js_input_cfdq').val();
  494. } else if (cfd == 3) {
  495. person.startLocal = 3;
  496. person.startLocalStr = "当阳市";
  497. person.startLocalOther = $('#js_input_cfdq').val() == undefined ? "" : $('#js_input_cfdq').val();
  498. }
  499. } else if (cfd == 0) {
  500. $.alert("请选择出发地");
  501. return;
  502. }
  503. if (mdd == 4 && mdd != 0) {
  504. var val3 = $('#js_input_mddq').val();
  505. if (val3 == "") {
  506. $.alert("请填写目的地");
  507. return;
  508. }
  509. person.endLocal = 4;
  510. person.endLocalOther = $('#js_input_mddq').val();
  511. person.endlocalStr = $('#js_input_mddq').val();
  512. } else if (mdd != 4 && mdd != 0) {
  513. if (mdd == 1) {
  514. person.endLocal = 1;
  515. person.endlocalStr = "武汉市";
  516. person.endLocalOther = $('#js_input_mddq').val() == undefined ? "" : $('#js_input_mddq').val();
  517. } else if (mdd == 2) {
  518. person.endLocal = 2;
  519. person.endlocalStr = "宜昌市";
  520. person.endLocalOther = $('#js_input_mddq').val() == undefined ? "" : $('#js_input_mddq').val();
  521. } else if (mdd == 3) {
  522. person.endLocal = 3;
  523. person.endlocalStr = "当阳市";
  524. person.endLocalOther = $('#js_input_mddq').val() == undefined ? "" : $('#js_input_mddq').val();
  525. }
  526. } else if (mdd == 0) {
  527. $.alert("请选择目的地");
  528. return;
  529. }
  530. listcx.push(person);
  531. // $.alert("添加成功");
  532. tab()
  533. }
  534. function tab() {
  535. var xxIds = [];
  536. var xxName = [
  537. "序号",
  538. "出发地",
  539. "目的地",
  540. "出行方式",
  541. "车次/航班/车牌",
  542. "操作"
  543. ];
  544. for (var i = 0; i < xxName.length; i++) {
  545. xxIds.push({
  546. name: xxName[i]
  547. });
  548. }
  549. $('#tabtr').empty();
  550. var html = "<tr style='background-color: #f8f8f8;'>";
  551. for (var i = 0; i < xxIds.length; i++) {
  552. // alert(xxIds[i].name);
  553. html += "<th>" + xxIds[i].name + "</th>";
  554. }
  555. html += "</tr>"
  556. for (var i = 0; i < listcx.length; i++) {//后端传过来的集合遍历
  557. if (i % 2 != 0) {
  558. html += "<tr style='background-color: #f8f8f8;'>";
  559. }
  560. else {
  561. html += "<tr>";
  562. }
  563. html += "<td style='text-align: center;'>" + (i + 1) + "</td>";
  564. // var isValue = false; //记录是否赋值
  565. html += "<td style='text-align: center;' >" + listcx[i].startLocalStr + " </td>";
  566. html += "<td style='text-align: center;' >" + listcx[i].endlocalStr + " </td>";
  567. html += "<td style='text-align: center;' >" + listcx[i].tripTypeStr + " </td>";
  568. html += "<td style='text-align: center;' >" + listcx[i].tripTypeDesp + " </td>";
  569. html += "<td style='text-align: center;' ><button value=" + i + " style='height:5vh;background-color: red;text-align: center; with:60%' class='weui-btn weui-btn_mini weui-btn_primary' onclick='splice(this.value)'>" + "删除" + " </button></td>";
  570. html += "</tr>";
  571. $("#tabtr").html(html);
  572. }
  573. }
  574. function splice(obj) {
  575. listcx.splice(obj, 1);
  576. tab()
  577. }
  578. //首次近日报告
  579. function ribaoInitialization(reportId) {
  580. if (reportId == null)
  581. reportId = 0;
  582. var userId = $("#userId").val();
  583. $.ajax({
  584. url: '/home/home/queryRibaoRefresh',
  585. data: {
  586. reportId: reportId,
  587. userCreate: userId
  588. },
  589. type: 'GET',
  590. success: function (data) {
  591. if (data.data == undefined || data.data == "") {
  592. $('#rb_family').empty();
  593. document.getElementById("btn_shangbao").style['background-color'] = "#D9D9D9";
  594. canSahngbao = false;
  595. }
  596. else {
  597. if (data.data.length > 0) {
  598. hasData = true;
  599. data.data.forEach(function (v) {
  600. ribao_cell(v);
  601. });
  602. }
  603. }
  604. },
  605. error: function () {
  606. }
  607. });
  608. }
  609. //刷新今日日报
  610. function ribao_refrash() {
  611. var userId = $("#userId").val();
  612. $.ajax({
  613. url: '/home/home/queryRibao',
  614. data: {
  615. userCreate: userId
  616. },
  617. type: 'GET',
  618. success: function (data) {
  619. if (data.data == undefined || data.data == "") {
  620. $('#rb_family').empty();
  621. document.getElementById("btn_shangbao").style['background-color'] = "#D9D9D9";
  622. }
  623. else {
  624. $('#rb_family').empty();
  625. if (data.data.length > 0) {
  626. hasData = true;
  627. data.data.forEach(function (v) {
  628. ribao_cell(v);
  629. });
  630. } else {
  631. }
  632. }
  633. },
  634. error: function () {
  635. }
  636. });
  637. }
  638. function ribao_cell(v) {
  639. var userName = v.userName + ":";
  640. var grender = getGreder(v.grender);
  641. var age = v.age;
  642. var familyStatus = "";
  643. if (v.familyStatus != 0)
  644. familyStatus = "基本状况:" + getFamilyStatus(v.familyStatus) + ";";
  645. var medical = "";
  646. if (v.medical != 0)
  647. medical = "新冠肺炎:" + getMedical(v.medical) + ";";
  648. var singleRoom = "";
  649. var uptownId = $("#uptownId").val();
  650. if (uptownId != xiaoquId && uptownId != ceshixiaoquId) {
  651. if (v.singleRoom != 0)
  652. singleRoom = "单间隔离:" + getSingleRoom(v.singleRoom) + ";";
  653. if (v.singleRoom == 0 && v.medical != 0)
  654. singleRoom = "单间隔离:" + getSingleRoom(v.singleRoom) + ";";
  655. }
  656. var temperature = "体温:" + v.temperature + ";";
  657. var cough = "";
  658. if (v.cough != 0)
  659. cough = "咳嗽现象:" + getCough(v.cough) + ";";
  660. var muscle = "";
  661. if (v.muscle != 0)
  662. muscle = "肌肉酸痛:" + getMuscle(v.muscle) + ";";
  663. var dyspnea = "";
  664. if (v.dyspnea != 0)
  665. dyspnea = "呼吸困难:" + getDyspnea(v.dyspnea) + ";";
  666. var fatigue = "";
  667. if (v.fatigue != 0)
  668. fatigue = "乏力现象:" + getFatigue(v.fatigue) + ";";
  669. var diarrhea = "";
  670. if (v.diarrhea != 0)
  671. diarrhea = "腹泻现象:" + getDiarrhea(v.diarrhea) + ";";
  672. var others = "";
  673. if (v.others != "")
  674. others = "其他描述:" + v.others + ";";
  675. var scoreRezult = "";
  676. if (v.scoreRezult != 0)
  677. scoreRezult = "评估结果:" + getScoreRezult(v.scoreRezult, v.temperatureScore) + ";";
  678. var workLocal = "";
  679. var todayLocal = "";
  680. var isTrip = "";
  681. var tripDet = "";
  682. if (uptownId == xiaoquId || uptownId == ceshixiaoquId) {
  683. if (v.workLocal != 0) {
  684. if (v.workLocal < 4)
  685. workLocal = "工作驻地:" + getLocal(v.workLocal) + ";";
  686. else
  687. workLocal = "工作驻地:" + v.workLocalOther + ";";
  688. }
  689. if (v.todayLocal != 0) {
  690. if (v.todayLocal < 4)
  691. todayLocal = "今晚住地:" + getLocal(v.todayLocal) + ";";
  692. else
  693. todayLocal = "今晚住地:" + v.todayLocalOther + ";";
  694. }
  695. if (v.isTrip != undefined)
  696. isTrip = "是否出行:" + getIsTrip(v.isTrip) + ";"
  697. if (v.tripDet != undefined)
  698. tripDet = "出行详细:" + v.tripDet + ";"
  699. }
  700. $('#rb_family').append($('<div class="weui-media-box weui-media-box_text" style="height: auto">\n' +
  701. ' <h4 class="weui-media-box__title">' + userName + '&nbsp;&nbsp;' + grender + '&nbsp;&nbsp;&nbsp;' + age + '&nbsp;&nbsp;<a style="color: #bc4246" onclick=\'deleteSuspected(' + JSON.stringify(v.suspectedId) + ')\'>删除</a>\n' +
  702. ' &nbsp;&nbsp;<a style="color: #2a62bc" onclick=\'updateSuspected(' + JSON.stringify(v.suspectedId) + ')\'>修改</a></h4>\n' +
  703. ' <div style="height: auto">' + familyStatus + medical + singleRoom + temperature + cough + muscle + dyspnea + fatigue + diarrhea + others + scoreRezult + workLocal + todayLocal + isTrip + tripDet + '</>\n' +
  704. ' </div>\n' +
  705. ' '));
  706. }
  707. function ribao_add() {
  708. $('#btnAdd').on('click', function () {
  709. if ($('#ribao')[0].style.display == 'none') {
  710. $('#notOpenRibao').toggle();
  711. $('#ribao')[0].style.display = '';
  712. } else {
  713. $('#notOpenRibao')[0].style.display = '';
  714. $('#ribao')[0].style.display = 'none';
  715. }
  716. //基本情况
  717. $("input[name='checkbox1']").removeAttr("checked");
  718. $("input[name='checkbox2']").removeAttr("checked");
  719. $("input[name='checkbox3']").removeAttr("checked");
  720. $("input[name='checkbox4']").removeAttr("checked");
  721. $("input[name='checkbox5']").removeAttr("checked");
  722. $("input[name='checkbox6']").removeAttr("checked");
  723. $("input[name='checkbox7']").removeAttr("checked");
  724. $("#switchQuezhen").val(getMedical(0));
  725. $("#switchQuezhen").attr("data-values", 0);
  726. $("#switchDanjiangeli").val(getSingleRoom(0));
  727. $("#switchDanjiangeli").attr("data-values", 0);
  728. $("#js_input_user_tiwen").val(0);
  729. $("#js_input_user_kesou").val(getCough(0));
  730. $("#js_input_user_kesou").attr("data-values", 0);
  731. $("#js_input_user_jirou").val(getMuscle(0));
  732. $("#js_input_user_jirou").attr("data-values", 0);
  733. $("#js_input_user_huxi").val(getDyspnea(0));
  734. $("#js_input_user_huxi").attr("data-values", 0);
  735. $("#js_input_user_fali").val(getFatigue(0));
  736. $("#js_input_user_fali").attr("data-values", 0);
  737. $("#js_input_user_fuxie").val(getDiarrhea(0));
  738. $("#js_input_user_fuxie").attr("data-values", 0);
  739. $("#js_input_sf").val(getIsTrip(0));
  740. $("#js_input_sf").attr("data-values", 0);
  741. $('#none')[0].style.display = 'none';
  742. $('#tabtr').empty();
  743. // $("#suspectedId").val("");
  744. // $("#js_input_gzzd").val("");
  745. // $("#js_input_jrszd").val("");
  746. // $('#js_input_mddq').attr("disabled","disabled");
  747. // $('#js_input_jrszq').attr("disabled","disabled");
  748. // $('#js_input_qtdd').attr("disabled","disabled");
  749. // $('#js_input_cfdq').attr("disabled","disabled");
  750. // var userId = $("#userId").val();
  751. // //获取用户家人
  752. // $.ajax({
  753. // url: '/home/selectAddSuspected',
  754. // get: "get",
  755. // data: {
  756. // "userCreate": userId
  757. // },
  758. // success: function (data) {
  759. // if (data != null || data != '') {
  760. // //存在
  761. // var suspected = data;
  762. // $("#js_input_user_sex").val(getGreder(suspected.grender));
  763. // $("#js_input_user_sex").attr("data-values", suspected.grender);
  764. // $("#js_input_user_name").val(suspected.userName);
  765. // $("#js_input_user_age").val(suspected.age);
  766. // //基本情况
  767. // if (suspected.familyStatus != "") {
  768. // var familyStatusList = suspected.familyStatus.split(",");
  769. // if (familyStatusList[0] == 1)
  770. // $("input[name='checkbox1']").prop("checked", "checked");
  771. // else
  772. // $("input[name='checkbox1']").removeAttr("checked");
  773. // if (familyStatusList[1] == 1)
  774. // $("input[name='checkbox2']").prop("checked", "checked");
  775. // else
  776. // $("input[name='checkbox2']").removeAttr("checked");
  777. // if (familyStatusList[2] == 1)
  778. // $("input[name='checkbox3']").prop("checked", "checked");
  779. // else
  780. // $("input[name='checkbox3']").removeAttr("checked");
  781. // if (familyStatusList[3] == 1)
  782. // $("input[name='checkbox4']").prop("checked", "checked");
  783. // else
  784. // $("input[name='checkbox4']").removeAttr("checked");
  785. // if (familyStatusList[4] == 1)
  786. // $("input[name='checkbox5']").prop("checked", "checked");
  787. // else
  788. // $("input[name='checkbox5']").removeAttr("checked");
  789. // if (familyStatusList[5] == 1)
  790. // $("input[name='checkbox6']").prop("checked", "checked");
  791. // else
  792. // $("input[name='checkbox6']").removeAttr("checked");
  793. // if (familyStatusList[6] == 1)
  794. // $("input[name='checkbox7']").prop("checked", "checked");
  795. // else
  796. // $("input[name='checkbox7']").removeAttr("checked");
  797. //
  798. // }
  799. //
  800. // $("#switchQuezhen").val(getMedical(suspected.medical));
  801. // $("#switchQuezhen").attr("data-values", suspected.medical);
  802. //
  803. // $("#switchDanjiangeli").val(getSingleRoom(suspected.singleRoom));
  804. // $("#switchDanjiangeli").attr("data-values", suspected.singleRoom);
  805. //
  806. // $("#js_input_user_tiwen").val(suspected.temperature);
  807. //
  808. // $("#js_input_user_kesou").val(getCough(suspected.cough));
  809. // $("#js_input_user_kesou").attr("data-values", suspected.cough);
  810. //
  811. // $("#js_input_user_jirou").val(getMuscle(suspected.muscle));
  812. // $("#js_input_user_jirou").attr("data-values", suspected.muscle);
  813. //
  814. // $("#js_input_user_huxi").val(getDyspnea(suspected.dyspnea));
  815. // $("#js_input_user_huxi").attr("data-values", suspected.dyspnea);
  816. //
  817. // $("#js_input_user_fali").val(getFatigue(suspected.fatigue));
  818. // $("#js_input_user_fali").attr("data-values", suspected.fatigue);
  819. //
  820. // $("#js_input_user_fuxie").val(getDiarrhea(suspected.diarrhea));
  821. // $("#js_input_user_fuxie").attr("data-values", suspected.diarrhea);
  822. //
  823. // $("#shuruqita").val(suspected.others);
  824. // $("#js_input_score_rezult").val(getScoreRezult(suspected.scoreRezult, suspected.temperatureScore));
  825. // $("#js_input_score_rezult_value").val(suspected.scoreRezult);
  826. // $("#js_input_temperature_score").val(suspected.temperatureScore);
  827. // $("#js_input_score_histroy").val(suspected.scoreHistroy);
  828. // $("#js_input_score").val(suspected.score);
  829. //
  830. // $("#js_input_sf").val(getIsTrip(0));
  831. // $("#js_input_sf").attr("data-values", 0);
  832. // $('#none')[0].style.display = 'none';
  833. // }
  834. // else {
  835. // //基本情况
  836. // $("input[name='checkbox1']").removeAttr("checked");
  837. // $("input[name='checkbox2']").removeAttr("checked");
  838. // $("input[name='checkbox3']").removeAttr("checked");
  839. // $("input[name='checkbox4']").removeAttr("checked");
  840. // $("input[name='checkbox5']").removeAttr("checked");
  841. // $("input[name='checkbox6']").removeAttr("checked");
  842. // $("input[name='checkbox7']").removeAttr("checked");
  843. //
  844. // $("#switchQuezhen").val(getMedical(0));
  845. // $("#switchQuezhen").attr("data-values", 0);
  846. //
  847. // $("#switchDanjiangeli").val(getSingleRoom(0));
  848. // $("#switchDanjiangeli").attr("data-values", 0);
  849. //
  850. // $("#js_input_user_tiwen").val(0);
  851. //
  852. // $("#js_input_user_kesou").val(getCough(0));
  853. // $("#js_input_user_kesou").attr("data-values", 0);
  854. //
  855. // $("#js_input_user_jirou").val(getMuscle(0));
  856. // $("#js_input_user_jirou").attr("data-values", 0);
  857. //
  858. // $("#js_input_user_huxi").val(getDyspnea(0));
  859. // $("#js_input_user_huxi").attr("data-values", 0);
  860. //
  861. // $("#js_input_user_fali").val(getFatigue(0));
  862. // $("#js_input_user_fali").attr("data-values", 0);
  863. //
  864. // $("#js_input_user_fuxie").val(getDiarrhea(0));
  865. // $("#js_input_user_fuxie").attr("data-values", 0);
  866. //
  867. //
  868. // // $("#js_input_cxfs").empty();
  869. // // $("#js_input_cfd").empty();
  870. // // $("#js_input_mdd").empty();
  871. // // $('#js_input_cxfsq').val("");
  872. // // $('#js_input_cfdq').val("");
  873. // // $('#js_input_mddq').val("");
  874. // // listcx.splice(0,listcx.length);
  875. // // $('#tabtr').empty();
  876. // // $("#js_input_qtdd").val("");
  877. // // $("#js_input_jrszq").val("");
  878. // // $("#js_input_sf").val("");
  879. // $("#js_input_sf").val(getIsTrip(0));
  880. // $("#js_input_sf").attr("data-values", 0);
  881. // $('#none')[0].style.display = 'none';
  882. // $('#tabtr').empty();
  883. // // $("#suspectedId").val("");
  884. // // $("#js_input_gzzd").val("");
  885. // // $("#js_input_jrszd").val("");
  886. // // $('#js_input_mddq').attr("disabled","disabled");
  887. // // $('#js_input_jrszq').attr("disabled","disabled");
  888. // // $('#js_input_qtdd').attr("disabled","disabled");
  889. // // $('#js_input_cfdq').attr("disabled","disabled");
  890. //
  891. // }
  892. // },
  893. // });
  894. });
  895. }
  896. function tt() {
  897. alert($("input[name='radio']:checked").val())
  898. }
  899. function ribao_cancel() {
  900. $('#cancel').on('click', function () {
  901. listcx.splice(0, listcx.length);
  902. $('#tabtr').empty();
  903. $("#js_input_cfd").val("");
  904. $("#js_input_cfd").attr("data-values", "");
  905. $("#js_input_mdd").val("");
  906. $("#js_input_mdd").attr("data-values", "");
  907. $("#js_input_cxfs").val("");
  908. $("#js_input_cxfs").attr("data-values", "");
  909. $("#js_input_gzzd").val("");
  910. $("#js_input_gzzd").attr("data-values", "");
  911. $("#js_input_jrszd").val("");
  912. $("#js_input_jrszd").attr("data-values", "");
  913. $("#js_input_sf").val("");
  914. $("#js_input_sf").attr("data-values", "");
  915. $("#js_input_qtdd").val("");
  916. $("#js_input_jrszq").val("");
  917. $("#js_input_cfdq").val("");
  918. $("#js_input_mddq").val("");
  919. $("#js_input_cxfsq").val("");
  920. if ($('#ribao')[0].style.display == 'none') {
  921. $('#notOpenRibao').toggle();
  922. $('#ribao')[0].style.display = '';
  923. } else {
  924. $('#notOpenRibao')[0].style.display = '';
  925. $('#ribao')[0].style.display = 'none';
  926. }
  927. clearShow();
  928. });
  929. }
  930. function ribaoCommit() {
  931. if (cantijiao == false) {
  932. return
  933. }
  934. cantijiao = false
  935. var sf = $("#js_input_sf").attr("data-values") == undefined ? 3 : $("#js_input_sf").attr("data-values");
  936. if (listcx.length == 0 && sf == 1) {
  937. $.alert("请添加出行");
  938. return;
  939. }
  940. var suspectedId = $("#suspectedId").val();
  941. var userId = $("#userId").val();
  942. var userName = $("#js_input_user_name").val();
  943. var grender = $("#js_input_user_sex").attr("data-values") == undefined ? 0 : $("#js_input_user_sex").attr("data-values");
  944. var age = $("#js_input_user_age").val();
  945. //不能同时选择服用和未服用
  946. if ($("input[name='checkbox1']:checked").val() == "on" && $("input[name='checkbox2']:checked").val() == "on") {
  947. $.alert("心脑血管不能同时选择服用和未服用");
  948. return;
  949. }
  950. //男性不能选择妊娠期
  951. if ($("#js_input_user_sex").attr("data-values") == 1 && $("input[name='checkbox7']:checked").val() == "on") {
  952. $.alert("男性不能选择妊娠期");
  953. return;
  954. }
  955. //家庭状态
  956. var familyStatus = "";
  957. if ($("input[name='checkbox1']:checked").val() == "on")
  958. familyStatus += "1";
  959. else
  960. familyStatus += "0";
  961. if ($("input[name='checkbox2']:checked").val() == "on")
  962. familyStatus += ",1";
  963. else
  964. familyStatus += ",0";
  965. if ($("input[name='checkbox3']:checked").val() == "on")
  966. familyStatus += ",1";
  967. else
  968. familyStatus += ",0";
  969. if ($("input[name='checkbox4']:checked").val() == "on")
  970. familyStatus += ",1";
  971. else
  972. familyStatus += ",0";
  973. if ($("input[name='checkbox5']:checked").val() == "on")
  974. familyStatus += ",1";
  975. else
  976. familyStatus += ",0";
  977. if ($("input[name='checkbox6']:checked").val() == "on")
  978. familyStatus += ",1";
  979. else
  980. familyStatus += ",0";
  981. if ($("input[name='checkbox7']:checked").val() == "on")
  982. familyStatus += ",1";
  983. else
  984. familyStatus += ",0";
  985. var medical = $("input[name='radio']:checked").val();
  986. if (medical == undefined) {
  987. $.alert("请选择新冠肺炎");
  988. return;
  989. }
  990. //var familyStatus = $("#js_input_user_status").attr("data-values") == undefined ? 0 : $("#js_input_user_status").attr("data-values");
  991. //var statusDesp = $("#jibenmiaoshu").val() == undefined ? "" : $("#jibenmiaoshu").val();
  992. var statusDesp = "";
  993. // var medical = $("#switchQuezhen").attr("data-values") == undefined ? 0 : $("#switchQuezhen").attr("data-values");
  994. var medicalzz = $("#switchQuezhen_zz").attr("data-values") == undefined ? 0 : $("#switchQuezhen_zz").attr("data-values");
  995. var singleRoom = $("#switchDanjiangeli").attr("data-values") == undefined ? 0 : $("#switchDanjiangeli").attr("data-values");
  996. var temperature = $("#js_input_user_tiwen").val() == "" ? 0 : $("#js_input_user_tiwen").val();
  997. var cough = $("#js_input_user_kesou").attr("data-values") == undefined ? 0 : $("#js_input_user_kesou").attr("data-values");
  998. var muscle = $("#js_input_user_jirou").attr("data-values") == undefined ? 0 : $("#js_input_user_jirou").attr("data-values");
  999. var dyspnea = $("#js_input_user_huxi").attr("data-values") == undefined ? 0 : $("#js_input_user_huxi").attr("data-values");
  1000. var fatigue = $("#js_input_user_fali").attr("data-values") == undefined ? 0 : $("#js_input_user_fali").attr("data-values");
  1001. var diarrhea = $("#js_input_user_fuxie").attr("data-values") == undefined ? 0 : $("#js_input_user_fuxie").attr("data-values");
  1002. var others = $("#shuruqita").val() == undefined ? "" : $("#shuruqita").val();
  1003. var scoreRezult = $("#js_input_score_rezult_value").val() == undefined ? "" : $("#js_input_score_rezult_value").val();
  1004. var temperatureScore = $("#js_input_temperature_score").val() == undefined ? "" : $("#js_input_temperature_score").val();
  1005. var scoreHistroy = $("#js_input_score_histroy").val() == undefined ? "" : $("#js_input_score_histroy").val();
  1006. var score = $("#js_input_score").val() == undefined ? "" : $("#js_input_score").val();
  1007. if (userName == undefined || userName == '') {
  1008. $.alert("请填写姓名");
  1009. return;
  1010. }
  1011. if (grender == 0) {
  1012. $.alert("请填写性别");
  1013. return;
  1014. }
  1015. if (age == undefined || age == '') {
  1016. $.alert("请填写年龄");
  1017. return;
  1018. }
  1019. if (age > 150 || age < 0) {
  1020. $.alert("请填写正确的年龄");
  1021. return;
  1022. }
  1023. if (temperature <= 0) {
  1024. $.alert("请填写体温");
  1025. return;
  1026. }
  1027. if (temperature > 50 || temperature < 30) {
  1028. $.alert("请填写正确的体温");
  1029. return;
  1030. }
  1031. //如果是凌云
  1032. var uptownId = $("#uptownId").val();
  1033. if (uptownId == xiaoquId || uptownId == ceshixiaoquId) {
  1034. //lingyun
  1035. var gzzd = $("#js_input_gzzd").attr("data-values") == undefined ? 0 : $("#js_input_gzzd").attr("data-values");
  1036. var qtdd = $("#js_input_qtdd").val();
  1037. var workLocal = "";
  1038. var workLocalOther = "";
  1039. if (gzzd == 0) {
  1040. $.alert("请选择工作驻地");
  1041. return;
  1042. } else if (gzzd == 4 && qtdd == "") {
  1043. $.alert("请填写工作驻地");
  1044. return;
  1045. } else if (gzzd != 0 && gzzd != 4) {
  1046. if (gzzd == 1) {
  1047. workLocal = 1;
  1048. } else if (gzzd == 2) {
  1049. workLocal = 2;
  1050. } else if (gzzd == 3) {
  1051. workLocal = 3;
  1052. }
  1053. } else if (gzzd == 4 && qtdd != "") {
  1054. workLocal = 4;
  1055. workLocalOther = qtdd;
  1056. }
  1057. //var listcx = [];
  1058. //var person=new Object();
  1059. var jrszd = $("#js_input_jrszd").attr("data-values") == undefined ? 0 : $("#js_input_jrszd").attr("data-values");
  1060. var jrszq = $("#js_input_jrszq").val();
  1061. var todyLocal = "";
  1062. var todyLocalOther = "";
  1063. if (jrszd == 0) {
  1064. $.alert("请选择今晚住地");
  1065. return;
  1066. } else if (jrszd == 4 && jrszq == "") {
  1067. $.alert("请填写今晚住地");
  1068. return;
  1069. } else if (jrszd != 0 && jrszd != 4) {
  1070. if (jrszd == 1) {
  1071. todyLocal = 1;
  1072. } else if (jrszd == 2) {
  1073. todyLocal = 2;
  1074. } else if (jrszd == 3) {
  1075. todyLocal = 3;
  1076. }
  1077. } else if (jrszd == 4 && jrszq != "") {
  1078. todyLocal = 4;
  1079. todyLocalOther = jrszq;
  1080. }
  1081. var sf = $("#js_input_sf").attr("data-values") == undefined ? 3 : $("#js_input_sf").attr("data-values");
  1082. var isTrip = "";
  1083. if (sf == 3) {
  1084. $.alert("请选择是否出行");
  1085. return;
  1086. } else {
  1087. isTrip = sf;
  1088. }
  1089. } else {
  1090. workLocal = 0;
  1091. workLocalOther = "";
  1092. todyLocal = 0;
  1093. todyLocalOther = "";
  1094. isTrip = 0;
  1095. listcx = [];
  1096. }
  1097. var data = {
  1098. "suspectedId": suspectedId,
  1099. "userCreate": userId,
  1100. "userName": userName,
  1101. "grender": grender,
  1102. "age": age,
  1103. "familyStatus": familyStatus,
  1104. "statusDesp": statusDesp,
  1105. "medical": medical,
  1106. "singleRoom": singleRoom,
  1107. "temperature": temperature,
  1108. "cough": cough,
  1109. "muscle": muscle,
  1110. "dyspnea": dyspnea,
  1111. "fatigue": fatigue,
  1112. "diarrhea": diarrhea,
  1113. "others": others,
  1114. "scoreRezult": scoreRezult,
  1115. "temperatureScore": temperatureScore,
  1116. "scoreHistroy": scoreHistroy,
  1117. "score": score,
  1118. "workLocal": workLocal,
  1119. "workLocalOther": workLocalOther,
  1120. "todayLocal": todyLocal,
  1121. "todayLocalOther": todyLocalOther,
  1122. "isTrip": isTrip,
  1123. "tripDet": listcx,
  1124. };
  1125. $.ajax({
  1126. url: '/home/addRibaoTrip',
  1127. type: "post",
  1128. contentType: "application/json; charset=utf-8",
  1129. data: JSON.stringify(data),
  1130. success: function (data) {
  1131. if (data.msgReport == "2") {
  1132. $.toast("家人姓名不能重复,如果重复,可以带上称呼");
  1133. return;
  1134. }
  1135. if ($('#ribao')[0].style.display == 'none') {
  1136. $('#notOpenRibao').toggle();
  1137. $('#ribao')[0].style.display = '';
  1138. } else {
  1139. $('#notOpenRibao')[0].style.display = '';
  1140. $('#ribao')[0].style.display = 'none';
  1141. }
  1142. cantijiao = true
  1143. $('#ribao_jinrijujian').empty();
  1144. $('#ribao_jinrijujian').append(data.safetyNum);
  1145. ribao_refrash();
  1146. clearShow();
  1147. canSahngbao = true;
  1148. document.getElementById("btn_shangbao").style['background-color'] = "#0bb20c";
  1149. document.getElementById("txt_shangbao").style['color'] = "red";
  1150. $('#txt_shangbao').empty();
  1151. $('#txt_shangbao').append("今日未上报");
  1152. $('#txt_shangbaotime').empty();
  1153. $.toast("操作成功后请点击上报");
  1154. },
  1155. });
  1156. }
  1157. function deleteSuspected(suspectedId) {
  1158. $.ajax({
  1159. url: '/home/deleteSuspected',
  1160. type: "post",
  1161. data: {
  1162. "suspectedId": suspectedId
  1163. },
  1164. success: function (data) {
  1165. $('#ribao_jinrijujian').empty();
  1166. $('#ribao_jinrijujian').append(data.safetyNum);
  1167. //今日未上报
  1168. canSahngbao = true;
  1169. document.getElementById("btn_shangbao").style['background-color'] = "#0bb20c";
  1170. document.getElementById("txt_shangbao").style['color'] = "red";
  1171. $('#txt_shangbao').empty();
  1172. $('#txt_shangbao').append("今日未上报");
  1173. $('#txt_shangbaotime').empty();
  1174. ribao_refrash();
  1175. $.toast("删除后请重新点击上报");
  1176. },
  1177. });
  1178. }
  1179. function updateSuspected(suspectedId) {
  1180. $("#suspectedId").val("");
  1181. if ($('#ribao')[0].style.display == 'none') {
  1182. $('#notOpenRibao').toggle();
  1183. $('#ribao')[0].style.display = '';
  1184. } else {
  1185. $('#notOpenRibao')[0].style.display = '';
  1186. $('#ribao')[0].style.display = 'none';
  1187. }
  1188. $.ajax({
  1189. url: '/home/selectSuspected',
  1190. get: "get",
  1191. data: {
  1192. "suspectedId": suspectedId
  1193. },
  1194. success: function (data) {
  1195. // console.log(data);
  1196. if (data) {
  1197. var suspected = data;
  1198. $("#suspectedId").val(suspected.suspectedId);
  1199. $("#js_input_user_sex").val(getGreder(suspected.grender));
  1200. $("#js_input_user_sex").attr("data-values", suspected.grender);
  1201. $("#js_input_user_name").val(suspected.userName);
  1202. $("#js_input_user_age").val(suspected.age);
  1203. //基本情况
  1204. if (suspected.familyStatus != "") {
  1205. var familyStatusList = suspected.familyStatus.split(",");
  1206. if (familyStatusList[0] == 1)
  1207. $("input[name='checkbox1']").prop("checked", "checked");
  1208. else
  1209. $("input[name='checkbox1']").removeAttr("checked");
  1210. if (familyStatusList[1] == 1)
  1211. $("input[name='checkbox2']").prop("checked", "checked");
  1212. else
  1213. $("input[name='checkbox2']").removeAttr("checked");
  1214. if (familyStatusList[2] == 1)
  1215. $("input[name='checkbox3']").prop("checked", "checked");
  1216. else
  1217. $("input[name='checkbox3']").removeAttr("checked");
  1218. if (familyStatusList[3] == 1)
  1219. $("input[name='checkbox4']").prop("checked", "checked");
  1220. else
  1221. $("input[name='checkbox4']").removeAttr("checked");
  1222. if (familyStatusList[4] == 1)
  1223. $("input[name='checkbox5']").prop("checked", "checked");
  1224. else
  1225. $("input[name='checkbox5']").removeAttr("checked");
  1226. if (familyStatusList[5] == 1)
  1227. $("input[name='checkbox6']").prop("checked", "checked");
  1228. else
  1229. $("input[name='checkbox6']").removeAttr("checked");
  1230. if (familyStatusList[6] == 1)
  1231. $("input[name='checkbox7']").prop("checked", "checked");
  1232. else
  1233. $("input[name='checkbox7']").removeAttr("checked");
  1234. }
  1235. // $("#js_input_user_status").val(getFamilyStatus(suspected.familyStatus));
  1236. // $("#js_input_user_status").attr("data-values", suspected.familyStatus);
  1237. // $("#jibenmiaoshu").val(suspected.statusDesp);
  1238. if (suspected.medical == 0)
  1239. $("input[id='s18']").prop("checked", "checked");
  1240. if (suspected.medical == 1)
  1241. $("input[id='s19']").prop("checked", "checked");
  1242. if (suspected.medical == 2)
  1243. $("input[id='s20']").prop("checked", "checked");
  1244. if (suspected.medical == 3)
  1245. $("input[id='s21']").prop("checked", "checked");
  1246. if (suspected.medical == 4)
  1247. $("input[id='s22']").prop("checked", "checked");
  1248. // $("#switchQuezhen").val(getMedical(suspected.medical));
  1249. // $("#switchQuezhen").attr("data-values", suspected.medical);
  1250. $("#switchDanjiangeli").val(getSingleRoom(suspected.singleRoom));
  1251. $("#switchDanjiangeli").attr("data-values", suspected.singleRoom);
  1252. $("#js_input_user_tiwen").val(suspected.temperature);
  1253. $("#js_input_user_kesou").val(getCough(suspected.cough));
  1254. $("#js_input_user_kesou").attr("data-values", suspected.cough);
  1255. $("#js_input_user_jirou").val(getMuscle(suspected.muscle));
  1256. $("#js_input_user_jirou").attr("data-values", suspected.muscle);
  1257. $("#js_input_user_huxi").val(getDyspnea(suspected.dyspnea));
  1258. $("#js_input_user_huxi").attr("data-values", suspected.dyspnea);
  1259. $("#js_input_user_fali").val(getFatigue(suspected.fatigue));
  1260. $("#js_input_user_fali").attr("data-values", suspected.fatigue);
  1261. $("#js_input_user_fuxie").val(getDiarrhea(suspected.diarrhea));
  1262. $("#js_input_user_fuxie").attr("data-values", suspected.diarrhea);
  1263. $("#shuruqita").val(suspected.others);
  1264. $("#js_input_score_rezult").val(getScoreRezult(suspected.scoreRezult, suspected.temperatureScore));
  1265. $("#js_input_score_rezult_value").val(suspected.scoreRezult);
  1266. $("#js_input_temperature_score").val(suspected.temperatureScore);
  1267. $("#js_input_score_histroy").val(suspected.scoreHistroy);
  1268. $("#js_input_score").val(suspected.score);
  1269. //行程
  1270. $("#js_input_gzzd").val(getLocal(suspected.workLocal));
  1271. $("#js_input_gzzd").attr("data-values", suspected.workLocal);
  1272. if (suspected.workLocal != 4) {
  1273. $('#js_input_qtdd').attr("disabled", "disabled");
  1274. $("#js_input_qtdd").val("");
  1275. } else {
  1276. $('#js_input_qtdd').removeAttr("disabled")
  1277. }
  1278. $("#js_input_qtdd").val(suspected.workLocalOther);
  1279. $("#js_input_jrszd").val(getLocal(suspected.todayLocal));
  1280. $("#js_input_jrszd").attr("data-values", suspected.todayLocal);
  1281. if (suspected.todayLocal != 4) {
  1282. $('#js_input_jrszq').attr("disabled", "disabled");
  1283. $("#js_input_jrszq").val("");
  1284. } else {
  1285. $('#js_input_jrszq').removeAttr("disabled")
  1286. }
  1287. $("#js_input_jrszq").val(suspected.todayLocalOther);
  1288. $("#js_input_sf").val(getIsTrip(suspected.isTrip));
  1289. $("#js_input_sf").attr("data-values", suspected.isTrip);
  1290. if (suspected.isTrip == 0)
  1291. $('#none')[0].style.display = 'none';
  1292. else
  1293. $('#none')[0].style.display = '';
  1294. //详细
  1295. $.ajax({
  1296. url: '/home/selectTripSuspected',
  1297. get: "get",
  1298. data: {
  1299. "suspectedId": suspectedId
  1300. },
  1301. success: function (data) {
  1302. if (data.data.length != 0) {
  1303. }
  1304. listcx.splice(0, listcx.length);
  1305. $('#tabtr').empty();
  1306. var person = new Object();
  1307. // var xxIds = [];
  1308. // var xxName = [
  1309. // "序号",
  1310. // "出发地",
  1311. // "目的地",
  1312. // "出行方式",
  1313. // "车次/航班/车牌",
  1314. // "操作"
  1315. // ];
  1316. // for (var i = 0; i < xxName.length; i++) {
  1317. // xxIds.push({
  1318. // name: xxName[i]
  1319. // });
  1320. // }
  1321. // $('#tabtr').empty();
  1322. // var html = "<tr style='background-color: #f8f8f8;'>";
  1323. // for (var i = 0; i < xxIds.length; i++) {
  1324. // html += "<th>" + xxIds[i].name + "</th>";
  1325. // }
  1326. // html += "</tr>"
  1327. data.data.forEach(function (v) {
  1328. {
  1329. person.startLocal = v.startLocal;
  1330. person.startLocalOther = v.startLocalOther;
  1331. person.endlocal = v.endLocal;
  1332. person.endLocalOther = v.endLocalOther;
  1333. person.tripType = v.tripType;
  1334. person.startLocalStr = getLocalOther(v.startLocal, v.startLocalOther);
  1335. person.endlocalStr = getLocalOther(v.endLocal, v.endLocalOther);
  1336. person.tripTypeStr = getTripType(v.tripType);
  1337. person.tripTypeDesp = v.tripTypeDesp;
  1338. listcx.push(person);
  1339. // html += "<tr>";
  1340. // html += "<td style='text-align: center;'>" + v.sort + "</td>";
  1341. // html += "<td style='text-align: center;' >" + getLocalOther(v.startLocal, v.startLocalOther) + " </td>";
  1342. // html += "<td style='text-align: center;' >" + getLocalOther(v.endLocal, v.endLocalOther) + " </td>";
  1343. // html += "<td style='text-align: center;' >" + getTripType(v.tripType) + " </td>";
  1344. // html += "<td style='text-align: center;' >" + v.tripTypeDesp + " </td>";
  1345. // html += "<td style='text-align: center;' ><button value=" + i + " style='height:5vh;background-color: red;text-align: center; with:60%' class='weui-btn weui-btn_mini weui-btn_primary' onclick='splice(this.value)'>" + "删除" + " </button></td>";
  1346. // html += "</tr>";
  1347. // $("#tabtr").html(html);
  1348. }
  1349. });
  1350. tab();
  1351. },
  1352. });
  1353. }
  1354. },
  1355. });
  1356. }
  1357. function addReport() {
  1358. if (!canSahngbao) {
  1359. return;
  1360. }
  1361. var userId = $("#userId").val();
  1362. $.ajax({
  1363. url: '/home/addReport',
  1364. type: "post",
  1365. data: {
  1366. "userCreate": userId,
  1367. },
  1368. success: function (data) {
  1369. $.toast(data.msg)
  1370. var date = new Date();
  1371. var year = date.getFullYear();
  1372. var month = date.getMonth() + 1;
  1373. var day = date.getDate();
  1374. var hour = date.getHours();
  1375. var minute = date.getMinutes();
  1376. var second = date.getSeconds();
  1377. var time = year + '-' + month + '-' + day + ' ' + hour + ':' + minute + ':' + second
  1378. if (data.msg == "操作成功") {
  1379. canSahngbao = false;
  1380. document.getElementById("btn_shangbao").style['background-color'] = "#D9D9D9";
  1381. document.getElementById("txt_shangbao").style['color'] = "#0bb20c";
  1382. document.getElementById("txt_shangbaotime").style['color'] = "#0bb20c";
  1383. $('#txt_shangbao').empty();
  1384. $('#txt_shangbao').append("今日已上报");
  1385. $('#txt_shangbaotime').empty();
  1386. $('#txt_shangbaotime').append("上报时间:" + time);
  1387. }
  1388. },
  1389. });
  1390. }
  1391. $("#my-input-ribao").calendar({
  1392. dateFormat: 'yyyy-mm-dd',
  1393. inputReadOnly: false,
  1394. onChange: function (p, values, displayValues) {
  1395. var reportDate = values.toString();
  1396. var userId = $("#userId").val();
  1397. $.ajax({
  1398. url: '/home/home/queryRibaoReportDate',
  1399. data: {
  1400. "userCreate": userId,
  1401. "reportDate": reportDate,
  1402. },
  1403. type: 'GET',
  1404. success: function (data) {
  1405. if (data.data == undefined || data.data == "") {
  1406. $('#ribao_famliy').empty();
  1407. }
  1408. else {
  1409. if (data.data.length > 0) {
  1410. $('#ribao_famliy').empty();
  1411. data.data.forEach(function (v) {
  1412. helpValue1(v);
  1413. });
  1414. } else {
  1415. }
  1416. }
  1417. },
  1418. error: function () {
  1419. }
  1420. });
  1421. }
  1422. });
  1423. function helpValue1(v) {
  1424. var userName = v.userName + ":";
  1425. var grender = getGreder(v.grender);
  1426. var age = v.age;
  1427. var familyStatus = "";
  1428. if (v.familyStatus != 0)
  1429. familyStatus = "基本状况:" + getFamilyStatus(v.familyStatus) + ";";
  1430. var medical = "";
  1431. if (v.medical != 0)
  1432. medical = "新冠肺炎:" + getMedical(v.medical) + ";";
  1433. var singleRoom = "";
  1434. var uptownId = $("#uptownId").val();
  1435. if (uptownId != xiaoquId && uptownId != ceshixiaoquId) {
  1436. if (v.singleRoom != 0)
  1437. singleRoom = "单间隔离:" + getSingleRoom(v.singleRoom) + ";";
  1438. if (v.singleRoom == 0 && v.medical != 0)
  1439. singleRoom = "单间隔离:" + getSingleRoom(v.singleRoom) + ";";
  1440. }
  1441. var temperature = "体温:" + v.temperature + ";";
  1442. var cough = "";
  1443. if (v.cough != 0)
  1444. cough = "咳嗽现象:" + getCough(v.cough) + ";";
  1445. var muscle = "";
  1446. if (v.muscle != 0)
  1447. muscle = "肌肉酸痛:" + getMuscle(v.muscle) + ";";
  1448. var dyspnea = "";
  1449. if (v.dyspnea != 0)
  1450. dyspnea = "呼吸困难:" + getDyspnea(v.dyspnea) + ";";
  1451. var fatigue = "";
  1452. if (v.fatigue != 0)
  1453. fatigue = "乏力现象:" + getFatigue(v.fatigue) + ";";
  1454. var diarrhea = "";
  1455. if (v.diarrhea != 0)
  1456. diarrhea = "腹泻现象:" + getDiarrhea(v.diarrhea) + ";";
  1457. var others = "";
  1458. if (v.others != "")
  1459. others = "其他描述:" + v.others + ";";
  1460. var scoreRezult = "";
  1461. if (v.scoreRezult != 0)
  1462. scoreRezult = "评估结果:" + getScoreRezult(v.scoreRezult, v.temperatureScore) + ";";
  1463. var workLocal = "";
  1464. var todayLocal = "";
  1465. var isTrip = "";
  1466. var tripDet = "";
  1467. var uptownId = $("#uptownId").val();
  1468. if (uptownId == xiaoquId || uptownId == ceshixiaoquId) {
  1469. if (v.workLocal != 0) {
  1470. if (v.workLocal < 4)
  1471. workLocal = "工作驻地:" + getLocal(v.workLocal) + ";";
  1472. else
  1473. workLocal = "工作驻地:" + v.workLocalOther + ";";
  1474. }
  1475. if (v.todayLocal != 0) {
  1476. if (v.todayLocal < 4)
  1477. todayLocal = "今晚住地:" + getLocal(v.todayLocal) + ";";
  1478. else
  1479. todayLocal = "今晚住地:" + v.todayLocalOther + ";";
  1480. }
  1481. if (v.isTrip != undefined)
  1482. isTrip = "是否出行:" + getIsTrip(v.isTrip) + ";"
  1483. if (v.tripDet != undefined)
  1484. tripDet = "出行详细:" + v.tripDet + ";"
  1485. }
  1486. $('#ribao_famliy').append($('<div class="weui-media-box weui-media-box_text" style="height: auto">\n' +
  1487. ' <h4 class="weui-media-box__title">' + userName + '&nbsp;&nbsp;&nbsp;' + grender + '&nbsp;&nbsp;&nbsp;' + age + '</h4>\n' +
  1488. ' <div style="height: auto">' + familyStatus + medical + singleRoom + temperature + cough + muscle + dyspnea + fatigue + diarrhea + others + scoreRezult + workLocal + todayLocal + isTrip + tripDet + '</div>\n' +
  1489. ' </div>\n' +
  1490. ' '));
  1491. }
  1492. function getGreder(greder) {
  1493. if (greder == 1)
  1494. return "男";
  1495. else if (greder == 2)
  1496. return "女";
  1497. return "";
  1498. }
  1499. function getFamilyStatus(familyStatus) {
  1500. var familyStatusList = familyStatus.split(",");
  1501. var familyStatusString = "";
  1502. if (familyStatus == '0,0,0,0,0,0,0')
  1503. familyStatusString += "无病史,";
  1504. else {
  1505. if (familyStatusList[0] == 1)
  1506. familyStatusString += "心脑血管疾病(服用ARB),";
  1507. if (familyStatusList[1] == 1)
  1508. familyStatusString += "心脑血管疾病(未服ARB),";
  1509. if (familyStatusList[2] == 1)
  1510. familyStatusString += "呼吸系统病史,";
  1511. if (familyStatusList[3] == 1)
  1512. familyStatusString += "肿瘤病史,";
  1513. if (familyStatusList[4] == 1)
  1514. familyStatusString += "糖尿病史,";
  1515. if (familyStatusList[5] == 1)
  1516. familyStatusString += "服用过激素药物,";
  1517. if (familyStatusList[6] == 1)
  1518. familyStatusString += "妊娠期,";
  1519. }
  1520. return familyStatusString.substring(0, familyStatusString.length - 1);
  1521. }
  1522. function getCough(cough) {
  1523. if (cough == 0)
  1524. return "无咳嗽";
  1525. else if (cough == 1)
  1526. return "偶尔短暂咳嗽";
  1527. else if (cough == 2)
  1528. return "咳嗽轻度影响生活";
  1529. else if (cough == 3)
  1530. return "咳嗽严重影响生活";
  1531. return "";
  1532. }
  1533. function getMuscle(muscle) {
  1534. if (muscle == 0)
  1535. return "无";
  1536. else if (muscle == 1)
  1537. return "按压有";
  1538. else if (muscle == 2)
  1539. return "偶尔";
  1540. else if (muscle == 3)
  1541. return "持续有";
  1542. return "";
  1543. }
  1544. function getDyspnea(dyspnea) {
  1545. if (dyspnea == 0)
  1546. return "无";
  1547. else if (dyspnea == 1)
  1548. return "急走或上坡气短";
  1549. else if (dyspnea == 2)
  1550. return "气短而走路变慢";
  1551. else if (dyspnea == 3)
  1552. return "走路数分钟后气短";
  1553. else if (dyspnea == 4)
  1554. return "气短无法离开房间";
  1555. return "";
  1556. }
  1557. function getFatigue(fatigue) {
  1558. if (fatigue == 0)
  1559. return "无";
  1560. else if (fatigue == 1)
  1561. return "体力劳动后不能恢复";
  1562. else if (fatigue == 2)
  1563. return "轻体力活非常累";
  1564. else if (fatigue == 3)
  1565. return "不能正常生活";
  1566. return "";
  1567. }
  1568. function getMedical(medical) {
  1569. if (medical == 0)
  1570. return "无";
  1571. else if (medical == 1)
  1572. return "确诊";
  1573. else if (medical == 2)
  1574. return "疑似";
  1575. else if (medical == 3)
  1576. return "有接触史";
  1577. else if (medical == 4)
  1578. return "解除隔离";
  1579. return "";
  1580. }
  1581. function getSingleRoom(singleRoom) {
  1582. if (singleRoom == 0)
  1583. return "否";
  1584. else if (singleRoom == 1)
  1585. return "是";
  1586. return "";
  1587. }
  1588. function getIsTrip(isTrip) {
  1589. if (isTrip == 0)
  1590. return "否";
  1591. else if (isTrip == 1)
  1592. return "是";
  1593. return "";
  1594. }
  1595. function getLocal(local) {
  1596. if (local == 0)
  1597. return "";
  1598. else if (local == 1)
  1599. return "武汉市";
  1600. else if (local == 2)
  1601. return "宜昌市";
  1602. else if (local == 3)
  1603. return "当阳市";
  1604. else if (local == 4)
  1605. return "其它地点";
  1606. return "";
  1607. }
  1608. function getLocalOther(local, localOther) {
  1609. if (local == 0)
  1610. return "";
  1611. else if (local == 1)
  1612. return "武汉市";
  1613. else if (local == 2)
  1614. return "宜昌市";
  1615. else if (local == 3)
  1616. return "当阳市";
  1617. else if (local == 4)
  1618. return localOther;
  1619. return "";
  1620. }
  1621. function getTripType(tripType) {
  1622. if (tripType == 0)
  1623. return "";
  1624. else if (tripType == 1)
  1625. return "长途汽车";
  1626. else if (tripType == 2)
  1627. return "火车";
  1628. else if (tripType == 3)
  1629. return "飞机";
  1630. else if (tripType == 4)
  1631. return "自驾";
  1632. return "";
  1633. }
  1634. function getDiarrhea(diarrhea) {
  1635. if (diarrhea == 0)
  1636. return "无";
  1637. else if (diarrhea == 1)
  1638. return "轻度腹泻(少于3次)";
  1639. else if (diarrhea == 2)
  1640. return "中度腹泻(4-6次)";
  1641. else if (diarrhea == 3)
  1642. return "重度腹泻(超过6次)";
  1643. return "";
  1644. }
  1645. function clearShow() {
  1646. console.log("qingkong")
  1647. $("#suspectedId").val("");
  1648. $("#js_input_user_sex").val("");
  1649. $("#js_input_user_sex").attr("data-values", "");
  1650. $("#js_input_user_name").val("");
  1651. $("#js_input_user_age").val("");
  1652. $("#js_input_user_status").val("");
  1653. $("#js_input_user_status").attr("data-values", "");
  1654. $("#jibenmiaoshu").val("");
  1655. $("#switchQuezhen").val("");
  1656. $("#switchQuezhen").attr("data-values", "");
  1657. $("#switchQuezhen_zz").val("");
  1658. $("#switchQuezhen_zz").attr("data-values", "");
  1659. $("#switchDanjiangeli").val("");
  1660. $("#switchDanjiangeli").attr("data-values", "");
  1661. $("#js_input_user_tiwen").val("");
  1662. $("#js_input_user_kesou").val("");
  1663. $("#js_input_user_kesou").attr("data-values", "");
  1664. $("#js_input_user_jirou").val("");
  1665. $("#js_input_user_jirou").attr("data-values", "");
  1666. $("#js_input_user_huxi").val("");
  1667. $("#js_input_user_huxi").attr("data-values", "");
  1668. $("#js_input_user_fali").val("");
  1669. $("#js_input_user_fali").attr("data-values", "");
  1670. $("#js_input_user_fuxie").val("");
  1671. $("#js_input_user_fuxie").attr("data-values", "");
  1672. $("#shuruqita").val("");
  1673. $("#js_input_score_rezult").val("");
  1674. $("#js_input_score_rezult_value").val("");
  1675. $("#js_input_temperature_score").val("");
  1676. $("#js_input_score_histroy").val("");
  1677. $("#js_input_score").val("");
  1678. //出行
  1679. $("#js_input_gzzd").val("");
  1680. $("#js_input_gzzd").attr("data-values", "");
  1681. $("#js_input_qtdd").val("");
  1682. $("#js_input_jrszd").val("");
  1683. $("#js_input_jrszd").attr("data-values", "");
  1684. $("#js_input_jrszq").val("");
  1685. $("#js_input_sf").val(getIsTrip(0));
  1686. $("#js_input_sf").attr("data-values", 0);
  1687. $('#none')[0].style.display = 'none';
  1688. $("input[id='s18']").removeAttr("checked");
  1689. $("input[id='s19']").removeAttr("checked");
  1690. $("input[id='s20']").removeAttr("checked");
  1691. $("input[id='s21']").removeAttr("checked");
  1692. $("input[id='s22']").removeAttr("checked");
  1693. }
  1694. //健康评估
  1695. $('#ribao_score').on('click', function () {
  1696. var suspectedId = $("#suspectedId").val();
  1697. var userId = $("#userId").val();
  1698. var userName = $("#js_input_user_name").val();
  1699. var medical = $("input[name='radio']:checked").val() == undefined ? 0 : $("input[name='radio']:checked").val();
  1700. var medicalzz = $("#switchQuezhen_zz").attr("data-values") == undefined ? 0 : $("#switchQuezhen_zz").attr("data-values");
  1701. var temperature = $("#js_input_user_tiwen").val() == "" ? 0 : $("#js_input_user_tiwen").val();
  1702. var cough = $("#js_input_user_kesou").attr("data-values") == undefined ? 0 : $("#js_input_user_kesou").attr("data-values");
  1703. var muscle = $("#js_input_user_jirou").attr("data-values") == undefined ? 0 : $("#js_input_user_jirou").attr("data-values");
  1704. var dyspnea = $("#js_input_user_huxi").attr("data-values") == undefined ? 0 : $("#js_input_user_huxi").attr("data-values");
  1705. var fatigue = $("#js_input_user_fali").attr("data-values") == undefined ? 0 : $("#js_input_user_fali").attr("data-values");
  1706. var diarrhea = $("#js_input_user_fuxie").attr("data-values") == undefined ? 0 : $("#js_input_user_fuxie").attr("data-values");
  1707. if (userName == undefined || userName == '') {
  1708. $.alert("请填写姓名");
  1709. return;
  1710. }
  1711. if (temperature <= 0) {
  1712. $.alert("请填写体温");
  1713. return;
  1714. }
  1715. if (temperature > 50 || temperature < 30) {
  1716. $.alert("请填写正确的体温");
  1717. return;
  1718. }
  1719. $.ajax({
  1720. url: '/home/addScore',
  1721. type: "post",
  1722. data: {
  1723. "userName": userName,
  1724. "suspectedId": suspectedId,
  1725. "userCreate": userId,
  1726. "medical": medical,
  1727. "temperature": temperature,
  1728. "cough": cough,
  1729. "muscle": muscle,
  1730. "dyspnea": dyspnea,
  1731. "fatigue": fatigue,
  1732. "diarrhea": diarrhea,
  1733. },
  1734. success: function (data) {
  1735. if (data == undefined) {
  1736. $('#js_input_score_rezult').empty();
  1737. $('#js_input_score_rezult_value').empty();
  1738. $('#js_input_temperature_score').empty();
  1739. $('#js_input_score_histroy').empty();
  1740. $('#js_input_score').empty();
  1741. }
  1742. else {
  1743. $('#js_input_score_rezult').empty();
  1744. $('#js_input_temperature_score').empty();
  1745. $('#js_input_score_histroy').empty();
  1746. $('#js_input_score').empty();
  1747. var ScoreRezult = getScoreRezult(data.scoreRezult, data.temperatureScore);
  1748. $("#js_input_score_rezult").val(ScoreRezult);
  1749. $("#js_input_score_rezult_value").val(data.scoreRezult);
  1750. $("#js_input_temperature_score").val(data.temperatureScore);
  1751. $("#js_input_score_histroy").val(data.scoreHistory);
  1752. $("#js_input_score").val(data.score);
  1753. }
  1754. },
  1755. });
  1756. });
  1757. function getScoreRezult(scoreRezult, temperatureScore) {
  1758. if (scoreRezult == 0)
  1759. return "未评估";
  1760. else if (scoreRezult == 1) {
  1761. if (temperatureScore > 1)
  1762. return "正常,间隔时间服用退烧药,多休息,多喝水";
  1763. else
  1764. return "正常";
  1765. }
  1766. else if (scoreRezult == 2) {
  1767. if (temperatureScore > 1)
  1768. return "注意观察,间隔时间服用退烧药,多休息,多喝水";
  1769. else
  1770. return "注意观察";
  1771. }
  1772. else if (scoreRezult == 3)
  1773. return "联系社区医生(或者在线问诊)";
  1774. else if (scoreRezult == 4)
  1775. return "尽快就诊";
  1776. return "";
  1777. }