repayment.js 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. var Request = GetRequest();
  2. var checktype = false;
  3. var loading = dialog({
  4. contentType: 'load',
  5. skin: 'bk-popup',
  6. });
  7. var iscrollState = ''; //判断滑动方向
  8. (function() {
  9. var myVue = new Vue({
  10. el: "#app",
  11. data: {
  12. data: {},
  13. waitPayList: [],
  14. waitPayDetailList: [],
  15. waitPayTotal: "",
  16. paidList: [],
  17. paidDetailList: [],
  18. length: 1,
  19. cardlenght: 0,
  20. cardId: "",
  21. hisId: "",
  22. tabType: "1",
  23. code: "",
  24. tabTypeTxt: ["", "待缴费帐单", "已缴费帐单"],
  25. },
  26. mounted: function() {
  27. var vm = this
  28. checkUserAgent();
  29. vm.checkType()
  30. vm.code = JSON.parse(localStorage.getItem("wlyyAgent")).uid
  31. },
  32. methods: {
  33. //获取就诊卡
  34. getData: function() {
  35. var vm = this
  36. loading.showModal();
  37. sendPost("patient/card/getCardList", {
  38. patient: vm.code
  39. }, "json", "get", function() {
  40. loading.close();
  41. dialog({
  42. contentType: 'tipsbox',
  43. bottom: true,
  44. skin: 'bk-popup',
  45. content: '请求失败'
  46. }).show();
  47. }, function(res) {
  48. if(res.status == 200) {
  49. if(res.data.length > 0) {
  50. vm.cardlenght = res.data.length
  51. if(Request.id) {
  52. vm.data = res.data.filter(function(item) {
  53. return item.id == Request.id
  54. })[0]
  55. if(!vm.data) {
  56. vm.data = res.data.filter(function(item) {
  57. return item.isDefault == 1
  58. })[0]
  59. }
  60. } else {
  61. vm.data = res.data.filter(function(item) {
  62. return item.isDefault == 1
  63. })[0]
  64. }
  65. if(!vm.data) {
  66. vm.data = res.data[0]
  67. }
  68. vm.cardId = vm.data.id
  69. vm.hisId = vm.data.hisId
  70. vm.getrepayList()
  71. } else {
  72. dialog({
  73. content: "请先绑定就诊卡,再查看就诊缴费帐单!",
  74. okValue: '确定',
  75. ok: function() {
  76. window.location.href = '../../payment/html/patientIDCards.html';
  77. },
  78. // cancelValue: '我再看看',
  79. // cancel: function(){}
  80. }).showModal()
  81. }
  82. } else {
  83. loading.close();
  84. dialog({
  85. contentType: 'tipsbox',
  86. bottom: true,
  87. skin: 'bk-popup',
  88. content: '数据获取失败'
  89. }).show();
  90. }
  91. })
  92. },
  93. //获取待缴费帐单
  94. getrepayList: function() {
  95. var vm = this
  96. vm.tabType = 1
  97. vm.waitPay()
  98. vm.waitPayDetail()
  99. },
  100. waitPay: function() {
  101. var vm = this
  102. sendPost("/third/hy/paySettle/waitPay", {
  103. hisId:this.hisId // "3c83266e-3fd4-4032-83f9-169d07145947"
  104. }, "json", "get", function() {
  105. loading.close();
  106. dialog({
  107. contentType: 'tipsbox',
  108. bottom: true,
  109. skin: 'bk-popup',
  110. content: '请求失败'
  111. }).show();
  112. }, function(res) {
  113. loading.close();
  114. if(res.status == 200) {
  115. if(res.data.code == 0) {
  116. vm.waitPayList = res.data.data
  117. vm.waitPayTotal = res.data.total
  118. vm.$nextTick(function() {
  119. vm.eventClick()
  120. })
  121. } else {
  122. dialog({
  123. contentType: 'tipsbox',
  124. bottom: true,
  125. skin: 'bk-popup',
  126. content: res.data.message || '数据查询失败'
  127. }).show();
  128. }
  129. } else {
  130. dialog({
  131. contentType: 'tipsbox',
  132. bottom: true,
  133. skin: 'bk-popup',
  134. content: res.msg || '数据查询失败'
  135. }).show();
  136. }
  137. })
  138. },
  139. waitPayDetail: function() {
  140. var vm = this
  141. sendPost("/third/hy/paySettle/waitPayDetail", {
  142. hisId: this.hisId
  143. }, "json", "get", function() {
  144. loading.close();
  145. dialog({
  146. contentType: 'tipsbox',
  147. bottom: true,
  148. skin: 'bk-popup',
  149. content: '请求失败'
  150. }).show();
  151. }, function(res) {
  152. loading.close();
  153. if(res.status == 200) {
  154. if(res.data.code == 0) {
  155. vm.waitPayDetailList = res.data.data
  156. } else {
  157. dialog({
  158. contentType: 'tipsbox',
  159. bottom: true,
  160. skin: 'bk-popup',
  161. content: res.data.message || '数据查询失败'
  162. }).show();
  163. }
  164. } else {
  165. dialog({
  166. contentType: 'tipsbox',
  167. bottom: true,
  168. skin: 'bk-popup',
  169. content: res.msg || '数据查询失败'
  170. }).show();
  171. }
  172. })
  173. },
  174. //获取已缴费帐单
  175. paid: function() {
  176. var vm = this
  177. vm.tabType = 2
  178. vm.getpaidList()
  179. // vm.getpaidDetailList()
  180. },
  181. getpaidList: function() {
  182. var vm = this
  183. sendPost("/third/hy/paySettle/paid", {
  184. hisId: vm.hisId
  185. }, "json", "get", function() {
  186. loading.close();
  187. dialog({
  188. contentType: 'tipsbox',
  189. bottom: true,
  190. skin: 'bk-popup',
  191. content: '请求失败'
  192. }).show();
  193. }, function(res) {
  194. loading.close();
  195. if(res.status == 200) {
  196. if(res.data.code == 0) {
  197. vm.paidList = _.each(res.data.data, function(item, index) {
  198. item.child = vm.getpaidDetailList(item.JsCode, item.JieSuanRiqi.replace(/-/g, ""), index)
  199. })
  200. vm.$nextTick(function() {
  201. vm.eventClick()
  202. })
  203. } else {
  204. dialog({
  205. contentType: 'tipsbox',
  206. bottom: true,
  207. skin: 'bk-popup',
  208. content: res.data.message || '数据查询失败'
  209. }).show();
  210. }
  211. } else {
  212. dialog({
  213. contentType: 'tipsbox',
  214. bottom: true,
  215. skin: 'bk-popup',
  216. content: res.msg || '数据查询失败'
  217. }).show();
  218. }
  219. })
  220. },
  221. //获取已缴费帐单
  222. getpaidDetailList: function(JsCode, JieSuanRiqi, index) {
  223. var vm = this
  224. var params = {
  225. hisId: vm.hisId,
  226. jsCode: JsCode,
  227. jsDate: JieSuanRiqi
  228. }
  229. sendPost("/third/hy/paySettle/paidDetail", params, "json", "get", function() {
  230. loading.close();
  231. dialog({
  232. contentType: 'tipsbox',
  233. bottom: true,
  234. skin: 'bk-popup',
  235. content: '请求失败'
  236. }).show();
  237. }, function(res) {
  238. loading.close();
  239. if(res.status == 200) {
  240. if(res.data.code == 0) {
  241. vm.paidList[index].child = res.data.data
  242. } else {
  243. dialog({
  244. contentType: 'tipsbox',
  245. bottom: true,
  246. skin: 'bk-popup',
  247. content: res.data.message || '数据查询失败'
  248. }).show();
  249. }
  250. } else {
  251. dialog({
  252. contentType: 'tipsbox',
  253. bottom: true,
  254. skin: 'bk-popup',
  255. content: res.msg || '数据查询失败'
  256. }).show();
  257. }
  258. })
  259. },
  260. //门诊结算
  261. toPay: function() {
  262. var vm = this
  263. sendPost("/third/hy/paySettle/outpSettle", {
  264. hisId: vm.hisId
  265. }, "json", "get", function() {
  266. loading.close();
  267. dialog({
  268. contentType: 'tipsbox',
  269. bottom: true,
  270. skin: 'bk-popup',
  271. content: '请求失败'
  272. }).show();
  273. }, function(res) {
  274. loading.close();
  275. if(res.status == 200) {
  276. if(res.data.code == 0) {
  277. window.location.href = "../../payment/html/repaymentResult.html?patientName=" + vm.data.name + "&healthNo=" + vm.data.cardNo + "&payAmount=" + vm.waitPayTotal + "&createDate=" + getNowFormatDate() + "&cardId=" + vm.data.id;
  278. } else {
  279. dialog({
  280. contentType: 'tipsbox',
  281. bottom: true,
  282. skin: 'bk-popup',
  283. content: res.data.message || '数据查询失败'
  284. }).show();
  285. }
  286. } else {
  287. dialog({
  288. contentType: 'tipsbox',
  289. bottom: true,
  290. skin: 'bk-popup',
  291. content: res.msg || '数据查询失败'
  292. }).show();
  293. }
  294. })
  295. },
  296. //跳转切换就诊卡
  297. changeCards: function() {
  298. window.location.href = '../../payment/html/changeCards.html?pre=repayment';
  299. },
  300. //跳转我的就诊卡页面
  301. gotoCards: function() {
  302. window.location.href = '../../payment/html/patientIDCards.html';
  303. },
  304. eventClick: function() {
  305. $(".c-list-link").unbind("click")
  306. $(".c-list-link").click(function() {
  307. $(this).parent().siblings().toggle();
  308. if($(this).hasClass("list-arrow-u")) {
  309. $(this).addClass("list-arrow-d").removeClass("list-arrow-u");
  310. } else {
  311. $(this).addClass("list-arrow-u").removeClass("list-arrow-d");
  312. }
  313. })
  314. },
  315. //判断是否验证登录通过
  316. checkType: function() {
  317. var vm = this
  318. var timer = setInterval(function() {
  319. if(checktype) {
  320. clearInterval(timer);
  321. vm.getData()
  322. }
  323. }, 10);
  324. },
  325. },
  326. })
  327. })()
  328. function queryInit() {
  329. checktype = true
  330. }
  331. function getNowFormatDate() {
  332. var date = new Date();
  333. var seperator1 = "-";
  334. var year = date.getFullYear();
  335. var month = date.getMonth() + 1;
  336. var strDate = date.getDate();
  337. if(month >= 1 && month <= 9) {
  338. month = "0" + month;
  339. }
  340. if(strDate >= 0 && strDate <= 9) {
  341. strDate = "0" + strDate;
  342. }
  343. var hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
  344. var minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
  345. var second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
  346. var currentdate = year + seperator1 + month + seperator1 + strDate+" "+hour+":"+minute+":"+second;
  347. return currentdate;
  348. }