statistics-api.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. ;(function (exports) {
  2. var statisticAPI = {
  3. /*************首页*******************/
  4. getSignInfo: function (data) {
  5. return httpRequest.get('/statistics/sign_info', { data: data })
  6. },
  7. /*************总体分析页面接口列表**************/
  8. //1、顶部各个tab的值
  9. statisticTotal: function (data) {
  10. return httpRequest.get('/statistics/total', { data: data })
  11. },
  12. //微信绑定和设备绑定数据接口
  13. statisticBindAll: function (data) {
  14. return httpRequest.get('/statistics/index_all', { data: data })
  15. },
  16. //健康文章发送数量
  17. articleAll: function (data) {
  18. return httpRequest.get('/statistics/article_total', { data: data })
  19. },
  20. //2、中间折线图接口
  21. //增量(咨询量3、随访量4、健康教育5、代预约量27),到达量(绑定微信21、绑定设备20)
  22. interval: function (data) {
  23. return httpRequest.get('statistics/interval', { data: data })
  24. },
  25. intervalTotal: function (data) {
  26. return httpRequest.get('statistics/interval_total', { data: data })
  27. },
  28. //3、底部区域数据接口
  29. lowlevelTotal: function (data) {
  30. return httpRequest.get('statistics/lowlevel_total', { data: data })
  31. },
  32. //微信绑定和设备绑定
  33. lowlevelAll: function (data) {
  34. return httpRequest.get('statistics/lowlevel_all', { data: data })
  35. },
  36. //咨询量数据
  37. lowlevelTotalMesh: function (data) {
  38. return httpRequest.get('statistics/lowlevel_total_mesh', { data: data })
  39. },
  40. articleLowlevelTotal: function (data) {
  41. return httpRequest.get('/statistics/article_lowlevel_total', { data: data })
  42. },
  43. lowlevelData: function (url, data) {
  44. return httpRequest.get(url, { data: data })
  45. },
  46. //获得团队的详情
  47. getTeamInfo: function (data) {
  48. return httpRequest.get('doctor/admin-teams/teams/info', { data: data })
  49. },
  50. //获取居民分析相关数据
  51. leveltwoIncrementData: function (data) {
  52. return httpRequest.get('/statistics/leveltwo_increment', { data: data })
  53. },
  54. statisticsTime: function (data) {
  55. return httpRequest.get('/statistics/time', { data: data })
  56. },
  57. //长处方分析接口
  58. getPrescriptionTotalHistogram: function (data) {
  59. return httpRequest.get('statistics/getPrescriptionTotalHistogram', { data: data })
  60. },
  61. //评价分析
  62. //按月份获得个月的评价平均分
  63. getAVGSocreByMonth: function (data) {
  64. return httpRequest.get('/statistics/getAVGSocreByMonth', { data: data })
  65. },
  66. //资质分析
  67. doorQualificationAnalyze: function (data) {
  68. return httpRequest.get('/doctor/statisticAnalyze/doorQualificationAnalyze', { data: data })
  69. },
  70. //资质分析导出excel
  71. doorQualificationAnalyzeExport: httpRequest.server + 'doctor/statisticAnalyze/doorQualificationAnalyzeExport',
  72. //响应速度分析
  73. doorResponseAnalyze: function (data) {
  74. return httpRequest.get('/doctor/statisticAnalyze/doorResponseAnalyze', { data: data })
  75. },
  76. //响应速度分析导出excel
  77. doorResponseAnalyzeExport: httpRequest.server + 'doctor/statisticAnalyze/doorResponseAnalyzeExport',
  78. //服务工单分析
  79. doorServiceOrderAnalyze: function (data) {
  80. return httpRequest.get('/doctor/statisticAnalyze/doorServiceOrderAnalyze', { data: data })
  81. },
  82. //服务工单分析导出excel
  83. doorServiceOrderAnalyzeExport: httpRequest.server + 'doctor/statisticAnalyze/doorServiceOrderAnalyzeExport',
  84. //补助费用
  85. subsidyExpense: function (data) {
  86. return httpRequest.get('/doctor/statisticAnalyze/subsidyExpense', { data: data })
  87. },
  88. //补助费用导出excel
  89. subsidyExpenseExport: httpRequest.server + 'doctor/statisticAnalyze/subsidyExpenseExport',
  90. //代预约记录
  91. GetReservationByTeamId: function (data) {
  92. return httpRequest.post('/doctor/guahao/GetReservationByTeamId', { data: data })
  93. },
  94. //数据导出查询
  95. getStatisticDataList: function (data) {
  96. return httpRequest.get('statisticsExport/getStatisticDataList', { data: data })
  97. },
  98. //数据导出查询-左侧树
  99. exportTreeList: function (data) {
  100. return httpRequest.get('statisticsExport/treeList', { data: data })
  101. },
  102. // 专病分析-疾病类型
  103. specialistAnalysisDiseaseType: function (data) {
  104. return httpRequest.get('specialistStatistics/specialistAnalysisDiseaseType', { data: data })
  105. },
  106. selectHospital: function (data) {
  107. return httpRequest.get('specialistStatistics/selectHospital', { data: data })
  108. },
  109. //数据导出查询
  110. getWHFInfoList: function (data) {
  111. return httpRequest.get('third/door/getWHFInfoList', { data: data })
  112. },
  113. // 咨询分析明细
  114. getConsultList: function (data) {
  115. return httpRequest.get('statisticsExport/getConsultList', { data: data })
  116. },
  117. // 签约分析明细
  118. getSignList: function (data) {
  119. return httpRequest.get('statisticsExport/getSignList', { data: data })
  120. },
  121. // 专病分析明细
  122. getSickList: function (data) {
  123. return httpRequest.get('statisticsExport/getSickList', { data: data })
  124. },
  125. // 生日祝福分析明细
  126. getBirthdayPatientList: function (data) {
  127. return httpRequest.get('statisticsExport/getBirthdayPatientList', { data: data })
  128. },
  129. //导出生日祝福分析明细
  130. getBirthdayPatientListExport: function (data) {
  131. return httpRequest.get('statisticsExport/getBirthdayPatientListExport', { data: data })
  132. },
  133. // 上门服务分析明细
  134. getDoorServiceList: function (data) {
  135. return httpRequest.get('statisticsExport/getDoorServiceList', { data: data })
  136. },
  137. // 长处方分析明细
  138. getPrescriptionList: function (data) {
  139. return httpRequest.get('statisticsExport/getPrescriptionList', { data: data })
  140. },
  141. // 获取专病疾病类型
  142. getDiseaseTypeList: function (data) {
  143. return httpRequest.get('statisticsExport/getDiseaseTypeList', { data: data })
  144. },
  145. // 年度考核报表
  146. getAnnualAssessment: function (data) {
  147. return httpRequest.get('statisticsExport/getAnnualAssessment', { data: data })
  148. },
  149. // 体征数据列表
  150. getHealthList: function (data) {
  151. return httpRequest.get('statisticsExport/getHealthList', { data: data })
  152. },
  153. // 上转预约列表
  154. getDoctorReservationList: function (data) {
  155. return httpRequest.get('statisticsExport/getDoctorReservationList', { data: data })
  156. },
  157. // 专病复诊明细列表
  158. getXxzxMedicalHistoryList: function (data) {
  159. return httpRequest.get('statisticsExport/getXxzxMedicalHistoryList', { data: data })
  160. },
  161. // 微信绑定列表
  162. getWexinBindingList: function (data) {
  163. return httpRequest.get('statisticsExport/getWexinBindingList', { data: data })
  164. },
  165. // 查询上转预约科室和医院
  166. getReservationHosAndDept: function (data) {
  167. return httpRequest.get('statisticsExport/getReservationHosAndDept', { data: data })
  168. },
  169. // 获取汇总数据的专科医院
  170. getSpecialHospital: function (data) {
  171. return httpRequest.get('statisticsExport/getSpecialHospital', { data: data })
  172. },
  173. //专病汇总查询
  174. getSpecialDiseaseReport: function (data) {
  175. return httpRequest.get('statisticsExport/getSpecialDiseaseReport', { data: data })
  176. },
  177. //体征分析查询
  178. getDeviceHealthReport: function (data) {
  179. return httpRequest.get('statisticsExport/getDeviceHealthReport', { data: data })
  180. },
  181. //上门汇总
  182. getDoorServerOrderReport: function (data) {
  183. return httpRequest.get('statisticsExport/getDoorServerOrderReport', { data: data })
  184. },
  185. // 居民积分明细
  186. patinetIntegralAnalysis: function (data) {
  187. return httpRequest.get('statisticsExport/patinetIntegralAnalysis', { data: data })
  188. },
  189. // 入户访视明细
  190. findPatientFollowListByCondition: function (data) {
  191. return httpRequest.get('statisticsExport/findPatientFollowListByCondition', { data: data })
  192. },
  193. //康复下转明细
  194. rehabilitationPatientInfo: function (data) {
  195. return httpRequest.get('doctor/specialist/rehabilitation/rehabilitationPatientInfo', { data: data })
  196. },
  197. // 康复下转分配,同步居民,同步病历
  198. synchronizePationSingle: function (data) {
  199. return httpRequest.post('doctor/specialist/rehabilitation/synchronizePationSingle', { data: data })
  200. },
  201. //康复下转获取签约信息
  202. kangfuGetSignInfo: function (data) {
  203. return httpRequest.get('doctor/specialist/rehabilitation/getSignInfo', { data: data })
  204. },
  205. // 获取社区医院
  206. hospitalList: function (data) {
  207. return httpRequest.get('/doctor/jkCopd/hospitalList', { data: data })
  208. },
  209. // 获取社区医院
  210. hospitalsByType: function (data) {
  211. return httpRequest.get('hospitals/hospitalsByType', { data: data })
  212. },
  213. // 邀请专科医生回复明细列表
  214. consultHelpDetailPage: function (data) {
  215. return httpRequest.get('statisticsExport/consultHelpDetailPage', { data: data })
  216. },
  217. // 邀请专科医生回复统计列表
  218. consultHelpCountPage: function (data) {
  219. return httpRequest.get('statisticsExport/consultHelpCountPage', { data: data })
  220. },
  221. // 获取慢阻肺医院工作量表
  222. hospitalWorkStatistics: function (data) {
  223. return httpRequest.get('copd/statistics/hospitalWorkStatistics', { data: data })
  224. },
  225. // 级联查询医院
  226. cascadingFindHosptail: function (data) {
  227. return httpRequest.get('copd/statistics/cascadingFindHosptail', { data: data })
  228. },
  229. // 获取慢阻肺V1\入组情况报表
  230. findHospitalEntryCount: function (data) {
  231. return httpRequest.get('copd/statistics/findHospitalEntryCount', { data: data })
  232. },
  233. //慢阻肺患者查询
  234. getCopdPatientInfoList: function (data) {
  235. return httpRequest.get('copd/statistics/getCopdPatientInfoList', { data: data })
  236. },
  237. //慢阻肺入组进度表
  238. getCopdEntryData: function (data) {
  239. return httpRequest.get('copd/statistics/getCopdEntryData', { data: data })
  240. },
  241. //慢阻肺入组明细
  242. getCopdEntryCommunityData: function (data) {
  243. return httpRequest.get('copd/statistics/getCopdEntryCommunityData', { data: data })
  244. },
  245. //慢阻肺随访进度表
  246. getCopdFollowData: function (data) {
  247. return httpRequest.get('copd/statistics/getCopdFollowData', { data: data })
  248. },
  249. //慢阻肺随访明细表-PC
  250. getCopdFollowDetailData: function (data) {
  251. return httpRequest.get('copd/statistics/getCopdFollowDetailData', { data: data })
  252. },
  253. //阻肺呼吸训练数据【获取慢阻肺的呼吸的列表数据】
  254. findCopdHealthInfoList: function (data) {
  255. return httpRequest.get('copd/statistics/findCopdHealthInfoList', { data: data })
  256. },
  257. // 一个患者所有的呼吸数据
  258. findCopdHealthInfoByCode: function (data) {
  259. return httpRequest.get('copd/statistics/findCopdHealthInfoByCode', { data: data })
  260. },
  261. // 获取个案的随访信息【随访计划】
  262. findCopdPatientFollowList: function (data) {
  263. return httpRequest.get('copd/statistics/findCopdPatientFollowList', { data: data })
  264. },
  265. // 获取慢阻肺手表数据
  266. watchStatisticsList: function (data) {
  267. return httpRequest.get('copd/statistics/watchStatisticsList', { data: data })
  268. },
  269. // 获取慢阻肺手表亚组居民列表
  270. watchPage: function (data) {
  271. return httpRequest.get('copd/statistics/watchPage', { data: data })
  272. },
  273. // 获取慢阻肺手表体征数据明细
  274. copdList: function (data) {
  275. return httpRequest.get('doctor/health_index/copdList', { data: data })
  276. },
  277. // 慢阻肺监查、稽查情况统计查询
  278. getCopdCheckExamineData: function (data) {
  279. return httpRequest.get('copd/statistics/getCopdCheckExamineData', { data: data })
  280. },
  281. // 慢阻肺第二阶段三级医院入组进度
  282. getGradeHospitalEntryData: function (data) {
  283. return httpRequest.get('/copd/statistics/getGradeHospitalEntryData', { data: data })
  284. },
  285. // 慢阻肺第二阶段社区医院入组进度
  286. getCommunityHospitalEntryData: function (data) {
  287. return httpRequest.get('/copd/statistics/getCommunityHospitalEntryData', { data: data })
  288. },
  289. // 慢阻肺第二阶段三级医院随访进度
  290. getGradeHospitalFollowData: function (data) {
  291. return httpRequest.get('/copd/statistics/getGradeHospitalFollowData', { data: data })
  292. },
  293. // 慢阻肺第二阶段社区医院随访进度
  294. getCommunityHospitalFollowData: function (data) {
  295. return httpRequest.get('/copd/statistics/getCommunityHospitalFollowData', { data: data })
  296. },
  297. // 慢阻肺第一阶段入组随访进度
  298. getFirstStageEntryData: function (data) {
  299. return httpRequest.get('/copd/statistics/getFirstStageEntryData', { data: data })
  300. },
  301. // 慢阻肺第二阶段三级医院随访进度及出组情况
  302. getFollowAndOutData: function (data) {
  303. return httpRequest.get('/copd/statistics/getFollowAndOutData', { data: data })
  304. },
  305. //慢阻肺居民监测档案列表
  306. jkCopdAchivesPage: function (data) {
  307. return httpRequest.get('/doctor/jkCopd/jkCopdAchivesPage', { data: data })
  308. },
  309. updJkCopdPatient: function (data) {
  310. return httpRequest.post('/doctor/jkCopd/updJkCopdPatient', { data: data })
  311. },
  312. //通用字典
  313. getDictByDictName: function (data) {
  314. return httpRequest.get('/common/getDictByDictName', { data: data })
  315. },
  316. getNationDict: function (data) {
  317. return httpRequest.get('/doctor/patient/getNationDict', { data: data })
  318. },
  319. //获取省市区 type:省1,市2,区3
  320. getDistrict:function(data) {
  321. return httpRequest.post("/common/district", {data: data})
  322. },
  323. //档案同步
  324. synPatient:function(data) {
  325. return httpRequest.post("/doctor/jkCopd/synPatient", {data: data})
  326. },
  327. dealRecordPage: function (data) {
  328. return httpRequest.get('/doctor/jkCopd/dealRecordPage', { data: data })
  329. },
  330. getPatientAccetokenByIdcard: function (data) {
  331. return httpRequest.post('/doctor/archives/getPatientAccetokenByIdcard', { data: data })
  332. },
  333. followupDetail: function (data) {
  334. return httpRequest.get('/doctor/jkCopd/followupDetail', { data: data })
  335. },
  336. //批量分配
  337. distributionHospital:function(data) {
  338. return httpRequest.post("/doctor/jkCopd/distributionHospital", {data: data})
  339. },
  340. manageInfo: function (data) {
  341. return httpRequest.get('/doctor/jkCopd/manageInfo', { data: data })
  342. },
  343. // 档案导出
  344. exportJkCopdAchives: function (data, filename) {
  345. return httpRequest.downLoadFileForAjax('doctor/jkCopd/exportJkCopdAchives', filename, data)
  346. },
  347. // 档案导入
  348. importExcel:function(data) {
  349. return httpRequest.post("/doctor/jkCopd/importExcel", {data: data})
  350. },
  351. // 管理情况自助查询导出
  352. exportManageInfo: function (data, filename) {
  353. return httpRequest.downLoadFileForAjax('doctor/jkCopd/exportManageInfo', filename, data)
  354. },
  355. // 综合分析导出
  356. statisticsExportExport: function (data, filename) {
  357. return httpRequest.downLoadFileForAjax('statisticsExport/export', filename, data)
  358. },
  359. // 咨询分析导出
  360. statisticsExportExportConsultList: function (data, filename) {
  361. return httpRequest.downLoadFileForAjax('statisticsExport/exportConsultList', filename, data)
  362. },
  363. // 签约分析导出
  364. statisticsExportExportSignList: function (data, filename) {
  365. return httpRequest.downLoadFileForAjax('statisticsExport/exportSignList', filename, data)
  366. },
  367. // 专病分析导出
  368. statisticsExportExportSickList: function (data, filename) {
  369. return httpRequest.downLoadFileForAjax('statisticsExport/exportSickList', filename, data)
  370. },
  371. // 生日祝福分析导出
  372. statisticsExportGetBirthdayPatientListExport: function (data, filename) {
  373. return httpRequest.downLoadFileForAjax('statisticsExport/getBirthdayPatientListExport', filename, data)
  374. },
  375. // 上门服务导出
  376. statisticsExportExportDoorServiceList: function (data, filename) {
  377. return httpRequest.downLoadFileForAjax('statisticsExport/exportDoorServiceList', filename, data)
  378. },
  379. // 长处方导出
  380. statisticsExportExportPrescriptionList: function (data, filename) {
  381. return httpRequest.downLoadFileForAjax('statisticsExport/exportPrescriptionList', filename, data)
  382. },
  383. // 年度考核报表导出
  384. statisticsExportExportAnnualAssessment: function (data, filename) {
  385. return httpRequest.downLoadFileForAjax('statisticsExport/exportAnnualAssessment', filename, data)
  386. },
  387. // 咨询未及时回复导出
  388. appAdminToExcel: function (data, filename) {
  389. return httpRequest.downLoadFileForAjax('third/door/appAdminToExcel', filename, data)
  390. },
  391. //体征数据导出
  392. exportHealthList: function (data, filename) {
  393. return httpRequest.downLoadFileForAjax('statisticsExport/exportHealthList', filename, data)
  394. },
  395. //上转预约导出
  396. exportDoctorReservationList: function (data, filename) {
  397. return httpRequest.downLoadFileForAjax('statisticsExport/exportDoctorReservationList', filename, data)
  398. },
  399. //微信绑定导出
  400. exportWexinBindingList: function (data, filename) {
  401. return httpRequest.downLoadFileForAjax('statisticsExport/exportWexinBindingList', filename, data)
  402. },
  403. // 专病汇总导出
  404. exportSpecialDiseaseReport: function (data, filename) {
  405. return httpRequest.downLoadFileForAjax('statisticsExport/exportSpecialDiseaseReport', filename, data)
  406. },
  407. // 体征分析导出
  408. exportDeviceHealthReport: function (data, filename) {
  409. return httpRequest.downLoadFileForAjax('statisticsExport/exportDeviceHealthReport', filename, data)
  410. },
  411. // 上门汇总导出
  412. exportDoorServerOrderReport: function (data, filename) {
  413. return httpRequest.downLoadFileForAjax('statisticsExport/exportDoorServerOrderReport', filename, data)
  414. },
  415. // 居民积分明细导出
  416. exPatinetIntegralAnalysis: function (data, filename) {
  417. return httpRequest.downLoadFileForAjax('statisticsExport/exPatinetIntegralAnalysis', filename, data)
  418. },
  419. // 入户访视明细导出
  420. exfindPatientFollowListByCondition: function (data, filename) {
  421. return httpRequest.downLoadFileForAjax('statisticsExport/exfindPatientFollowListByCondition', filename, data)
  422. },
  423. // 康复下转明细导出
  424. exportRehabilitationPatientInfo: function (data, filename) {
  425. return httpRequest.downLoadFileForAjax(
  426. 'doctor/specialist/rehabilitation/exportRehabilitationPatientInfo',
  427. filename,
  428. data
  429. )
  430. },
  431. // 邀请专科医生回复明细导出
  432. exportConsultHelpDetailPage: function (data, filename) {
  433. return httpRequest.downLoadFileForAjax('statisticsExport/exportConsultHelpDetailPage', filename, data)
  434. },
  435. // 邀请专科医生回复统计导出
  436. exportConsultHelpCountPage: function (data, filename) {
  437. return httpRequest.downLoadFileForAjax('statisticsExport/exportConsultHelpCountPage', filename, data)
  438. },
  439. // 慢阻肺医院工作量表导出
  440. exportHospitalWorkStatistics: function (data, filename) {
  441. return httpRequest.downLoadFileForAjax('copd/statistics/exportHospitalWorkStatistics', filename, data)
  442. },
  443. // v1入组导出
  444. exportHospitalEntryCount: function (data, filename) {
  445. return httpRequest.downLoadFileForAjax('copd/statistics/exportHospitalEntryCount', filename, data)
  446. },
  447. // 专病复诊明细表导出
  448. exportXxzxMedicalHistoryList: function (data, filename) {
  449. return httpRequest.downLoadFileForAjax('statisticsExport/exportXxzxMedicalHistoryList', filename, data)
  450. },
  451. // 慢阻肺入组进度表-PC-导出
  452. exportCopdEntryData: function (data, filename) {
  453. return httpRequest.downLoadFileForAjax('copd/statistics/exportCopdEntryData', filename, data)
  454. },
  455. // 慢阻肺入组明细表-PC-导出
  456. exportCopdEntryCommunityData: function (data, filename) {
  457. return httpRequest.downLoadFileForAjax('copd/statistics/exportCopdEntryCommunityData', filename, data)
  458. },
  459. //慢阻肺随访进度表-PC-导出
  460. exportCopdFollowData: function (data, filename) {
  461. return httpRequest.downLoadFileForAjax('copd/statistics/exportCopdFollowData', filename, data)
  462. },
  463. //慢阻肺随访明细表-PC-导出
  464. exportCopdFollowDetailData: function (data, filename) {
  465. return httpRequest.downLoadFileForAjax('copd/statistics/exportCopdFollowDetailData', filename, data)
  466. },
  467. // 呼吸数据导出
  468. exoprtCopdHealthInfoList: function (data, filename) {
  469. return httpRequest.downLoadFileForAjax('copd/statistics/exoprtCopdHealthInfoList', filename, data)
  470. },
  471. // 慢阻肺患者查询导出
  472. exportCopdPatientInfoList: function (data, filename) {
  473. return httpRequest.downLoadFileForAjax('copd/statistics/exportCopdPatientInfoList', filename, data)
  474. },
  475. //导出随访计划
  476. exportConclusionList: function (data, filename) {
  477. return httpRequest.downLoadFileForAjax('doctor/copd/exportConclusionList', filename, data)
  478. },
  479. // 手表亚组数据导出
  480. exportWatchStatisticsList: function (data, filename) {
  481. return httpRequest.downLoadFileForAjax('copd/statistics/exportWatchStatisticsList', filename, data)
  482. },
  483. // 手表亚组居民数据导出
  484. exportWatchPage: function (data, filename) {
  485. return httpRequest.downLoadFileForAjax('copd/statistics/exportWatchPage', filename, data)
  486. },
  487. // 慢阻肺监查、稽查情况统计导出
  488. exportCopdCheckExamineData: function (data, filename) {
  489. return httpRequest.downLoadFileForAjax('copd/statistics/exportCopdCheckExamineData', filename, data)
  490. },
  491. // 慢阻肺第一阶段入组随访情况统计导出
  492. exportFirstStageEntryData: function (data, filename) {
  493. return httpRequest.downLoadFileForAjax('/copd/statistics/exportFirstStageEntryData', filename, data)
  494. },
  495. // 慢阻肺第二阶段社区医院随访情况导出
  496. exportCommunityHospitalFollowData: function (data, filename) {
  497. return httpRequest.downLoadFileForAjax('/copd/statistics/exportCommunityHospitalFollowData', filename, data)
  498. },
  499. // 慢阻肺第二阶段三级医院随访情况统计导出
  500. exportGradeHospitalFollowData: function (data, filename) {
  501. return httpRequest.downLoadFileForAjax('/copd/statistics/exportGradeHospitalFollowData', filename, data)
  502. },
  503. // 慢阻肺第二阶段社区医院入组情况统计导出
  504. exportCommunityHospitalEntryData: function (data, filename) {
  505. return httpRequest.downLoadFileForAjax('/copd/statistics/exportCommunityHospitalEntryData', filename, data)
  506. },
  507. // 慢阻肺第二阶段三级医院入组情况统计导出
  508. exportGradeHospitalEntryData: function (data, filename) {
  509. return httpRequest.downLoadFileForAjax('/copd/statistics/exportGradeHospitalEntryData', filename, data)
  510. },
  511. // 慢阻肺第二阶段三级医院随访进度及出组情况导出
  512. exportFollowAndOutData: function (data, filename) {
  513. return httpRequest.downLoadFileForAjax('/copd/statistics/exportFollowAndOutData', filename, data)
  514. },
  515. // 获取社区签约医生列表
  516. findDoctorList(data){
  517. return httpRequest.get('/doctor/jkCopd/findDoctorList', { data:data })
  518. },
  519. // 慢病骨干分配患者
  520. distributionPatient(data){
  521. return httpRequest.post('/doctor/jkCopd/distributionPatient', { data })
  522. },
  523. // 导出国家标准
  524. exportCountryStandard(data, filename){
  525. return httpRequest.downLoadFileForAjax('/doctor/jkCopd/exportNationalStandard', filename, data)
  526. },
  527. jkCopdPatientDetail(data){
  528. return httpRequest.get('/doctor/jkCopd/jkCopdPatientDetail', { data })
  529. }
  530. }
  531. exports.statisticAPI = statisticAPI
  532. })(window)