comprehensive-query.js 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748
  1. Vue.use(Vuedals.default);
  2. new Vue({
  3. el: '#main',
  4. data: {
  5. height: '',
  6. isloading: false, //加载中
  7. start: '',
  8. searchStr:1,
  9. end: '',
  10. tabledata: [], //表格数据
  11. levelList: [
  12. {level: '4', areaLevel: '2'},
  13. {level: '3', areaLevel: '3'},
  14. {level: '2', areaLevel: '4'}
  15. ], //两种搜索,地区等级对比
  16. areaLevel: '', // 2、市,3、区,4、社区,5、团队
  17. initareaLevel: '',
  18. initlevel: '',
  19. initarea: '',
  20. level: '',
  21. area: '',
  22. areaTitle: '',
  23. index: '121',
  24. lowLevel: '',
  25. initlowLevel: '',
  26. years: [],
  27. chooseYear: '',
  28. userRole: '',
  29. treedata: [],
  30. treedataExpert: [{label: '邀请专科回复统计', id: '1'}],
  31. tableHeader: [],
  32. defaultProps: {
  33. children: 'children',
  34. label: 'label'
  35. },
  36. pickerOptions: {
  37. disabledDate: function (time) {
  38. return time.getTime() > Date.now();
  39. }
  40. },
  41. radio: '1',
  42. timeLevel: 2,
  43. searchJson: {},
  44. currentPage: 1,
  45. currentSize: 10,
  46. datatotal: 0,
  47. rangeList: [],
  48. rangeCode: '',
  49. areaList: [],
  50. areaCode: '',
  51. communityList: [{code: '', name: '全部'}],
  52. communityCode: '',
  53. teamList: [{code: '', name: '全部'}],
  54. teamCode: '',
  55. detailInquire: [
  56. {
  57. label: '明细查询',
  58. children: [
  59. {label: '咨询分析', id: '33'},
  60. {label: '签约分析', id: '34'},
  61. {label: '专病分析', id: '35'},
  62. {label: '生日祝福分析', id: '36'},
  63. {label: '上门服务分析', id: '37'},
  64. {label: '长处方分析', id: '38'},
  65. {label: '体征数据分析', id: '39'},
  66. {label: '上转预约明细', id: '40'},
  67. {label: '专病复诊明细', id: '53'},
  68. {label: '微信绑定明细', id: '41'},
  69. {label: '居民积分明细', id: '42'},
  70. {label: '入户访视明细', id: '43'},
  71. {label: '康复下转明细', id: '44'},
  72. {label: '邀请专科回复明细', id: '45'}
  73. ]
  74. }
  75. ],
  76. mzfTabsData: [
  77. {label: '慢阻肺医院工作量表', id: '46'},
  78. {label: '慢阻肺患者查询', id: '47'},
  79. {label: '慢阻肺入组进度', id: '48'},
  80. {label: '慢阻肺入组总明细', id: '49'},
  81. {label: '慢阻肺随访进度', id: '50'},
  82. {label: '慢阻肺随访总明细', id: '51'},
  83. {label: 'v1入组情况报表', id: '52'},
  84. {label: '慢阻肺呼吸训练数据', id: '54'},
  85. {label: '慢阻肺手表数据', id: '55'},
  86. {label: '慢阻肺监查、稽查情况统计', id: '56'},
  87. {label: '第一阶段入组随访进度', id: '57'},
  88. {label: '第二阶段三级医院入组进度', id: '58'},
  89. {label: '第二阶段社区医院入组进度', id: '59'},
  90. {label: '第二阶段三级医院随访进度', id: '60'},
  91. {label: '第二阶段社区医院随访进度', id: '61'},
  92. {label: '第二阶段三级医院随访进度及出组情况', id: '62'}
  93. ],
  94. mzfJcTabsData: [
  95. {label: '慢阻肺患者档案', id: '63'},
  96. {label: '管理情况自助查询', id: '64'}
  97. ],
  98. // 慢阻肺管理情况自处查询字段列表
  99. copdManageSearchFilterList: [
  100. {
  101. label: '总患者数',
  102. value: 'totalPatients'
  103. },
  104. {
  105. label: '今年新增人数',
  106. value: 'newPatientsThisYear'
  107. },
  108. {
  109. label: '已随访人数',
  110. value: 'followedUpPatients'
  111. },
  112. {
  113. label: '完成率',
  114. value: 'completionRate'
  115. },
  116. {
  117. label: '回退次数',
  118. value: 'returnCount'
  119. },
  120. {
  121. label: '转移次数',
  122. value: 'transferCount'
  123. },
  124. {
  125. label: '病人转归情况人数',
  126. value: 'patientOutcomeCount'
  127. },
  128. {
  129. label: '家签患者人数',
  130. value: 'signedPatients'
  131. },
  132. {
  133. label: '非家签患者人数',
  134. value: 'unsignedPatients'
  135. },
  136. {
  137. label: '已分配人数',
  138. value: 'assignedPatients'
  139. },
  140. {
  141. label: '未分配人数',
  142. value: 'unassignedPatients'
  143. },
  144. {
  145. label: '已接收人数',
  146. value: 'receivedPatients'
  147. },
  148. {
  149. label: '未接收人数',
  150. value: 'unreceivedPatients'
  151. },
  152. {
  153. label: '未随访人数',
  154. value: 'unfollowedPatients'
  155. },
  156. {
  157. label: '已随访次数',
  158. value: 'followUpCount'
  159. },
  160. {
  161. label: '失访人数',
  162. value: 'lostFollowUpPatients'
  163. },
  164. {
  165. label: '死亡人数',
  166. value: 'deceasedPatients'
  167. }
  168. ],
  169. // 家庭病床统计
  170. jtbcTabsData: [
  171. {label: '患者情况分析', id: '71'},
  172. {label: '建床人数统计', id: '72'},
  173. {label: '计划服务情况分析', id: '73'},
  174. {label: '病床查床情况分析', id: '74'},
  175. {label: '转诊与撤床情况分析', id: '75'},
  176. ],
  177. copdFilterCheckValue: [],
  178. handleNodeShow: 1,
  179. handleNodeId: 0,
  180. radio1: '',
  181. radio2: '',
  182. radio3: '',
  183. radio4: '',
  184. radio5: '',
  185. radio6: '',
  186. radio7: '',
  187. radio8: '',
  188. radio9: '',
  189. radio10: '',
  190. cities: [
  191. {value: '高血压', num: '4'},
  192. {value: '糖尿病', num: '5'},
  193. {value: '65岁以上人群', num: '3'},
  194. {value: '0-6岁小孩', num: '7'},
  195. {value: '计划生育家庭', num: '9'},
  196. {value: '严重精神障碍', num: '10'},
  197. {value: '残疾人', num: '11'},
  198. {value: '普通人群', num: '1'},
  199. {value: '结核病', num: '12'},
  200. {value: '低保人群', num: '8'},
  201. {value: '孕产妇', num: '6'}
  202. ],
  203. checkedCities: [],
  204. specialCities: [],
  205. specialCheckedCities: [],
  206. serveCities: [
  207. {value: '残疾人', num: '1'},
  208. {value: '失能/半失能老人', num: '5'},
  209. {value: '80岁以上老人', num: '7'},
  210. {value: '肺结核患者', num: '2'},
  211. {value: '计生特殊家庭', num: '3'},
  212. {value: '重性精神病', num: '4'},
  213. {value: '其他', num: '6'}
  214. ],
  215. serveSpecialCities: [],
  216. options: [
  217. {
  218. value: '1',
  219. label: '是'
  220. },
  221. {
  222. value: '0',
  223. label: '否'
  224. }
  225. ],
  226. value: '',
  227. form: {
  228. endorseTheTicket: '',
  229. renew: '',
  230. backToSign: '',
  231. WeChat: ''
  232. },
  233. form2: {
  234. juniorCollege: '',
  235. family: '',
  236. resident: '',
  237. patientType: ''
  238. },
  239. form3: {
  240. family: '',
  241. resident: ''
  242. },
  243. form4: {
  244. family: '',
  245. resident: ''
  246. },
  247. form5: {
  248. family: '',
  249. resident: ''
  250. },
  251. handleData: [],
  252. diseaseData: [],
  253. serviceTypeData: [],
  254. analyseData: [], //分析数据
  255. searchJsonTime: undefined,
  256. loadingTwo: false,
  257. radio1Show: null,
  258. serverType: '',
  259. diseaseDataType: '',
  260. serviceTypeDataType: '',
  261. fullscreenLoading: false,
  262. derive: '',
  263. tabsList: [
  264. {id: '1', text: '综合查询', show: true},
  265. {id: '2', text: '明细查询', show: false},
  266. {id: '3', text: '汇总数据', show: false},
  267. {id: '4', text: '专科综合查询', show: false},
  268. // {id:'5',text:'慢阻肺综合查询',show:false},
  269. {id: '6', text: '慢阻肺统计', show: false},
  270. {id: '7', text: '疾控慢阻肺监测', show: false},
  271. {id: '8', text: '家庭病床统计', show: false}
  272. ],
  273. tabsId: '1',
  274. facility: '', //体征数据分析 - 设备类型
  275. illness: '', //体征数据分析 - 疾病类型
  276. form6: {
  277. resident: '',
  278. doctor: ''
  279. },
  280. form7: {
  281. resident: '',
  282. doctorOne: '',
  283. hospital: '',
  284. doctorTwo: '',
  285. administrativeOffice: ''
  286. },
  287. form9: {
  288. resident: '',
  289. doctorTwo: ''
  290. },
  291. form10: {
  292. resident: '',
  293. doctorTwo: ''
  294. },
  295. form11: {
  296. patientName: '',
  297. status: '',
  298. hospitalCode: '',
  299. hospitalDoctor: '',
  300. orgCode: '',
  301. doctor: '',
  302. archiveStatus: '',
  303. patientType: ''
  304. },
  305. form12: {
  306. patientName: '',
  307. status: '',
  308. doctor: '',
  309. hospital: '',
  310. archiveStatus: ''
  311. },
  312. getHealthData: [],
  313. form8: {
  314. renew: ''
  315. },
  316. reservationData: [],
  317. wexinBindingData: [],
  318. hospitalData: [],
  319. administrativeOffice: [],
  320. jifenData: [],
  321. ruhuData: [],
  322. collect: [
  323. {
  324. id: 'kfxzrs,kfxzrc,szrs,szrc',
  325. label: '专病汇总',
  326. code: '1',
  327. children: [
  328. {id: 'kfxzrs', label: '康复下转人数', code: '1'},
  329. {id: 'kfxzrc', label: '康复下转人次', code: '1'},
  330. {id: 'szrs', label: '上转人数', code: '1'},
  331. {id: 'szrc', label: '上转人次', code: '1'}
  332. ]
  333. },
  334. {
  335. id: 'scsbs,scrc,yctzrc,gyrc',
  336. label: '体征数据汇总',
  337. code: '2',
  338. children: [
  339. {id: 'scsbs', label: '上传设备数', code: '2'},
  340. {id: 'scrc', label: '上传人次', code: '2'},
  341. {id: 'yctzrc', label: '异常体征人次', code: '2'},
  342. {id: 'gyrc', label: '干预人次', code: '2'}
  343. ]
  344. },
  345. {
  346. id: 'fwgd',
  347. label: '上门服务汇总',
  348. code: '3',
  349. children: [{id: 'fwgd', label: '服务工单', code: '3'}]
  350. }
  351. ],
  352. specHosName: '',
  353. specHosList: [],
  354. collectCode: '',
  355. diseaseReport: [],
  356. diseaseColumn: [],
  357. diseaseHeader: [],
  358. facilitySign: '',
  359. getDeviceReport: [],
  360. getDeviceColumn: [],
  361. getDeviceHeader: [],
  362. getDoorReport: [],
  363. getDoorColumn: [],
  364. getDoorHeader: [],
  365. isCheck: false,
  366. deorsumvergence: [{value: '', label: '全部'}],
  367. rehabilitationHospital: [{value: '', label: '全部'}],
  368. archiveList: [{value: '', label: '全部'}],
  369. inviteStatus: [
  370. {value: '', label: '全部'},
  371. {value: '0', label: '待回复'},
  372. {value: '1', label: '进行中'},
  373. {value: '2', label: '已完成'},
  374. {value: '3', label: '未回复'}
  375. ],
  376. inviteStatus1: [
  377. {value: '', label: '全部'},
  378. {value: '1', label: '门诊患者'},
  379. {value: '2', label: '出院患者'}
  380. ],
  381. recoveryList: [],
  382. dialogVisible: false,
  383. signatoryList: [],
  384. tableKey: '',
  385. indicator: [],
  386. communityHospitals: [],
  387. invitationList: [],
  388. expertFamilyIdType: '',
  389. expertReplyData: [],
  390. specializedHospital: [{value: '', label: '全部'}],
  391. mzfzhcxData: [{name: '测试数据1条'}],
  392. mzftjTree: [
  393. {
  394. id: 'zhzrs,yglrs,yrzrs,ysfrs,yczrs,bnrglrs,swrs',
  395. label: '患者管理统计',
  396. code: '1',
  397. children: [
  398. {id: 'zhzrs', label: '总患者人数', code: '1'},
  399. {id: 'yglrs', label: '已管理人数', code: '1'},
  400. {id: 'yrzrs', label: '已入组人数', code: '1'},
  401. {id: 'ysfrs', label: '已失访人数', code: '1'},
  402. {id: 'yczrs', label: '已出组人数', code: '1'},
  403. {id: 'bnrglrs', label: '不纳入管理人数', code: '1'},
  404. {id: 'swrs', label: '死亡人数', code: '1'}
  405. ]
  406. },
  407. {
  408. id: 'yjcrs,yjccs,djcrs,djccs,djcrs,djccs',
  409. label: '监查稽查统计',
  410. code: '2',
  411. children: [
  412. {id: 'yjcrs', label: '已稽查人数', code: '2'},
  413. {id: 'yjccs', label: '已稽查次数', code: '2'},
  414. {id: 'djcrs', label: '待监查人数', code: '2'},
  415. {id: 'djccs', label: '待监查次数', code: '2'},
  416. {id: 'djcrs', label: '待稽查人数', code: '2'},
  417. {id: 'djccs', label: '待稽查次数', code: '2'}
  418. ]
  419. },
  420. {
  421. id: 'xzrs,jsxzrs',
  422. label: '下转接收统计',
  423. code: '3',
  424. children: [
  425. {id: 'xzrs', label: '下转人数', code: '3'},
  426. {id: 'jsxzrs', label: '接收下转人数', code: '3'}
  427. ]
  428. },
  429. {
  430. id: 'v1sxrs,v2rzrs,v3rs,v4rs,v5rs,v6rs,zgrs,tlzls',
  431. label: '随访进度统计',
  432. code: '4',
  433. children: [
  434. {id: 'v1sxrs', label: 'v1筛选人数', code: '4'},
  435. {id: 'v2rzrs', label: 'v2入组人数', code: '4'},
  436. {id: 'v3rs', label: 'v3人数', code: '4'},
  437. {id: 'v4rs', label: 'v4人数', code: '4'},
  438. {id: 'v5rs', label: 'v5人数', code: '4'},
  439. {id: 'v6rs', label: 'v6人数', code: '4'},
  440. {id: 'zgrs', label: '在管人数', code: '4'},
  441. {id: 'tlzls', label: '脱落总例数', code: '4'}
  442. ]
  443. }
  444. ],
  445. list: [],
  446. startTime: new Date('2023', '05', '26'),
  447. endTime: new Date(),
  448. regionList: [],
  449. regionData: [{label: '全市', id: '1', type: '1'}],
  450. regionListList: [],
  451. tertiaryHospitalsData: [{label: '全部', id: '1', type: '2'}],
  452. communityHospitalsList: [],
  453. communityHospitalsData: [{label: '全部', id: '1', type: '3'}],
  454. groupingList: [],
  455. groupingData: [{label: '全部', id: '1', type: '4'}],
  456. administrationStatusList: [],
  457. administrationStatusData: [{label: '全部', id: '1', type: '5'}],
  458. show: false,
  459. showTwo: false,
  460. showThree: false,
  461. currentPage: 1,
  462. currentSize: 10,
  463. datatotal: 0, //总数
  464. loadingTwo: false,
  465. setDisabled: {
  466. disabledDate: function (time) {
  467. return time.getTime() < new Date('2023', '05', '26') || time.getTime() > Date.now();
  468. }
  469. },
  470. s: '',
  471. e: '',
  472. // 下转状态
  473. transferStatusOptions: [
  474. {
  475. label: '全部',
  476. value: -1
  477. },
  478. {
  479. label: '已下转',
  480. value: 1
  481. },
  482. {
  483. label: '未下转',
  484. value: 2
  485. }
  486. ],
  487. // 接收状态
  488. receiveStatusOptions: [
  489. {
  490. label: '全部',
  491. value: -1
  492. },
  493. {
  494. label: '已接收',
  495. value: 1
  496. },
  497. {
  498. label: '未接收',
  499. value: 2
  500. }
  501. ],
  502. // 接收的社区医院
  503. receivingHospitalList: [],
  504. // 档案状态
  505. recordStatusOptions: [
  506. {
  507. label: '全部',
  508. value: -1
  509. },
  510. {
  511. label: '正常',
  512. value: 1
  513. },
  514. {
  515. label: '失访',
  516. value: 2
  517. },
  518. {
  519. label: '回退',
  520. value: 3
  521. }
  522. ],
  523. // 生存状态
  524. survivalStatusOption: [
  525. {
  526. label: '全部',
  527. value: -1
  528. },
  529. {
  530. label: '生存',
  531. value: 1
  532. },
  533. {
  534. label: '死亡',
  535. value: 2
  536. }
  537. ]
  538. },
  539. components: {
  540. vuedals: Vuedals.Component
  541. },
  542. watch: {
  543. rangeCode: function (val) {
  544. var vm = this;
  545. if (vm.initlevel != 2) {
  546. vm.communityCode = '';
  547. }
  548. vm.teamCode = '';
  549. vm.getTreeList();
  550. },
  551. areaCode: function (val) {
  552. var vm = this;
  553. vm.selChange(3);
  554. },
  555. communityCode: function (val) {
  556. var vm = this;
  557. vm.selChange(5);
  558. },
  559. 'startTime': {
  560. handler: function (o) {
  561. if (!o) {
  562. this.list.splice(0, 1);
  563. }
  564. },
  565. deep: true,
  566. immediate: true
  567. },
  568. 'endTime': {
  569. handler: function (o) {
  570. if (!o) {
  571. this.list.splice(0, 1);
  572. }
  573. },
  574. deep: true,
  575. immediate: true
  576. }
  577. },
  578. mounted: function () {
  579. var vm = this;
  580. //初始化数据
  581. var searchStr = location.search;
  582. if(searchStr){
  583. vm.searchStr=0
  584. vm.tabsList=[{id: '7', text: '疾控慢阻肺监测', show: true}]
  585. vm.tabsClick({id: '7', text: '疾控慢阻肺监测', show: true})
  586. }
  587. initData(vm);
  588. vm.getQuotaStr()
  589. vm.getDiseaseTypeList();
  590. vm.height = document.body.offsetHeight - 85;
  591. window.onresize = function () {
  592. vm.height = document.body.offsetHeight - 85;
  593. };
  594. this.s = this.startTime.format('yyyy-MM-dd');
  595. this.e = this.endTime.format('yyyy-MM-dd');
  596. this.list.unshift({type: '0', id: 'time', label: this.s + '~' + this.e});
  597. },
  598. methods: {
  599. //获取综合查询指标
  600. getQuotaStr(){
  601. var vm =this
  602. statisticAPI.getDictByDictName({name:'jkcopd_quotaStr'}).then(function(res){
  603. vm.copdManageSearchFilterList=res.list
  604. console.log(vm.copdManageSearchFilterList,'osidosioaidoasodais')
  605. })
  606. },
  607. startTimeChange: function (o) {
  608. if (!this.list[0] || this.list[0].type != 0) {
  609. this.list.unshift({
  610. type: '0',
  611. id: 'time',
  612. label: o.format('yyyy-MM-dd') + '~' + this.endTime.format('yyyy-MM-dd')
  613. });
  614. } else {
  615. this.list[0].label = o.format('yyyy-MM-dd') + '~' + this.endTime.format('yyyy-MM-dd');
  616. }
  617. },
  618. endTimeChange: function (o) {
  619. if (!this.list[0] || this.list[0].type != 0) {
  620. this.list.unshift({
  621. type: '0',
  622. id: 'time',
  623. label: this.startTime.format('yyyy-MM-dd') + '~' + o.format('yyyy-MM-dd')
  624. });
  625. } else {
  626. this.list[0].label = this.startTime.format('yyyy-MM-dd') + '~' + o.format('yyyy-MM-dd');
  627. }
  628. },
  629. // 确定
  630. confirm: function () {
  631. this.hospitalWorkStatistics();
  632. },
  633. // 选择
  634. change: function (val) {
  635. this.list = this.list.concat(val);
  636. },
  637. // 已选
  638. deleteClick: function (item) {
  639. if (item.id == 'time') {
  640. this.startTime = '';
  641. this.endTime = '';
  642. this.list.splice(0, 1);
  643. }
  644. var index = this.list.findIndex(function (v) {
  645. return item.id == v.id;
  646. });
  647. this.list.splice(index, 1);
  648. },
  649. // 取消
  650. cancel: function () {
  651. this.startTime = new Date('2023', '05', '26');
  652. this.endTime = new Date();
  653. if (!this.list[0] || this.list[0].type != 0) {
  654. this.list.unshift({
  655. type: '0',
  656. id: 'time',
  657. label: this.startTime.format('yyyy-MM-dd') + '~' + this.endTime.format('yyyy-MM-dd')
  658. });
  659. } else {
  660. this.list[0].label = this.startTime.format('yyyy-MM-dd') + '~' + this.endTime.format('yyyy-MM-dd');
  661. }
  662. },
  663. // 导出
  664. exportHandle: function () {
  665. var vm = this;
  666. vm.loadingTwo = true;
  667. statisticAPI
  668. .exportHospitalWorkStatistics(
  669. {
  670. startDate: this.startTime.format('yyyy-MM-dd'),
  671. endDate: this.endTime.format('yyyy-MM-dd')
  672. },
  673. '慢阻肺综合查询表.xls'
  674. )
  675. .then(function (res) {
  676. vm.loadingTwo = false;
  677. });
  678. },
  679. renderTableHeader: function (h, item) {
  680. var $index = item.$index;
  681. return h('div', [
  682. h('span', this.diseaseHeader[$index - 1] + ' ', {
  683. align: 'center',
  684. marginTop: '10px'
  685. }),
  686. h(
  687. 'el-popover',
  688. {
  689. props: {
  690. placement: 'top-start', // 一般 icon 处可添加浮层说明,浮层位置等属性
  691. width: '100',
  692. trigger: 'hover'
  693. }
  694. },
  695. [
  696. h('p', this.indicator[$index - 2], {
  697. class: 'text-align: center; margin: 0'
  698. }),
  699. h('i', {
  700. // 生成 i 标签 ,添加icon 设置 样式,slot 必填
  701. class: 'el-icon-question',
  702. style: 'color:#ccc,margin:18px,padding-top:10px',
  703. slot: 'reference'
  704. })
  705. ]
  706. )
  707. ]);
  708. },
  709. renderHeadeRexpert: function (h, item) {
  710. var index = item.$index;
  711. return [
  712. index == '3'
  713. ? '邀请次数'
  714. : index == '4'
  715. ? '进行中'
  716. : index == '5'
  717. ? '已回复'
  718. : index == '6'
  719. ? '未回复'
  720. : index == '7'
  721. ? '回复率'
  722. : index == '8'
  723. ? '平均响应时长'
  724. : '用户评价',
  725. h(
  726. 'el-tooltip',
  727. {
  728. props: {
  729. content: (function () {
  730. return index == '3'
  731. ? '发起邀请总次数'
  732. : index == ''
  733. ? '其中咨询未完成,包含待回复和进行中'
  734. : index == '5'
  735. ? '其中医生已回复且咨询已结束的'
  736. : index == '6'
  737. ? '其中咨询已结束医生未回复的'
  738. : index == '7'
  739. ? '已回复 / 邀请次数'
  740. : index == '8'
  741. ? '[邀请1响应时长+ 邀请2响应时长 + ...] / 总次数'
  742. : '用户评价';
  743. })(),
  744. placement: 'top'
  745. }
  746. },
  747. [
  748. h('span', {
  749. class: {
  750. 'el-icon-question': true
  751. }
  752. })
  753. ]
  754. )
  755. ];
  756. },
  757. // 获取康复下转明细 --- 下转状态
  758. deorsumvergenceStatusFunction: function (name) {
  759. var vm = this;
  760. signAPI.getDictByDictName({name: name}).then(function (res) {
  761. if (res.status === 200) {
  762. if (name == 'rehabilitation_status') {
  763. res.list.forEach(function (v) {
  764. vm.deorsumvergence.push({
  765. value: v.code,
  766. label: v.value
  767. });
  768. });
  769. }
  770. if (name == 'rehabilitation_hospital') {
  771. res.list.forEach(function (v) {
  772. vm.rehabilitationHospital.push({
  773. value: v.code,
  774. label: v.value
  775. });
  776. });
  777. }
  778. if (name == 'archive_status') {
  779. res.list.forEach(function (v) {
  780. vm.archiveList.push({
  781. value: v.code,
  782. label: v.value
  783. });
  784. });
  785. }
  786. }
  787. });
  788. },
  789. // 获取社区医院
  790. hospitalsByType: function () {
  791. var vm = this;
  792. statisticAPI
  793. .hospitalsByType({
  794. type: 1,
  795. code: '350200'
  796. })
  797. .then(function (res) {
  798. if (res.status == 200) {
  799. res.list.forEach(function (v) {
  800. vm.communityHospitals.push({
  801. value: v.code,
  802. label: v.name
  803. });
  804. });
  805. }
  806. })
  807. .catch(function (err) {
  808. console.log(err, 'Errr');
  809. });
  810. },
  811. // 康复下转操作
  812. operation: function (num, item) {
  813. var vm = this;
  814. if (num != 2) {
  815. statisticAPI
  816. .synchronizePationSingle({id: item.id})
  817. .then(function (res) {
  818. if (res.status == 200) {
  819. toastr.info('操作成功');
  820. this.tableKey = Math.random();
  821. } else {
  822. toastr.error(res.msg);
  823. }
  824. })
  825. .catch(function (err) {
  826. console.log(err, 'Errr');
  827. });
  828. } else {
  829. vm.signatoryList = [];
  830. statisticAPI
  831. .kangfuGetSignInfo({idcard: item.idcard})
  832. .then(function (res) {
  833. if (res.status == 200) {
  834. if (res.data != null) {
  835. vm.signatoryList.push(res.data);
  836. }
  837. }
  838. })
  839. .catch(function (err) {
  840. console.log(err, 'Errr');
  841. });
  842. this.dialogVisible = true;
  843. }
  844. },
  845. getImgurl: function (url) {
  846. return httpRequest.getImgUrl(url);
  847. },
  848. reset: function () {
  849. if (this.tabsId == 1) {
  850. this.getTreeList();
  851. } else {
  852. this.collect = [
  853. {
  854. id: 'kfxzrs,kfxzrc,szrs,szrc',
  855. label: '专病汇总',
  856. code: '1',
  857. children: [
  858. {id: 'kfxzrs', label: '康复下转人数', code: '1'},
  859. {id: 'kfxzrc', label: '康复下转人次', code: '1'},
  860. {id: 'szrs', label: '下转人数', code: '1'},
  861. {id: 'szrc', label: '下转人数', code: '1'}
  862. ]
  863. },
  864. {
  865. id: 'scsbs,scrc,yctzrc,gyrc',
  866. label: '体征数据汇总',
  867. code: '2',
  868. children: [
  869. {id: 'scsbs', label: '上传设备数', code: '2'},
  870. {id: 'scrc', label: '上传人次', code: '2'},
  871. {id: 'yctzrc', label: '异常体征人次', code: '2'},
  872. {id: 'gyrc', label: '干预人次', code: '2'}
  873. ]
  874. },
  875. {
  876. id: 'fwgd',
  877. label: '上门服务汇总',
  878. code: '3',
  879. children: [{id: 'fwgd', label: '服务工单', code: '3'}]
  880. }
  881. ];
  882. }
  883. },
  884. // 清除
  885. eliminateClick: function () {
  886. this.radio =
  887. this.handleNodeId == 44 || this.expertFamilyIdType == 'zhuanke1' || this.handleNodeId == 45 ? '2' : '1';
  888. this.radio1 = '';
  889. this.radio2 = '';
  890. this.radio3 = '';
  891. this.radio4 = '';
  892. this.radio5 = '';
  893. this.radio6 = '';
  894. this.radio7 = '';
  895. this.radio8 = '';
  896. this.radio9 = '';
  897. this.radio10 = '';
  898. this.form = {
  899. endorseTheTicket: '',
  900. renew: '',
  901. backToSign: '',
  902. WeChat: ''
  903. };
  904. this.form2 = {
  905. juniorCollege: '',
  906. family: '',
  907. resident: ''
  908. };
  909. this.form3 = {
  910. family: '',
  911. resident: ''
  912. };
  913. this.form4 = {
  914. family: '',
  915. resident: ''
  916. };
  917. this.form5 = {
  918. family: '',
  919. resident: ''
  920. };
  921. this.facility = ''; //体征数据分析 - 设备类型
  922. this.illness = ''; //体征数据分析 - 疾病类型
  923. this.form6 = {
  924. resident: '',
  925. doctor: ''
  926. };
  927. this.form7 = {
  928. resident: '',
  929. doctorOne: '',
  930. hospital: '',
  931. doctorTwo: '',
  932. administrativeOffice: ''
  933. }
  934. ;(this.form9 = {
  935. resident: '',
  936. doctorTwo: ''
  937. }),
  938. (this.form10 = {
  939. resident: '',
  940. doctorTwo: ''
  941. }),
  942. (this.form8 = {
  943. renew: ''
  944. });
  945. this.facilitySign = '';
  946. this.form11 = {
  947. patientName: '',
  948. status: '',
  949. hospitalCode: '',
  950. hospitalDoctor: '',
  951. orgCode: '',
  952. doctor: '',
  953. archiveStatus: ''
  954. }
  955. ;(this.form12 = {
  956. patientName: '',
  957. status: '',
  958. doctor: '',
  959. hospital: '',
  960. archiveStatus: ''
  961. }),
  962. initData(this);
  963. // initTime(this)
  964. // initScope(this)
  965. },
  966. tabsClick: function (item) {
  967. console.log(item, 'item')
  968. var vm = this;
  969. this.copdFilterCheckValue=[]
  970. vm.tabsId = item.id;
  971. if (item.id != 4) {
  972. vm.expertFamilyIdType = '';
  973. }
  974. if (item.id == 5) {
  975. vm.handleNodeShow = 5;
  976. }
  977. vm.tabsList.forEach(function (res) {
  978. if (res.id == item.id) {
  979. res.show = true;
  980. } else {
  981. res.show = false;
  982. }
  983. });
  984. vm.eliminateClick();
  985. },
  986. // 获取汇总数据的专科医院
  987. specHosData: function () {
  988. var vm = this;
  989. statisticAPI.getSpecialHospital().then(function (res) {
  990. if (res.status == 200) {
  991. res.data.forEach(function (item) {
  992. vm.specHosList.push({code: item.code, name: item.name});
  993. });
  994. }
  995. });
  996. },
  997. getDiseaseTypeList: function () {
  998. var vm = this;
  999. statisticAPI.getDiseaseTypeList({}).then(function (res) {
  1000. if (res.status == 200) {
  1001. vm.specialCities = res.list;
  1002. }
  1003. });
  1004. },
  1005. // 签约人群
  1006. handleCheckedCitiesChange: function (value) {
  1007. var vm = this;
  1008. vm.handleData = value;
  1009. },
  1010. // 下转病种
  1011. diseaseChange: function (value) {
  1012. var vm = this;
  1013. vm.diseaseData = value;
  1014. },
  1015. // 服务类型
  1016. serviceTypeChange: function (value) {
  1017. var vm = this;
  1018. vm.serviceTypeData = value;
  1019. },
  1020. // 综合析树形图
  1021. treedataClick: function (name, data) {
  1022. var vm = this;
  1023. vm.handleNodeShow = 1;
  1024. vm.handleNodeId = 0;
  1025. vm.currentPage = 1;
  1026. vm.radio = '1'; //签约年度 --创建时间
  1027. // initTime(vm)
  1028. // initScope(vm)
  1029. },
  1030. // 汇总树形图
  1031. collectClick: function (data, isCheck) {
  1032. var vm = this;
  1033. vm.derive = data.label;
  1034. vm.handleNodeShow = 3;
  1035. vm.currentPage = 1;
  1036. vm.radio = '1'; //签约年度 --创建时间
  1037. vm.isCheck = isCheck;
  1038. },
  1039. collCheck: function (data, name) {
  1040. // console.log(arguments)
  1041. var vm = this;
  1042. vm.diseaseReport = [];
  1043. vm.datatotal = 0;
  1044. vm.collect.forEach(function (item) {
  1045. item.children.forEach(function (o) {
  1046. if (o.code != data.code) {
  1047. vm.$refs.collectTree.setChecked(o, false, true);
  1048. }
  1049. });
  1050. if (data.id == item.id) {
  1051. vm.$refs.collectTree.setChecked(item, vm.isCheck, true);
  1052. } else {
  1053. item.children.forEach(function (o) {
  1054. if (data.id == o.id) {
  1055. vm.$refs.collectTree.setChecked(o, vm.isCheck, true);
  1056. }
  1057. });
  1058. }
  1059. });
  1060. vm.handleNodeId = 'huizongshuju';
  1061. vm.collectCode = data.code;
  1062. if (data.code == 1) {
  1063. vm.rangeList = [
  1064. {name: '按区', code: 'town'},
  1065. {name: '按社区', code: 'hospital'},
  1066. {name: '按团队', code: 'team'},
  1067. {name: '按专科医院', code: 'specHos'}
  1068. ];
  1069. vm.specHosData();
  1070. } else {
  1071. vm.rangeList = [
  1072. {name: '按区', code: 'town'},
  1073. {name: '按社区', code: 'hospital'},
  1074. {name: '按团队', code: 'team'}
  1075. ];
  1076. }
  1077. },
  1078. // 点击明细查询树形图
  1079. handleNodeClick: function (item, type) {
  1080. var vm = this;
  1081. vm.copdFilterCheckValue=[]
  1082. vm.handleNodeId = 0;
  1083. vm.derive = item.label;
  1084. // if(data.id>=33) { //明细查询以下
  1085. vm.handleNodeShow = 2; // 明细查询tabs为2
  1086. vm.tableHeader = []; // 选择统计的数组
  1087. vm.analyseData = []; // 明细查询数组
  1088. // }
  1089. vm.handleNodeId = item.id; //切换后的id
  1090. vm.radio = '1'; //签约年度 --创建时间
  1091. vm.radio1 = ''; //咨询分析咨询状态
  1092. vm.radio2 = '';
  1093. vm.radio3 = '';
  1094. vm.radio4 = '';
  1095. vm.radio5 = '';
  1096. vm.radio6 = '';
  1097. vm.radio7 = '';
  1098. vm.radio8 = '';
  1099. vm.radio9 = '';
  1100. vm.radio10 = '';
  1101. vm.checkedCities = []; //签约人群清空
  1102. vm.specialCheckedCities = []; //下转病种清空
  1103. vm.serveSpecialCities = []; //服务类型清空
  1104. vm.diseaseReport = [];
  1105. vm.datatotal = 0;
  1106. vm.form = {
  1107. endorseTheTicket: '',
  1108. renew: '',
  1109. backToSign: '',
  1110. WeChat: ''
  1111. };
  1112. vm.form2 = {
  1113. juniorCollege: '',
  1114. family: '',
  1115. resident: ''
  1116. }
  1117. ;(vm.form3 = {
  1118. family: '',
  1119. resident: ''
  1120. }),
  1121. (vm.form4 = {
  1122. family: '',
  1123. resident: ''
  1124. }),
  1125. (vm.form5 = {
  1126. family: '',
  1127. resident: ''
  1128. }),
  1129. (this.form6 = {
  1130. resident: '',
  1131. doctor: ''
  1132. });
  1133. this.form7 = {
  1134. resident: '',
  1135. doctorOne: '',
  1136. hospital: '',
  1137. doctorTwo: '',
  1138. administrativeOffice: ''
  1139. }
  1140. ;(this.form9 = {
  1141. resident: '',
  1142. doctorTwo: ''
  1143. }),
  1144. (this.form10 = {
  1145. resident: '',
  1146. doctorTwo: ''
  1147. }),
  1148. (this.form8 = {
  1149. renew: ''
  1150. });
  1151. this.form11 = {
  1152. patientName: '',
  1153. status: '',
  1154. hospitalCode: '',
  1155. hospitalDoctor: '',
  1156. orgCode: '',
  1157. doctor: '',
  1158. archiveStatus: ''
  1159. };
  1160. initTime(vm); //时间初始化
  1161. initScope(vm); //数据范围初始化
  1162. vm.currentPage = 1;
  1163. if (type == 'zhuanke') {
  1164. vm.handleNodeShow = 4;
  1165. vm.radio = '2';
  1166. vm.expertFamilyIdType = 'zhuanke' + item.id;
  1167. vm.expertFamily(item.id);
  1168. } else {
  1169. vm.analysFunction(vm.handleNodeId); //明细查询列表查询
  1170. }
  1171. // 慢阻肺监测档案
  1172. if (type == 7) {
  1173. console.log("点击了");
  1174. EventBus.$emit('copd-reset-select', {});
  1175. }
  1176. // 家庭病床统计
  1177. if (type == 8) {
  1178. console.log(item, type, '---')
  1179. EventBus.$emit('jtbc-table-page', {type, id: item.id});
  1180. console.log('家庭病床')
  1181. }
  1182. },
  1183. expertFamily: function (id) {
  1184. var vm = this;
  1185. if (id == '1') {
  1186. vm.expertReplyList();
  1187. }
  1188. },
  1189. // 邀请专科回复统计传参
  1190. expertReply: function () {
  1191. var vm = this;
  1192. vm.searchJsonTime = vm.beforeReq();
  1193. return {
  1194. // signYear :vm.radio=='1'?vm.chooseYear:'', //签约年度
  1195. team: vm.teamCode, //团队
  1196. area: vm.areaCode, //地区
  1197. hospital: vm.communityCode, //社区
  1198. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1199. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1200. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1201. pageSize: vm.currentSize,
  1202. page: vm.currentPage
  1203. };
  1204. },
  1205. // 邀请专科回复统计列表
  1206. expertReplyList: function () {
  1207. var vm = this;
  1208. vm.loadingTwo = true;
  1209. statisticAPI.consultHelpCountPage(vm.expertReply()).then(function (res) {
  1210. if (res.status == 200) {
  1211. vm.expertReplyData = res.detailModelList;
  1212. vm.datatotal = res.totalCount;
  1213. vm.loadingTwo = false;
  1214. }
  1215. });
  1216. },
  1217. analysFunction: function (id) {
  1218. var vm = this;
  1219. // idcard = idcard.replace(/^(.{6})(?:\d+)(.{4})$/,"$1****$2") 身份证 医保卡 脱敏显示
  1220. vm.detailFunction(id);
  1221. },
  1222. // 下转预约获取医生,科室
  1223. getReservationHosAndDept: function (data) {
  1224. var vm = this;
  1225. statisticAPI
  1226. .getReservationHosAndDept({
  1227. hospital: data ? data : '',
  1228. type: data ? '2' : ''
  1229. })
  1230. .then(function (res) {
  1231. if (res.status == 200) {
  1232. if (data) {
  1233. vm.administrativeOffice = [];
  1234. res.data.forEach(function (item) {
  1235. vm.administrativeOffice.push({
  1236. value: item.code,
  1237. label: item.name
  1238. });
  1239. });
  1240. } else {
  1241. vm.hospitalData = [];
  1242. res.data.forEach(function (item) {
  1243. vm.hospitalData.push({
  1244. value: item.code,
  1245. label: item.name
  1246. });
  1247. });
  1248. }
  1249. }
  1250. });
  1251. },
  1252. hospitalChange: function (data) {
  1253. var vm = this;
  1254. vm.getReservationHosAndDept(data);
  1255. },
  1256. // 咨询分析
  1257. getConsultList: function () {
  1258. var vm = this;
  1259. vm.loadingTwo = true;
  1260. vm.lastAjax = 'statisticsExport/getConsultList';
  1261. statisticAPI
  1262. .getConsultList({
  1263. year: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1264. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1265. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1266. status: vm.radio1, //咨询状态,1已回复,0未回复,2未及时回复
  1267. team: vm.teamCode, //团队
  1268. area: vm.areaCode, //地区
  1269. hospital: vm.communityCode, //社区
  1270. rang: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1271. pageSize: vm.currentSize,
  1272. page: vm.currentPage
  1273. })
  1274. .then(function (res) {
  1275. // console.log(res,"咨询分析")
  1276. if (res.status == 200) {
  1277. vm.analyseData = res.data.list;
  1278. vm.datatotal = res.data.total;
  1279. vm.loadingTwo = false;
  1280. }
  1281. if (res.status == -1) {
  1282. vm.loadingTwo = false;
  1283. vm.$message.error(res.msg);
  1284. }
  1285. });
  1286. },
  1287. // 签约分析
  1288. getSignList: function () {
  1289. var vm = this;
  1290. vm.lastAjax = 'statisticsExport/getSignList';
  1291. vm.loadingTwo = true;
  1292. var handleDataList = [];
  1293. vm.serverType = '';
  1294. vm.handleData.forEach(function (res) {
  1295. handleDataList.push(res.num);
  1296. });
  1297. vm.serverType = handleDataList.join(',');
  1298. statisticAPI
  1299. .getSignList({
  1300. year: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1301. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1302. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1303. serverType: vm.serverType, //签约人群
  1304. status: vm.radio2, //签约状态,1已签约,0待审核,2代缴费
  1305. isUpdate: vm.form.endorseTheTicket, //是否改签 1是0否
  1306. isAdd: vm.form.renew, //是否续签 1是0否
  1307. isOut: vm.form.backToSign, //是否退签 1是0否
  1308. isBindWX: vm.form.WeChat, //是否绑定微信 1是0否
  1309. team: vm.teamCode, //团队
  1310. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1311. hospital: vm.communityCode, //社区
  1312. rang: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1313. signYearAge: vm.radio10, // 签约年限
  1314. pageSize: vm.currentSize,
  1315. page: vm.currentPage
  1316. })
  1317. .then(function (res) {
  1318. // console.log(res,"签约分析")
  1319. if (res.status == 200) {
  1320. res.data.list.forEach(function (item) {
  1321. item.sscNum = item.sscNum.replace(/^(.{4})(?:\d+)(.{1})$/, '$1****$2');
  1322. item.idcardNum = item.idcardNum.replace(/^(.{6})(?:\d+)(.{4})$/, '$1****$2');
  1323. });
  1324. vm.analyseData = res.data.list;
  1325. vm.datatotal = res.data.total;
  1326. vm.loadingTwo = false;
  1327. }
  1328. if (res.status == -1) {
  1329. vm.loadingTwo = false;
  1330. vm.$message.error(res.msg);
  1331. }
  1332. });
  1333. },
  1334. // 专病分析
  1335. getSickList: function () {
  1336. var vm = this;
  1337. // vm.diseaseData
  1338. vm.lastAjax = 'statisticsExport/getSickList';
  1339. vm.loadingTwo = true;
  1340. var handleDataList = [];
  1341. vm.diseaseDataType = '';
  1342. vm.diseaseData.forEach(function (res) {
  1343. handleDataList.push(res.code);
  1344. });
  1345. vm.diseaseDataType = handleDataList.join(',');
  1346. statisticAPI
  1347. .getSickList({
  1348. year: vm.radio == '1' ? vm.chooseYear : '', //年度
  1349. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1350. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1351. diseaseType: vm.diseaseDataType, //病种类型
  1352. status: vm.radio3, //下转状态,1已接受,0未接受,2未管理
  1353. doctorName: vm.form2.juniorCollege, //专科医生
  1354. familyDoctorName: vm.form2.family, //家庭医生名字
  1355. patientName: vm.form2.resident, // 居民姓名
  1356. team: vm.teamCode, //团队
  1357. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1358. hospital: vm.communityCode, //社区
  1359. rang: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1360. pageSize: vm.currentSize,
  1361. page: vm.currentPage,
  1362. patientType: vm.form2.patientType
  1363. })
  1364. .then(function (res) {
  1365. // console.log(res,"专病分析")
  1366. if (res.status == 200) {
  1367. res.data.list.forEach(function (item) {
  1368. item.sscNum = item.sscNum.replace(/^(.{4})(?:\d+)(.{1})$/, '$1****$2');
  1369. item.idcardNum = item.idcardNum.replace(/^(.{6})(?:\d+)(.{4})$/, '$1****$2');
  1370. });
  1371. vm.analyseData = res.data.list;
  1372. vm.datatotal = res.data.total;
  1373. vm.loadingTwo = false;
  1374. }
  1375. if (res.status == -1) {
  1376. vm.loadingTwo = false;
  1377. vm.$message.error(res.msg);
  1378. }
  1379. });
  1380. },
  1381. // 生日祝福分析明细
  1382. getBirthdayPatientList: function () {
  1383. var vm = this;
  1384. vm.loadingTwo = true;
  1385. vm.lastAjax = 'statisticsExport/getBirthdayPatientList';
  1386. statisticAPI
  1387. .getBirthdayPatientList({
  1388. patientName: vm.form3.resident, // 居民姓名
  1389. doctorName: vm.form3.family, //医生姓名
  1390. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1391. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1392. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1393. status: vm.radio4, //状态(不传为全部,1、已发送,2、未发送)
  1394. team: vm.teamCode, //团队
  1395. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1396. hospital: vm.communityCode, //社区
  1397. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1398. pageSize: vm.currentSize,
  1399. page: vm.currentPage
  1400. })
  1401. .then(function (res) {
  1402. if (res.status == 200) {
  1403. // console.log(res,"Sddddd")
  1404. res.data.detailModelList.forEach(function (item) {
  1405. item.ssc = item.ssc.replace(/^(.{4})(?:\d+)(.{1})$/, '$1****$2');
  1406. item.idcard = item.idcard.replace(/^(.{6})(?:\d+)(.{4})$/, '$1****$2');
  1407. });
  1408. vm.analyseData = res.data.detailModelList;
  1409. vm.datatotal = res.data.total;
  1410. vm.loadingTwo = false;
  1411. }
  1412. if (res.status == -1) {
  1413. vm.loadingTwo = false;
  1414. vm.$message.error(res.msg);
  1415. }
  1416. });
  1417. },
  1418. // 长处方分析明细
  1419. getPrescriptionList: function () {
  1420. var vm = this;
  1421. vm.loadingTwo = true;
  1422. vm.lastAjax = 'statisticsExport/getPrescriptionList';
  1423. statisticAPI
  1424. .getPrescriptionList({
  1425. patientName: vm.form5.resident, // 居民姓名
  1426. doctorName: vm.form5.family, //医生姓名
  1427. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1428. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1429. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1430. status: vm.radio6, //续方状态 0待审核 20药师审核中 40待支付 100已完成 999其他
  1431. diagnosis: vm.radio7, //续方疾病类型1高血压2糖尿病3其他
  1432. dispensaryType: vm.radio8, // 取药方式1自取2快递3健管师配送
  1433. team: vm.teamCode, //团队
  1434. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1435. hospital: vm.communityCode, //社区
  1436. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1437. pageSize: vm.currentSize,
  1438. page: vm.currentPage
  1439. })
  1440. .then(function (res) {
  1441. if (res.status == 200) {
  1442. res.data.detailModelList.forEach(function (item) {
  1443. // console.log(item.finish_time,"长处方分析")
  1444. item.ssc = item.ssc.replace(/^(.{4})(?:\d+)(.{1})$/, '$1****$2');
  1445. item.idcard = item.idcard.replace(/^(.{6})(?:\d+)(.{4})$/, '$1****$2');
  1446. });
  1447. vm.analyseData = res.data.detailModelList;
  1448. vm.datatotal = res.data.total;
  1449. vm.loadingTwo = false;
  1450. }
  1451. if (res.status == -1) {
  1452. vm.loadingTwo = false;
  1453. vm.$message.error(res.msg);
  1454. }
  1455. });
  1456. },
  1457. // 上门服务分析明细
  1458. getDoorServiceList: function () {
  1459. var vm = this;
  1460. vm.lastAjax = '';
  1461. vm.loadingTwo = true;
  1462. var handleDataList = [];
  1463. vm.serviceTypeDataType = 'statisticsExport/getDoorServiceList';
  1464. vm.serviceTypeData.forEach(function (res) {
  1465. handleDataList.push(res.num);
  1466. });
  1467. vm.serviceTypeDataType = handleDataList.join(',');
  1468. statisticAPI
  1469. .getDoorServiceList({
  1470. patientName: vm.form4.resident, // 居民姓名
  1471. doctorName: vm.form4.family, //医生姓名
  1472. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1473. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1474. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1475. status: vm.radio5, //工单状态 -1已取消,1待派单、2待接单、3已接单、4待服务、5待评价
  1476. type: vm.serviceTypeDataType, //服务类型 1残疾人,2肺结核患者,3计生特殊家庭,4重性精神病,5失能/半失能老人,6其他,7 80岁以上老人
  1477. team: vm.teamCode, //团队
  1478. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1479. hospital: vm.communityCode, //社区
  1480. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1481. pageSize: vm.currentSize,
  1482. page: vm.currentPage
  1483. })
  1484. .then(function (res) {
  1485. if (res.status == 200) {
  1486. // console.log(res,"上门服务分析明细")
  1487. res.data.detailModelList.forEach(function (item) {
  1488. item.ssc = item.ssc.replace(/^(.{4})(?:\d+)(.{1})$/, '$1****$2');
  1489. item.idcard = item.idcard.replace(/^(.{6})(?:\d+)(.{4})$/, '$1****$2');
  1490. });
  1491. vm.analyseData = res.data.detailModelList;
  1492. vm.datatotal = res.data.total;
  1493. vm.loadingTwo = false;
  1494. }
  1495. if (res.status == -1) {
  1496. vm.loadingTwo = false;
  1497. vm.$message.error(res.msg);
  1498. }
  1499. });
  1500. },
  1501. //体征数据分析传参
  1502. getHealthParameter: function () {
  1503. var vm = this;
  1504. return {
  1505. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1506. team: vm.teamCode, //团队
  1507. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1508. hospital: vm.communityCode, //社区
  1509. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1510. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1511. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1512. name: vm.form6.resident, // 居民姓名
  1513. category: vm.facility, //设备类型
  1514. doctorName: vm.form6.doctor, //医生姓名
  1515. serverType: vm.illness, //签约疾病类型
  1516. pageSize: vm.currentSize,
  1517. page: vm.currentPage
  1518. };
  1519. },
  1520. //体征数据分析
  1521. physicalSignData: function () {
  1522. var vm = this;
  1523. vm.loadingTwo = true;
  1524. vm.lastAjax = 'statisticsExport/getHealthList';
  1525. statisticAPI.getHealthList(vm.getHealthParameter()).then(function (res) {
  1526. if (res.status == 200) {
  1527. // console.log(res,"体征数据")
  1528. vm.getHealthData = res.data.detailModelList;
  1529. vm.datatotal = res.data.total;
  1530. vm.loadingTwo = false;
  1531. }
  1532. if (res.status == -1) {
  1533. vm.loadingTwo = false;
  1534. vm.$message.error(res.msg);
  1535. }
  1536. });
  1537. },
  1538. //上转预约传参
  1539. reservationParameter: function () {
  1540. var vm = this;
  1541. return {
  1542. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1543. team: vm.teamCode, //团队
  1544. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1545. hospital: vm.communityCode, //社区
  1546. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1547. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1548. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1549. name: vm.form7.resident, // 居民姓名
  1550. doctorName: vm.form7.doctorOne, //签约医生姓名
  1551. reservationHospital: vm.form7.hospital, //签约医院
  1552. reservationDept: vm.form7.administrativeOffice, //预约科室
  1553. reservationDoctorName: vm.form7.doctorTwo, //预约医生
  1554. pageSize: vm.currentSize,
  1555. page: vm.currentPage
  1556. };
  1557. },
  1558. // 上转预约
  1559. upTransferAppointment: function () {
  1560. var vm = this;
  1561. vm.loadingTwo = true;
  1562. vm.lastAjax = 'statisticsExport/getDoctorReservationList';
  1563. statisticAPI.getDoctorReservationList(vm.reservationParameter()).then(function (res) {
  1564. if (res.status == 200) {
  1565. // console.log(res,"上转预约")
  1566. vm.reservationData = res.data.detailModelList;
  1567. vm.datatotal = res.data.total;
  1568. vm.loadingTwo = false;
  1569. vm.getReservationHosAndDept();
  1570. }
  1571. if (res.status == -1) {
  1572. vm.loadingTwo = false;
  1573. vm.$message.error(res.msg);
  1574. }
  1575. });
  1576. },
  1577. //微信绑定传参
  1578. wexinBindingParameter: function () {
  1579. var vm = this;
  1580. return {
  1581. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1582. team: vm.teamCode, //团队
  1583. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1584. hospital: vm.communityCode, //社区
  1585. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1586. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1587. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1588. binging: vm.form8.renew, //是否绑定微信
  1589. pageSize: vm.currentSize,
  1590. page: vm.currentPage
  1591. };
  1592. },
  1593. // 微信绑定
  1594. wechatBinding: function () {
  1595. var vm = this;
  1596. vm.loadingTwo = true;
  1597. vm.lastAjax = 'statisticsExport/getWexinBindingList';
  1598. statisticAPI.getWexinBindingList(vm.wexinBindingParameter()).then(function (res) {
  1599. if (res.status == 200) {
  1600. // console.log(res,"微信绑定")
  1601. res.data.detailModelList.forEach(function (res) {
  1602. res.sex = res.sex == 1 ? '男' : '女';
  1603. res.apply_date = new Date(res.apply_date).format('yyyy-MM-dd HH:mm:ss');
  1604. });
  1605. vm.wexinBindingData = res.data.detailModelList;
  1606. vm.datatotal = res.data.total;
  1607. vm.loadingTwo = false;
  1608. }
  1609. if (res.status == -1) {
  1610. vm.loadingTwo = false;
  1611. vm.$message.error(res.msg);
  1612. }
  1613. });
  1614. },
  1615. // 居民积分明细传参
  1616. residentIntegralParameter: function () {
  1617. var vm = this;
  1618. var parameter = {
  1619. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1620. team: vm.teamCode, //团队
  1621. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1622. hospital: vm.specHosName ? vm.specHosName : vm.communityCode, //专病医院
  1623. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1624. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1625. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1626. pageSize: vm.currentSize,
  1627. page: vm.currentPage,
  1628. patientName: vm.form9.resident || '',
  1629. doctorName: vm.form9.doctorTwo || ''
  1630. };
  1631. return parameter;
  1632. },
  1633. // 居民积分明细
  1634. residentIntegral: function () {
  1635. var vm = this;
  1636. vm.loadingTwo = true;
  1637. vm.lastAjax = 'statisticsExport/patinetIntegralAnalysis';
  1638. statisticAPI.patinetIntegralAnalysis(vm.residentIntegralParameter()).then(function (res) {
  1639. if (res.status == 200) {
  1640. vm.loadingTwo = false;
  1641. res.data.list.forEach(function (item) {
  1642. item.ssc = item.ssc.replace(/^(.{4})(?:\d+)(.{1})$/, '$1****$2');
  1643. // item.idcard = item.idcard.replace(/^(.{6})(?:\d+)(.{4})$/,"$1****$2")
  1644. });
  1645. vm.jifenData = res.data.list;
  1646. vm.datatotal = res.data.total;
  1647. } else {
  1648. vm.loadingTwo = false;
  1649. vm.$message.error(res.msg);
  1650. }
  1651. });
  1652. },
  1653. // 入户访视明细传参
  1654. interviewParameter: function () {
  1655. var vm = this;
  1656. var parameter = {
  1657. // signYear:'2020', //签约年度
  1658. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1659. team: vm.teamCode, //团队
  1660. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1661. hospital: vm.specHosName ? vm.specHosName : vm.communityCode, //专病医院
  1662. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1663. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1664. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1665. pageSize: vm.currentSize,
  1666. page: vm.currentPage,
  1667. patientName: vm.form10.resident || '',
  1668. doctorName: vm.form10.doctorTwo || ''
  1669. };
  1670. return parameter;
  1671. },
  1672. // 入户访视
  1673. interview: function () {
  1674. var vm = this;
  1675. vm.loadingTwo = true;
  1676. vm.lastAjax = 'statisticsExport/findPatientFollowListByCondition';
  1677. statisticAPI.findPatientFollowListByCondition(vm.interviewParameter()).then(function (res) {
  1678. if (res.status == 200) {
  1679. vm.loadingTwo = false;
  1680. vm.ruhuData = res.data.list;
  1681. vm.datatotal = res.data.total;
  1682. } else {
  1683. vm.loadingTwo = false;
  1684. vm.$message.error(res.msg);
  1685. }
  1686. });
  1687. },
  1688. //邀请专科回复明细传参
  1689. invitationDetailsParameter: function () {
  1690. var vm = this;
  1691. vm.searchJsonTime = vm.beforeReq();
  1692. var parameter = {
  1693. patientName: vm.form12.patientName,
  1694. name: '',
  1695. status: vm.form12.status,
  1696. startTime: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1697. endTime: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1698. specialistName: vm.form12.doctor, //专科医生姓名
  1699. specialistHospital: vm.form12.hospital, //专科医院code
  1700. specialistDeptName: vm.form12.archiveStatus, //专科科室名称
  1701. team: vm.teamCode,
  1702. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1703. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1704. hospital: vm.communityCode, //医院
  1705. pageSize: vm.currentSize,
  1706. page: vm.currentPage
  1707. };
  1708. return parameter;
  1709. },
  1710. //邀请专科回复明细列表
  1711. invitationDetails: function () {
  1712. var vm = this;
  1713. vm.loadingTwo = true;
  1714. statisticAPI.consultHelpDetailPage(vm.invitationDetailsParameter()).then(function (res) {
  1715. if (res.status == 200) {
  1716. vm.loadingTwo = false;
  1717. res.detailModelList.forEach(function (v) {
  1718. v.sex = v.sex == 1 ? '男' : '女';
  1719. });
  1720. vm.invitationList = res.detailModelList;
  1721. vm.datatotal = res.totalCount;
  1722. } else {
  1723. vm.loadingTwo = false;
  1724. vm.$message.error(res.msg);
  1725. }
  1726. });
  1727. },
  1728. // 康复下转明细传参
  1729. recoveryParameter: function () {
  1730. var vm = this;
  1731. vm.searchJsonTime = vm.beforeReq();
  1732. var parameter = {
  1733. // signYear:vm.radio=='1'?vm.chooseYear:'', //签约年度
  1734. // team:vm.teamCode, //团队
  1735. // area:vm.areaCode=='350200'?'':vm.areaCode, //地区
  1736. // range:vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1737. startTime: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1738. endTime: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1739. size: vm.currentSize,
  1740. page: vm.currentPage,
  1741. patientName: vm.form11.patientName,
  1742. status: vm.form11.status,
  1743. hospitalCode: vm.form11.hospitalCode,
  1744. orgCode: vm.form11.orgCode,
  1745. hospitalDoctor: vm.form11.hospitalDoctor,
  1746. doctor: vm.form11.doctor,
  1747. archiveStatus: vm.form11.archiveStatus,
  1748. patientType: vm.form11.patientType
  1749. };
  1750. return parameter;
  1751. },
  1752. // 康复下转
  1753. recovery: function () {
  1754. var vm = this;
  1755. vm.loadingTwo = true;
  1756. vm.lastAjax = 'doctor/specialist/rehabilitation/rehabilitationPatientInfo';
  1757. statisticAPI.rehabilitationPatientInfo(vm.recoveryParameter()).then(function (res) {
  1758. if (res.status == 200) {
  1759. vm.loadingTwo = false;
  1760. res.detailModelList.forEach(function (v) {
  1761. v.sex = v.sex == 1 ? '男' : '女';
  1762. });
  1763. vm.recoveryList = res.detailModelList;
  1764. vm.datatotal = res.totalCount;
  1765. } else {
  1766. vm.loadingTwo = false;
  1767. vm.$message.error(res.msg);
  1768. }
  1769. });
  1770. },
  1771. //专病汇总传参
  1772. getSpecialParameter: function () {
  1773. var vm = this;
  1774. var parameter = {
  1775. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1776. team: vm.teamCode, //团队
  1777. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1778. hospital: vm.specHosName ? vm.specHosName : vm.communityCode, //专病医院
  1779. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1780. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1781. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1782. menu: vm.beforeReq().checked
  1783. // pageSize:vm.currentSize,
  1784. // page:vm.currentPage,
  1785. };
  1786. return parameter;
  1787. },
  1788. // 专病汇总
  1789. getSpecialDiseaseReport: function () {
  1790. var vm = this;
  1791. vm.loadingTwo = true;
  1792. statisticAPI.getSpecialDiseaseReport(vm.getSpecialParameter()).then(function (res) {
  1793. if (res.status == 200) {
  1794. vm.indicator = [];
  1795. res.data.column.forEach(function (v) {
  1796. if (v == 'kfxzrs') {
  1797. vm.indicator.push('康复计划人数');
  1798. }
  1799. if (v == 'kfxzrc') {
  1800. vm.indicator.push('康复计划数');
  1801. }
  1802. if (v == 'szrs') {
  1803. vm.indicator.push('预约挂号人数');
  1804. }
  1805. if (v == 'szrc') {
  1806. vm.indicator.push('预约挂号数');
  1807. }
  1808. });
  1809. vm.loadingTwo = false;
  1810. vm.diseaseReport = res.data.list;
  1811. vm.diseaseColumn = res.data.column;
  1812. // '康复计划人数','康复计划数','预约挂号人数','预约挂号数'
  1813. vm.diseaseHeader = res.data.header;
  1814. vm.datatotal = res.data.list.length;
  1815. } else {
  1816. vm.loadingTwo = false;
  1817. vm.$message.error(res.msg);
  1818. }
  1819. });
  1820. },
  1821. //体征分析传参
  1822. getDeviceParameter: function () {
  1823. var vm = this;
  1824. var parameter = {
  1825. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1826. team: vm.teamCode, //团队
  1827. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1828. hospital: vm.communityCode, //医院
  1829. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1830. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1831. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1832. category: vm.facilitySign,
  1833. menu: vm.beforeReq().checked
  1834. // pageSize:vm.currentSize,
  1835. // page:vm.currentPage,
  1836. };
  1837. return parameter;
  1838. },
  1839. // 体征分析数据
  1840. getDeviceHealthReport: function () {
  1841. var vm = this;
  1842. vm.loadingTwo = true;
  1843. statisticAPI.getDeviceHealthReport(vm.getDeviceParameter()).then(function (res) {
  1844. if (res.status == 200) {
  1845. vm.loadingTwo = false;
  1846. // console.log(res,"sss")
  1847. vm.getDeviceReport = res.data.list;
  1848. vm.getDeviceColumn = res.data.column;
  1849. vm.getDeviceHeader = res.data.header;
  1850. vm.datatotal = res.data.list.length;
  1851. } else {
  1852. vm.loadingTwo = false;
  1853. vm.$message.error(res.msg);
  1854. }
  1855. });
  1856. },
  1857. //上门汇总传参
  1858. getDoorParameter: function () {
  1859. var vm = this;
  1860. var parameter = {
  1861. signYear: vm.radio == '1' ? vm.chooseYear : '', //签约年度
  1862. team: vm.teamCode, //团队
  1863. area: vm.areaCode == '350200' ? '' : vm.areaCode, //地区
  1864. hospital: vm.communityCode, //医院
  1865. status: vm.radio9,
  1866. range: vm.rangeCode, //数据范围(town区传值area,hospital医院传值hospital,team团队传值team)
  1867. startDate: vm.radio == '2' ? vm.searchJsonTime.start : '', //开始时间
  1868. endDate: vm.radio == '2' ? vm.searchJsonTime.end : '', //结束时间
  1869. menu: vm.beforeReq().checked
  1870. // pageSize:vm.currentSize,
  1871. // page:vm.currentPage,
  1872. };
  1873. return parameter;
  1874. },
  1875. // 上门汇总
  1876. getDoorServerOrderReport: function () {
  1877. var vm = this;
  1878. vm.loadingTwo = true;
  1879. statisticAPI.getDoorServerOrderReport(vm.getDoorParameter()).then(function (res) {
  1880. if (res.status == 200) {
  1881. vm.loadingTwo = false;
  1882. // console.log(res,"sss")
  1883. vm.getDoorReport = res.data.list;
  1884. vm.getDoorColumn = res.data.column;
  1885. vm.getDoorHeader = res.data.header;
  1886. vm.datatotal = res.data.list.length;
  1887. } else {
  1888. vm.loadingTwo = false;
  1889. vm.$message.error(res.msg);
  1890. }
  1891. });
  1892. },
  1893. getTreeList: function () {
  1894. var vm = this;
  1895. statisticAPI.exportTreeList({rang: vm.rangeCode}).then(function (res) {
  1896. if (res.status == 200) {
  1897. console.log(res, 'Sddd')
  1898. ;(vm.treedata = []), (jindex = 0);
  1899. _.each(res.data, function (item, index) {
  1900. vm.treedata.push({
  1901. id: 'p_' + jindex,
  1902. label: index,
  1903. children: []
  1904. });
  1905. _.each(item, function (citem, cindex) {
  1906. vm.treedata[jindex].children.push({
  1907. id: cindex,
  1908. label: citem
  1909. });
  1910. });
  1911. jindex++;
  1912. });
  1913. }
  1914. });
  1915. },
  1916. beforeReq: function (flag) {
  1917. var vm = this,
  1918. startDate = '',
  1919. endDate = '',
  1920. checked = [];
  1921. if (vm.radio == '1') {
  1922. if (vm.chooseYear == 2022) {
  1923. startDate = '2022-07-01';
  1924. endDate = '2022-12-31';
  1925. } else if (vm.chooseYear > 2022) {
  1926. startDate = vm.chooseYear + '-01-01';
  1927. endDate = getEndDate(vm.chooseYear);
  1928. } else {
  1929. startDate = getStartDate(vm.chooseYear);
  1930. endDate = getEndDate(vm.chooseYear);
  1931. }
  1932. vm.timeLevel = 2;
  1933. } else {
  1934. if (!vm.start && !vm.end) {
  1935. this.$message({
  1936. message: '请选择创建时间',
  1937. type: 'warning'
  1938. });
  1939. return false;
  1940. } else {
  1941. if (vm.start > vm.end) {
  1942. this.$message({
  1943. message: '开始时间应早于结束时间',
  1944. type: 'warning'
  1945. });
  1946. return false;
  1947. } else {
  1948. startDate = vm.start;
  1949. endDate = vm.end;
  1950. vm.timeLevel = 1;
  1951. }
  1952. }
  1953. }
  1954. if (vm.handleNodeId == 0 || vm.handleNodeId == 'huizongshuju') {
  1955. var checkTree;
  1956. if (vm.tabsId == 1) {
  1957. checkTree = vm.$refs.tree.getCheckedNodes(true);
  1958. } else {
  1959. checkTree = vm.$refs.collectTree.getCheckedNodes(true);
  1960. }
  1961. if (checkTree.length) {
  1962. if (!flag) {
  1963. vm.tableHeader = [];
  1964. }
  1965. _.each(checkTree, function (item, index) {
  1966. if (!flag) {
  1967. vm.tableHeader.push({prop: item.label, label: item.label});
  1968. }
  1969. checked.push(item.id);
  1970. });
  1971. } else {
  1972. this.$message({
  1973. message: '请选择搜索指标!',
  1974. type: 'warning'
  1975. });
  1976. return false;
  1977. }
  1978. } else if (vm.handleNodeId == 2) {
  1979. this.$message({
  1980. message: '请选择明细查询!',
  1981. type: 'warning'
  1982. });
  1983. return false;
  1984. }
  1985. return {start: startDate, end: endDate, checked: checked.join(',')};
  1986. },
  1987. // 查询
  1988. searchHandle: function (status) {
  1989. // console.log(this.beforeReq())
  1990. var vm = this;
  1991. vm.searchJsonTime = vm.beforeReq();
  1992. vm.currentPage = 1;
  1993. if (this.radio1 == 1) {
  1994. this.radio1Show = true;
  1995. } else {
  1996. this.radio1Show = false;
  1997. }
  1998. if (vm.handleNodeId == 0) {
  1999. if (vm.searchJsonTime) {
  2000. vm.searchJson = {
  2001. startDate: vm.searchJsonTime.start,
  2002. endDate: vm.searchJsonTime.end,
  2003. quotaStr: vm.searchJsonTime.checked,
  2004. range: vm.rangeCode,
  2005. team: vm.teamCode,
  2006. hospital: vm.communityCode,
  2007. area: vm.areaCode == '350200' ? '' : vm.areaCode,
  2008. size: vm.currentSize,
  2009. page: vm.currentPage,
  2010. timeLevel: vm.timeLevel
  2011. };
  2012. vm.getStatisticDataList();
  2013. }
  2014. } else if (vm.collectCode == 1) {
  2015. // 专病汇总
  2016. vm.getSpecialDiseaseReport();
  2017. } else if (vm.collectCode == 2) {
  2018. // 体征数据汇总
  2019. vm.getDeviceHealthReport();
  2020. } else if (vm.collectCode == 3) {
  2021. // 上门服务汇总
  2022. vm.getDoorServerOrderReport();
  2023. } else {
  2024. vm.detailFunction(vm.handleNodeId, status);
  2025. }
  2026. },
  2027. getStatisticDataList: function () {
  2028. var vm = this;
  2029. vm.isloading = true;
  2030. var params = JSON.parse(JSON.stringify(vm.searchJson));
  2031. params.page = vm.currentPage;
  2032. statisticAPI.getStatisticDataList(params).then(function (res) {
  2033. if (res.status == 200) {
  2034. vm.tabledata = res.data.data;
  2035. vm.datatotal = res.data.total;
  2036. if (vm.tabledata.length) {
  2037. vm.tableHeader = [];
  2038. _.each(vm.tabledata[0], function (item, index) {
  2039. if (
  2040. index != 'town' &&
  2041. index != 'townName' &&
  2042. index != 'hospital' &&
  2043. index != 'hospitalName' &&
  2044. index != 'area' &&
  2045. index != 'areaName' &&
  2046. index != 'code' &&
  2047. index != 'name'
  2048. )
  2049. vm.tableHeader.push({prop: index, label: index});
  2050. });
  2051. }
  2052. } else {
  2053. vm.$message.error(res.msg);
  2054. }
  2055. vm.isloading = false;
  2056. });
  2057. },
  2058. // 导出
  2059. exportHandle: function () {
  2060. // var uid = JSON.parse(window.localStorage.getItem('wlyyAgentForDoc')).uid
  2061. // var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
  2062. // saveAs(blob, "hello world.txt");
  2063. // return
  2064. var vm = this;
  2065. var vm = this,
  2066. searchJson = undefined;
  2067. vm.fullscreenLoading = true;
  2068. searchJson = vm.beforeReq('export');
  2069. var areaCode = vm.areaCode == '350200' ? '' : vm.areaCode;
  2070. var chooseYear = vm.radio == '1' ? vm.chooseYear : ''; //年份
  2071. var startDate = vm.radio == '2' ? vm.searchJsonTime.start : '';
  2072. var endDate = vm.radio == '2' ? vm.searchJsonTime.end : '';
  2073. if (vm.handleNodeId == 0) {
  2074. if (searchJson) {
  2075. statisticAPI
  2076. .statisticsExportExport(
  2077. {
  2078. startDate: searchJson.start,
  2079. endDate: searchJson.end,
  2080. quotaStr: searchJson.checked,
  2081. range: vm.rangeCode,
  2082. area: areaCode,
  2083. hospital: vm.communityCode,
  2084. team: vm.teamCode,
  2085. timeLevel: vm.timeLevel
  2086. },
  2087. '综合查询.xls'
  2088. )
  2089. .then(function (res) {
  2090. vm.fullscreenLoading = false;
  2091. // toastr.info("导出成功")
  2092. // var blob = new Blob(["Hello, world!"]);
  2093. // FileSaver.saveAs(blob, "hello world.txt");
  2094. // console.log(res)
  2095. // FileSaver()
  2096. })
  2097. .catch(function (err) {
  2098. console.error(err);
  2099. });
  2100. // let str = httpRequest.server + 'statisticsExport/export?startDate='+searchJson.start+'&endDate='+searchJson.end+'&quotaStr='+searchJson.checked+'&range='+vm.rangeCode+'&area='+areaCode+'&hospital='+vm.communityCode+'&team='+vm.teamCode+'&timeLevel='+vm.timeLevel
  2101. // window.location.href = str
  2102. }
  2103. } else if (vm.handleNodeId == 33) {
  2104. // 咨询分析
  2105. if (vm.analyseData.length != 0) {
  2106. statisticAPI
  2107. .statisticsExportExportConsultList(
  2108. {
  2109. year: chooseYear,
  2110. startDate: startDate,
  2111. endDate: endDate,
  2112. status: vm.radio1,
  2113. area: areaCode,
  2114. hospital: vm.communityCode,
  2115. rang: vm.rangeCode,
  2116. team: vm.teamCode
  2117. },
  2118. vm.derive + '.xls'
  2119. )
  2120. .then(function (res) {
  2121. vm.fullscreenLoading = false;
  2122. })
  2123. .catch(function (err) {
  2124. toastr.info(err);
  2125. vm.fullscreenLoading = false;
  2126. console.error(err);
  2127. });
  2128. // var str = httpRequest.server + 'statisticsExport/exportConsultList?year='+chooseYear+'&startDate='+startDate+'&endDate='+endDate+
  2129. // '&status='+vm.radio1+'&area='+areaCode+'&hospital='+vm.communityCode+'&rang='+vm.rangeCode+'&team='+vm.teamCode
  2130. // window.location.href = str
  2131. } else {
  2132. vm.fullscreenLoading = false;
  2133. }
  2134. } else if (vm.handleNodeId == 34) {
  2135. // 签约分析
  2136. if (vm.analyseData.length != 0) {
  2137. statisticAPI
  2138. .statisticsExportExportSignList(
  2139. {
  2140. year: chooseYear,
  2141. startDate: startDate,
  2142. endDate: endDate,
  2143. serverType: vm.serverType,
  2144. status: vm.radio2,
  2145. isUpdate: vm.form.endorseTheTicket,
  2146. isAdd: vm.form.renew,
  2147. isOut: vm.form.backToSign,
  2148. isBindWX: vm.form.WeChat,
  2149. area: areaCode,
  2150. hospital: vm.communityCode,
  2151. rang: vm.rangeCode,
  2152. team: vm.teamCode,
  2153. signYearAge: vm.radio10
  2154. },
  2155. vm.derive + '.xls'
  2156. )
  2157. .then(function (res) {
  2158. vm.fullscreenLoading = false;
  2159. })
  2160. .catch(function (err) {
  2161. toastr.info(err);
  2162. vm.fullscreenLoading = false;
  2163. console.error(err);
  2164. });
  2165. } else {
  2166. vm.fullscreenLoading = false;
  2167. }
  2168. } else if (vm.handleNodeId == 35) {
  2169. // 专病分析
  2170. if (vm.analyseData.length != 0) {
  2171. statisticAPI
  2172. .statisticsExportExportSickList(
  2173. {
  2174. year: chooseYear,
  2175. startDate: startDate,
  2176. endDate: endDate,
  2177. diseaseType: vm.diseaseDataType,
  2178. status: vm.radio3,
  2179. doctorName: vm.form2.juniorCollege,
  2180. familyDoctorName: vm.form2.family,
  2181. patientName: vm.form2.resident,
  2182. area: areaCode,
  2183. hospital: vm.communityCode,
  2184. rang: vm.rangeCode,
  2185. team: vm.teamCode,
  2186. patientType: vm.form2.patientType
  2187. },
  2188. vm.derive + '.xls'
  2189. )
  2190. .then(function (res) {
  2191. vm.fullscreenLoading = false;
  2192. })
  2193. .catch(function (err) {
  2194. toastr.info(err);
  2195. vm.fullscreenLoading = false;
  2196. console.error(err);
  2197. });
  2198. } else {
  2199. vm.fullscreenLoading = false;
  2200. }
  2201. } else if (vm.handleNodeId == 36) {
  2202. // 生日祝福分析
  2203. if (vm.analyseData.length != 0) {
  2204. statisticAPI
  2205. .statisticsExportGetBirthdayPatientListExport(
  2206. {
  2207. signYear: chooseYear,
  2208. startDate: startDate,
  2209. endDate: endDate,
  2210. patientName: vm.form3.resident,
  2211. doctorName: vm.form3.family,
  2212. status: vm.radio4,
  2213. area: areaCode,
  2214. hospital: vm.communityCode,
  2215. range: vm.rangeCode,
  2216. team: vm.teamCode,
  2217. pageSize: '50000',
  2218. page: vm.currentPage
  2219. },
  2220. vm.derive + '.xls'
  2221. )
  2222. .then(function (res) {
  2223. vm.fullscreenLoading = false;
  2224. })
  2225. .catch(function (err) {
  2226. toastr.info(err);
  2227. vm.fullscreenLoading = false;
  2228. console.error(err);
  2229. });
  2230. } else {
  2231. vm.fullscreenLoading = false;
  2232. }
  2233. } else if (vm.handleNodeId == 37) {
  2234. // 上门服务分析
  2235. if (vm.analyseData.length != 0) {
  2236. statisticAPI
  2237. .statisticsExportExportDoorServiceList(
  2238. {
  2239. signYear: chooseYear,
  2240. startDate: startDate,
  2241. endDate: endDate,
  2242. patientName: vm.form4.resident,
  2243. doctorName: vm.form4.family,
  2244. status: vm.radio5,
  2245. type: vm.serviceTypeDataType,
  2246. area: areaCode,
  2247. hospital: vm.communityCode,
  2248. range: vm.rangeCode,
  2249. team: vm.teamCode,
  2250. pageSize: vm.currentSize,
  2251. page: vm.currentPage
  2252. },
  2253. vm.derive + '.xls'
  2254. )
  2255. .then(function (res) {
  2256. vm.fullscreenLoading = false;
  2257. })
  2258. .catch(function (err) {
  2259. toastr.info(err);
  2260. vm.fullscreenLoading = false;
  2261. console.error(err);
  2262. });
  2263. } else {
  2264. vm.fullscreenLoading = false;
  2265. }
  2266. } else if (vm.handleNodeId == 38) {
  2267. // 长处方分析
  2268. if (vm.analyseData.length != 0) {
  2269. statisticAPI
  2270. .statisticsExportExportPrescriptionList(
  2271. {
  2272. signYear: chooseYear,
  2273. startDate: startDate,
  2274. endDate: endDate,
  2275. patientName: vm.form5.resident,
  2276. doctorName: vm.form5.family,
  2277. status: vm.radio6,
  2278. diagnosisName: vm.radio7,
  2279. dispensaryType: vm.radio8,
  2280. area: areaCode,
  2281. hospital: vm.communityCode,
  2282. range: vm.rangeCode,
  2283. team: vm.teamCode,
  2284. pageSize: vm.currentSize,
  2285. page: vm.currentPage
  2286. },
  2287. vm.derive + '.xls'
  2288. )
  2289. .then(function (res) {
  2290. vm.fullscreenLoading = false;
  2291. })
  2292. .catch(function (err) {
  2293. toastr.info(err);
  2294. vm.fullscreenLoading = false;
  2295. console.error(err);
  2296. });
  2297. } else {
  2298. vm.fullscreenLoading = false;
  2299. }
  2300. } else if (vm.handleNodeId == 39) {
  2301. // 体征数据
  2302. if (vm.getHealthData.length != 0) {
  2303. statisticAPI
  2304. .exportHealthList(vm.getHealthParameter(), vm.derive + '.xls')
  2305. .then(function (res) {
  2306. vm.fullscreenLoading = false;
  2307. })
  2308. .catch(function (err) {
  2309. toastr.info(err);
  2310. vm.fullscreenLoading = false;
  2311. console.error(err);
  2312. });
  2313. } else {
  2314. vm.fullscreenLoading = false;
  2315. }
  2316. } else if (vm.handleNodeId == 40) {
  2317. // 上转预约
  2318. if (vm.reservationData.length != 0) {
  2319. statisticAPI
  2320. .exportDoctorReservationList(vm.reservationParameter(), vm.derive + '.xls')
  2321. .then(function (res) {
  2322. vm.fullscreenLoading = false;
  2323. })
  2324. .catch(function (err) {
  2325. toastr.info(err);
  2326. vm.fullscreenLoading = false;
  2327. console.error(err);
  2328. });
  2329. } else {
  2330. vm.fullscreenLoading = false;
  2331. }
  2332. } else if (vm.handleNodeId == 41) {
  2333. // 微信绑定数据
  2334. if (vm.wexinBindingData.length != 0) {
  2335. statisticAPI
  2336. .exportWexinBindingList(vm.wexinBindingParameter(), vm.derive + '.xls')
  2337. .then(function (res) {
  2338. vm.fullscreenLoading = false;
  2339. })
  2340. .catch(function (err) {
  2341. toastr.info(err);
  2342. vm.fullscreenLoading = false;
  2343. console.error(err);
  2344. });
  2345. } else {
  2346. vm.fullscreenLoading = false;
  2347. }
  2348. } else if (vm.handleNodeId == 42) {
  2349. // 居民积分明细导出
  2350. if (vm.jifenData.length != 0) {
  2351. statisticAPI
  2352. .exPatinetIntegralAnalysis(
  2353. _.assign({}, vm.residentIntegralParameter(), {pageSize: 99999}),
  2354. vm.derive + '.xls'
  2355. )
  2356. .then(function (res) {
  2357. vm.fullscreenLoading = false;
  2358. })
  2359. .catch(function (err) {
  2360. toastr.info(err);
  2361. vm.fullscreenLoading = false;
  2362. console.error(err);
  2363. });
  2364. } else {
  2365. vm.fullscreenLoading = false;
  2366. }
  2367. } else if (vm.handleNodeId == 43) {
  2368. // 入户访视导出
  2369. if (vm.ruhuData.length != 0) {
  2370. statisticAPI
  2371. .exfindPatientFollowListByCondition(vm.interviewParameter(), vm.derive + '.xls')
  2372. .then(function (res) {
  2373. vm.fullscreenLoading = false;
  2374. })
  2375. .catch(function (err) {
  2376. toastr.info(err);
  2377. vm.fullscreenLoading = false;
  2378. console.error(err);
  2379. });
  2380. } else {
  2381. vm.fullscreenLoading = false;
  2382. }
  2383. } else if (vm.handleNodeId == 44) {
  2384. // 康复下转导出
  2385. if (vm.recoveryList.length != 0) {
  2386. statisticAPI
  2387. .exportRehabilitationPatientInfo(vm.recoveryParameter(), vm.derive + '.xls')
  2388. .then(function (res) {
  2389. vm.fullscreenLoading = false;
  2390. })
  2391. .catch(function (err) {
  2392. toastr.info(err);
  2393. vm.fullscreenLoading = false;
  2394. console.error(err);
  2395. });
  2396. } else {
  2397. vm.fullscreenLoading = false;
  2398. }
  2399. } else if (vm.handleNodeId == 45) {
  2400. // 邀请专科回复明细导出
  2401. if (vm.invitationList.length != 0) {
  2402. var p = _.assign({}, vm.invitationDetailsParameter());
  2403. var docInfo = JSON.parse(window.localStorage.getItem('wlyyAgent'));
  2404. delete p.page;
  2405. delete p.pageSize;
  2406. p.doctor = docInfo.uid;
  2407. statisticAPI
  2408. .exportConsultHelpDetailPage(p, vm.derive + '.xls')
  2409. .then(function (res) {
  2410. vm.fullscreenLoading = false;
  2411. })
  2412. .catch(function (err) {
  2413. toastr.info(err);
  2414. vm.fullscreenLoading = false;
  2415. console.error(err);
  2416. });
  2417. } else {
  2418. vm.fullscreenLoading = false;
  2419. }
  2420. } else if (vm.collectCode == 1) {
  2421. // 专病汇总
  2422. if (vm.diseaseReport.length != 0) {
  2423. statisticAPI
  2424. .exportSpecialDiseaseReport(vm.getSpecialParameter(), vm.derive + '.xls')
  2425. .then(function (res) {
  2426. vm.fullscreenLoading = false;
  2427. })
  2428. .catch(function (err) {
  2429. toastr.info(err);
  2430. vm.fullscreenLoading = false;
  2431. console.error(err);
  2432. });
  2433. } else {
  2434. vm.fullscreenLoading = false;
  2435. }
  2436. } else if (vm.collectCode == 2) {
  2437. // 体征分析
  2438. if (vm.getDeviceReport.length != 0) {
  2439. statisticAPI
  2440. .exportDeviceHealthReport(vm.getDeviceParameter(), vm.derive + '.xls')
  2441. .then(function (res) {
  2442. vm.fullscreenLoading = false;
  2443. })
  2444. .catch(function (err) {
  2445. toastr.info(err);
  2446. vm.fullscreenLoading = false;
  2447. console.error(err);
  2448. });
  2449. } else {
  2450. vm.fullscreenLoading = false;
  2451. }
  2452. } else if (vm.collectCode == 3) {
  2453. // 上门汇总
  2454. if (vm.getDoorReport.length != 0) {
  2455. statisticAPI
  2456. .exportDoorServerOrderReport(vm.getDoorParameter(), vm.derive + '.xls')
  2457. .then(function (res) {
  2458. vm.fullscreenLoading = false;
  2459. })
  2460. .catch(function (err) {
  2461. toastr.info(err);
  2462. vm.fullscreenLoading = false;
  2463. console.error(err);
  2464. });
  2465. } else {
  2466. vm.fullscreenLoading = false;
  2467. }
  2468. } else if (vm.expertFamilyIdType == 'zhuanke1') {
  2469. // 邀请专科回复统计导出
  2470. if (vm.expertReplyData.length != 0) {
  2471. statisticAPI
  2472. .exportConsultHelpCountPage(vm.expertReply(), vm.derive + '.xls')
  2473. .then(function (res) {
  2474. vm.fullscreenLoading = false;
  2475. })
  2476. .catch(function (err) {
  2477. toastr.info(err);
  2478. vm.fullscreenLoading = false;
  2479. console.error(err);
  2480. });
  2481. } else {
  2482. vm.fullscreenLoading = false;
  2483. }
  2484. }
  2485. },
  2486. backClick: function () {
  2487. history.go(-1);
  2488. },
  2489. bindEvent: function () {
  2490. var vm = this;
  2491. //监听后退按钮的操作
  2492. EventBus.$on('back-click', function (arg) {
  2493. EventBus.$emit('update-statistics-time', {}); //更新统计时间
  2494. vm.backClick();
  2495. });
  2496. //监听页面刷新
  2497. EventBus.$on('refresh-click', function (arg) {
  2498. EventBus.$emit('update-statistics-time', {}); //更新统计时间
  2499. initData(vm);
  2500. });
  2501. $('#main').removeClass('c-hide');
  2502. },
  2503. detailFunction: function (id, status) {
  2504. var vm = this;
  2505. window.ajaxInsArr[vm.lastAjax] && window.ajaxInsArr[vm.lastAjax].abort();
  2506. if (id == 33) {
  2507. // 咨询分析
  2508. vm.getConsultList();
  2509. } else if (id == 34) {
  2510. // 签约分析
  2511. vm.getSignList();
  2512. } else if (id == 35) {
  2513. // 专病分析
  2514. vm.getSickList();
  2515. } else if (id == 36) {
  2516. // 生日祝福分析
  2517. vm.getBirthdayPatientList();
  2518. } else if (id == 37) {
  2519. // 上门服务分析
  2520. vm.getDoorServiceList();
  2521. } else if (id == 38) {
  2522. // 长处方分析
  2523. vm.getPrescriptionList();
  2524. } else if (id == 39) {
  2525. // 体征数据
  2526. vm.physicalSignData();
  2527. } else if (id == 40) {
  2528. // 上转预约
  2529. vm.upTransferAppointment();
  2530. } else if (id == 41) {
  2531. // 微信绑定
  2532. vm.wechatBinding();
  2533. } else if (id == 42) {
  2534. // 居民积分明细
  2535. vm.residentIntegral();
  2536. } else if (id == 43) {
  2537. // 入户访视
  2538. vm.interview();
  2539. } else if (id == 44) {
  2540. // 康复下转
  2541. vm.radio = '2';
  2542. vm.recovery();
  2543. if (!status) {
  2544. vm.pullDown();
  2545. }
  2546. } else if (id == 45) {
  2547. vm.radio = '2';
  2548. vm.invitationDetails();
  2549. if (!status) {
  2550. vm.getSpecialistHospital(); //获取专科医院
  2551. }
  2552. } else if (vm.expertFamilyIdType == 'zhuanke1') {
  2553. vm.expertReplyList();
  2554. }
  2555. },
  2556. getSpecialistHospital: function () {
  2557. var vm = this;
  2558. vm.specializedHospital = [{value: '', label: '全部'}];
  2559. homeAPI.getSpecialistHospital().then(function (res) {
  2560. console.log(res, 'Sdddddd');
  2561. if (res.status == 200) {
  2562. res.data.forEach(function (v) {
  2563. vm.specializedHospital.push({
  2564. value: v.code,
  2565. label: v.name
  2566. });
  2567. });
  2568. }
  2569. });
  2570. },
  2571. pullDown: function () {
  2572. this.deorsumvergenceStatusFunction('archive_status'); //档案状态
  2573. this.deorsumvergenceStatusFunction('rehabilitation_status'); //下转状态
  2574. this.deorsumvergenceStatusFunction('rehabilitation_hospital'); //下转医院
  2575. this.hospitalsByType();
  2576. },
  2577. // 下一页 上一页
  2578. handleCurrentChange: function (val) {
  2579. var vm = this;
  2580. vm.currentPage = val;
  2581. if (vm.handleNodeId == 0) {
  2582. vm.getStatisticDataList();
  2583. } else {
  2584. vm.detailFunction(vm.handleNodeId);
  2585. }
  2586. },
  2587. //获取省市区 type:区3
  2588. getDistrict: function (type, code, name) {
  2589. var vm = this,
  2590. list = [],
  2591. param = '';
  2592. if (type == 3) {
  2593. list = [{code: code, name: name}];
  2594. param = 'area';
  2595. } else if (type == 5) {
  2596. list = [{code: '', name: '全部'}];
  2597. param = 'community';
  2598. }
  2599. var params = {
  2600. type: type,
  2601. code: code
  2602. };
  2603. homeAPI.getDistrict(params).then(function (res) {
  2604. if (res.status == 200) {
  2605. vm[param + 'List'] = list.concat(res.list);
  2606. vm[param + 'Code'] = vm[param + 'List'][0].code;
  2607. } else {
  2608. vm.$message.error(res.msg);
  2609. }
  2610. });
  2611. },
  2612. selChange: function (type) {
  2613. var vm = this,
  2614. name = '';
  2615. if (type == 3) {
  2616. vm.initSelOption('community');
  2617. vm.initSelOption('team');
  2618. vm.getCommunityHospital();
  2619. } else if (type == 5) {
  2620. vm.initSelOption('team');
  2621. vm.teamListByArea();
  2622. }
  2623. },
  2624. initSelOption: function (param) {
  2625. var vm = this;
  2626. vm[param + 'List'] = [{code: '', name: '全部'}];
  2627. if (param == 'team') {
  2628. vm[param + 'List'] = [{id: '', name: '全部'}];
  2629. }
  2630. vm[param + 'Code'] = vm[param + 'List'][0].code || vm[param + 'List'][0].id;
  2631. },
  2632. getCommunityHospital: function () {
  2633. var vm = this,
  2634. list = [{code: '', name: '全部'}],
  2635. param = 'community';
  2636. homeAPI.getCommunityHospital({area: vm.areaCode == '350200' ? '' : vm.areaCode}).then(function (res) {
  2637. if (res.status == 200) {
  2638. vm[param + 'List'] = list.concat(res.data);
  2639. vm[param + 'Code'] = vm[param + 'List'][0].code;
  2640. } else {
  2641. vm.$message.error(res.msg);
  2642. }
  2643. });
  2644. },
  2645. teamListByArea: function () {
  2646. var vm = this,
  2647. list = [{id: '', name: '全部'}],
  2648. param = 'team';
  2649. homeAPI
  2650. .teamListByArea({area: vm.areaCode == '350200' ? '' : vm.areaCode, hospital: vm.communityCode})
  2651. .then(function (res) {
  2652. if (res.status == 200) {
  2653. vm[param + 'List'] = list.concat(res.data);
  2654. vm[param + 'Code'] = vm[param + 'List'][0].id;
  2655. } else {
  2656. vm.$message.error(res.msg);
  2657. }
  2658. });
  2659. },
  2660. // 慢阻肺搜索左侧字段变化
  2661. onCopdFilterChange(event) {
  2662. EventBus.$emit("copd-record-filter-change", event);
  2663. }
  2664. }
  2665. });
  2666. // 初始化时间
  2667. function initTime(vm) {
  2668. var now = new Date();
  2669. vm.end = now.format('yyyy-MM-dd');
  2670. var start = now.getTime() - 30 * 24 * 60 * 60 * 1000;
  2671. vm.start = new Date(start).format('yyyy-MM-dd');
  2672. vm.nowyear = vm.chooseYear = now.getFullYear();
  2673. vm.nowmonth = now.getMonth() + 1;
  2674. vm.years = [];
  2675. for (i = vm.nowyear; i >= 2016; i--) {
  2676. vm.years.push(i);
  2677. }
  2678. }
  2679. // 数据范围初始化
  2680. function initScope(vm) {
  2681. //获得缓存中缓存的角色权限
  2682. var userRole = window.sessionStorage.getItem('selectedRole');
  2683. if (!userRole) {
  2684. return false;
  2685. }
  2686. vm.userRole = JSON.parse(userRole);
  2687. //level:2、市,3、区,4、社区,5、团队
  2688. vm.initareaLevel = vm.areaLevel = vm.userRole.code == '350200' ? 2 : vm.userRole.code.length == 6 ? 3 : 4;
  2689. vm.initlevel = vm.level = vm.userRole.code == '350200' ? 4 : vm.userRole.code.length == 6 ? 3 : 2;
  2690. // vm.lowLevel = vm.initlowLevel = vm.userRole.code == '350200' ? 3 : vm.userRole.code.length == 6 ? 2 : 1;
  2691. vm.initarea = vm.area = vm.userRole.code;
  2692. vm.areaTitle = vm.userRole.name;
  2693. vm.rangeList = [
  2694. {name: '按区', code: 'town'},
  2695. {name: '按社区', code: 'hospital'},
  2696. {name: '按团队', code: 'team'}
  2697. ];
  2698. if (vm.initlevel == 4) {
  2699. //市获取区
  2700. vm.getDistrict(3, vm.initarea, vm.areaTitle.substr(0, 3));
  2701. vm.rangeCode = vm.rangeList[0].code;
  2702. } else if (vm.initlevel == 3) {
  2703. //区获取社区
  2704. vm.areaList = [{code: vm.initarea, name: vm.areaTitle}];
  2705. vm.areaCode = vm.initarea;
  2706. vm.rangeCode = vm.rangeList[0].code;
  2707. } else if (vm.initlevel == 2) {
  2708. //社区获取团队
  2709. vm.communityList = [{code: vm.initarea, name: vm.areaTitle}];
  2710. vm.communityCode = vm.initarea;
  2711. vm.rangeList.shift();
  2712. vm.rangeCode = vm.rangeList[0].code;
  2713. }
  2714. vm.searchJson.range = vm.rangeCode;
  2715. }
  2716. function initData(vm) {
  2717. initScope(vm);
  2718. //初始化时间
  2719. initTime(vm);
  2720. vm.tabledata = [];
  2721. vm.bindEvent();
  2722. }