repayment.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  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. if(vm.data.type=="2"){
  69. vm.data.cardNo=vm.data.cardNo.substr(0,1)+"*************"+vm.data.cardNo.substr(vm.data.cardNo.length-4,4)
  70. }
  71. vm.cardId = vm.data.id
  72. vm.hisId = vm.data.hisId
  73. vm.getrepayList()
  74. } else {
  75. dialog({
  76. content: "请先绑定就诊卡,再查看就诊缴费帐单!",
  77. okValue: '确定',
  78. ok: function() {
  79. window.location.href = '../../payment/html/patientIDCards.html';
  80. },
  81. // cancelValue: '我再看看',
  82. // cancel: function(){}
  83. }).showModal()
  84. }
  85. } else {
  86. loading.close();
  87. dialog({
  88. contentType: 'tipsbox',
  89. bottom: true,
  90. skin: 'bk-popup',
  91. content: '数据获取失败'
  92. }).show();
  93. }
  94. })
  95. },
  96. //获取待缴费帐单
  97. getrepayList: function() {
  98. var vm = this
  99. vm.tabType = 1
  100. vm.waitPay()
  101. vm.waitPayDetail()
  102. },
  103. waitPay: function() {
  104. var vm = this
  105. sendPost("/third/hy/paySettle/waitPay", {
  106. hisId: this.hisId // "3c83266e-3fd4-4032-83f9-169d07145947"
  107. }, "json", "get", function() {
  108. loading.close();
  109. dialog({
  110. contentType: 'tipsbox',
  111. bottom: true,
  112. skin: 'bk-popup',
  113. content: '请求失败'
  114. }).show();
  115. }, function(res) {
  116. loading.close();
  117. if(res.status == 200) {
  118. if(res.data.code == 0) {
  119. vm.waitPayList = res.data.data
  120. vm.waitPayTotal = parseFloat(res.data.total).toFixed(2)
  121. vm.$nextTick(function() {
  122. vm.eventClick()
  123. })
  124. } else {
  125. dialog({
  126. contentType: 'tipsbox',
  127. bottom: true,
  128. skin: 'bk-popup',
  129. content: res.data.message || '数据查询失败'
  130. }).show();
  131. }
  132. } else {
  133. dialog({
  134. contentType: 'tipsbox',
  135. bottom: true,
  136. skin: 'bk-popup',
  137. content: res.msg || '数据查询失败'
  138. }).show();
  139. }
  140. })
  141. },
  142. waitPayDetail: function() {
  143. var vm = this
  144. sendPost("/third/hy/paySettle/waitPayDetail", {
  145. hisId: this.hisId
  146. }, "json", "get", function() {
  147. loading.close();
  148. dialog({
  149. contentType: 'tipsbox',
  150. bottom: true,
  151. skin: 'bk-popup',
  152. content: '请求失败'
  153. }).show();
  154. }, function(res) {
  155. loading.close();
  156. if(res.status == 200) {
  157. if(res.data.code == 0) {
  158. vm.waitPayDetailList = res.data.data
  159. } else {
  160. dialog({
  161. contentType: 'tipsbox',
  162. bottom: true,
  163. skin: 'bk-popup',
  164. content: res.data.message || '数据查询失败'
  165. }).show();
  166. }
  167. } else {
  168. dialog({
  169. contentType: 'tipsbox',
  170. bottom: true,
  171. skin: 'bk-popup',
  172. content: res.msg || '数据查询失败'
  173. }).show();
  174. }
  175. })
  176. },
  177. //获取已缴费帐单
  178. paid: function() {
  179. var vm = this
  180. vm.tabType = 2
  181. vm.getpaidList()
  182. // vm.getpaidDetailList()
  183. },
  184. getpaidList: function() {
  185. var vm = this
  186. sendPost("/third/hy/paySettle/paid", {
  187. hisId: vm.hisId
  188. }, "json", "get", function() {
  189. loading.close();
  190. dialog({
  191. contentType: 'tipsbox',
  192. bottom: true,
  193. skin: 'bk-popup',
  194. content: '请求失败'
  195. }).show();
  196. }, function(res) {
  197. loading.close();
  198. if(res.status == 200) {
  199. if(res.data.code == 0) {
  200. vm.paidList = _.each(res.data.data, function(item, index) {
  201. item.child = vm.getpaidDetailList(item.JsCode, item.JieSuanRiqi.replace(/-/g, ""), index)
  202. })
  203. vm.$nextTick(function() {
  204. vm.eventClick()
  205. })
  206. } else {
  207. dialog({
  208. contentType: 'tipsbox',
  209. bottom: true,
  210. skin: 'bk-popup',
  211. content: res.data.message || '数据查询失败'
  212. }).show();
  213. }
  214. } else {
  215. dialog({
  216. contentType: 'tipsbox',
  217. bottom: true,
  218. skin: 'bk-popup',
  219. content: res.msg || '数据查询失败'
  220. }).show();
  221. }
  222. })
  223. },
  224. //获取已缴费帐单
  225. getpaidDetailList: function(JsCode, JieSuanRiqi, index) {
  226. var vm = this
  227. var params = {
  228. hisId: vm.hisId,
  229. jsCode: JsCode,
  230. jsDate: JieSuanRiqi
  231. }
  232. sendPost("/third/hy/paySettle/paidDetail", params, "json", "get", function() {
  233. loading.close();
  234. dialog({
  235. contentType: 'tipsbox',
  236. bottom: true,
  237. skin: 'bk-popup',
  238. content: '请求失败'
  239. }).show();
  240. }, function(res) {
  241. loading.close();
  242. if(res.status == 200) {
  243. if(res.data.code == 0) {
  244. vm.paidList[index].child = res.data.data
  245. } else {
  246. dialog({
  247. contentType: 'tipsbox',
  248. bottom: true,
  249. skin: 'bk-popup',
  250. content: res.data.message || '数据查询失败'
  251. }).show();
  252. }
  253. } else {
  254. dialog({
  255. contentType: 'tipsbox',
  256. bottom: true,
  257. skin: 'bk-popup',
  258. content: res.msg || '数据查询失败'
  259. }).show();
  260. }
  261. })
  262. },
  263. //门诊结算
  264. preToPay: function() {
  265. var vm = this
  266. if(vm.hisId){
  267. dialog({
  268. content: "您的缴费金额为"+vm.waitPayTotal+"元,从就诊卡余额中扣除,是否继续?",
  269. okValue: '继续缴费',
  270. ok: function() {
  271. vm.toPay()
  272. },
  273. cancelValue: '再等一下',
  274. cancel: function() {}
  275. }).showModal()
  276. }else{
  277. dialog({
  278. contentType: 'tipsbox',
  279. bottom: true,
  280. skin: 'bk-popup',
  281. content: '医院码不存在'
  282. }).show();
  283. }
  284. },
  285. toPay: function() {
  286. var vm = this
  287. sendPost("/third/hy/paySettle/outpSettle", {
  288. hisId: vm.hisId
  289. }, "json", "get", function() {
  290. loading.close();
  291. dialog({
  292. contentType: 'tipsbox',
  293. bottom: true,
  294. skin: 'bk-popup',
  295. content: '请求失败'
  296. }).show();
  297. }, function(res) {
  298. loading.close();
  299. if(res.status == 200) {
  300. if(res.data.code == 0) {
  301. window.location.href = "../../payment/html/repaymentResult.html?patientName=" + vm.data.name + "&healthNo=" + vm.data.cardNo + "&payAmount=" + vm.waitPayTotal + "&createDate=" + getNowFormatDate() + "&cardId=" + vm.cardId;
  302. } else {
  303. dialog({
  304. content:"您的就诊卡余额不足,请充值。充值后自动完成未结账单缴费~",
  305. okValue: '去充值',
  306. ok: function() {
  307. window.location.href = '../../payment/html/payment.html?id=' + vm.cardId + '&paytype=1&repayAmout=' + vm.waitPayTotal;
  308. },
  309. cancelValue: '再等一下',
  310. cancel: function() {}
  311. }).showModal()
  312. }
  313. } else {
  314. dialog({
  315. contentType: 'tipsbox',
  316. bottom: true,
  317. skin: 'bk-popup',
  318. content: res.msg || '数据查询失败'
  319. }).show();
  320. }
  321. })
  322. },
  323. //跳转切换就诊卡
  324. changeCards: function() {
  325. window.location.href = '../../payment/html/changeCards.html?pre=repayment';
  326. },
  327. //跳转我的就诊卡页面
  328. gotoCards: function() {
  329. window.location.href = '../../payment/html/patientIDCards.html';
  330. },
  331. eventClick: function() {
  332. $(".c-list-link").unbind("click")
  333. $(".c-list-link").click(function() {
  334. $(this).parent().siblings().toggle();
  335. if($(this).hasClass("list-arrow-u")) {
  336. $(this).addClass("list-arrow-d").removeClass("list-arrow-u");
  337. } else {
  338. $(this).addClass("list-arrow-u").removeClass("list-arrow-d");
  339. }
  340. })
  341. },
  342. //判断是否验证登录通过
  343. checkType: function() {
  344. var vm = this
  345. var timer = setInterval(function() {
  346. if(checktype) {
  347. clearInterval(timer);
  348. vm.getData()
  349. }
  350. }, 10);
  351. },
  352. },
  353. })
  354. })()
  355. function queryInit() {
  356. checktype = true
  357. }
  358. function getNowFormatDate() {
  359. var date = new Date();
  360. var seperator1 = "-";
  361. var year = date.getFullYear();
  362. var month = date.getMonth() + 1;
  363. var strDate = date.getDate();
  364. if(month >= 1 && month <= 9) {
  365. month = "0" + month;
  366. }
  367. if(strDate >= 0 && strDate <= 9) {
  368. strDate = "0" + strDate;
  369. }
  370. var hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
  371. var minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
  372. var second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
  373. var currentdate = year + seperator1 + month + seperator1 + strDate + " " + hour + ":" + minute + ":" + second;
  374. return currentdate;
  375. }