doctor-consultation_new.js 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833
  1. //家庭医生咨询分页参数
  2. var id = 0;
  3. var pageSize = 15;
  4. //续方咨询分页参数
  5. var xfId = 0;
  6. var xfPageSize = 15;
  7. var d = dialog({contentType:'load', skin:'bk-popup'});
  8. var patientcode ="",
  9. patientName = "";
  10. var isHealthSearch = false,
  11. isPreSearch = false;
  12. var userAgent = window.localStorage.getItem(agentName);
  13. var pagetype = 1;
  14. var chooseType; //记录选择的咨询类型
  15. var loaded = [true, false]; //标记两个tab是否已经加载过
  16. var chooseTab = 1; //默认选中的是家庭健康咨询
  17. var expensesStatus ="";//'扣费状态 【""没有签约信息 "0"未扣费 "1"已扣费 "2"已退费】'
  18. var is_sign = 0;
  19. //页面初始化
  20. $(function(){
  21. checkUserAgent();
  22. });
  23. function queryInit(){
  24. initScroller();
  25. initFamilyData();
  26. initPageData();
  27. bindEvents();
  28. wxGetSign();
  29. }
  30. function initScroller(){
  31. //阻尼系数
  32. var deceleration = mui.os.ios?0.003:0.0009;
  33. mui('.mui-scroll-wrapper1').scroll({
  34. scrollY: false, //是否竖向滚动
  35. scrollX: true, //是否横向滚动
  36. startX: 0, //初始化时滚动至x
  37. startY: 0, //初始化时滚动至y
  38. bounce: false,
  39. indicators: true, //是否显示滚动条
  40. deceleration:deceleration
  41. });
  42. mui.ready(function() {
  43. //循环初始化所有下拉刷新,上拉加载。
  44. $.each(document.querySelectorAll('.mui-slider-group .mui-scroll-wrapper'), function(index, pullRefreshEl) {
  45. mui(pullRefreshEl).pullRefresh({
  46. up: {
  47. callback: function() {
  48. var self = this;
  49. setTimeout(function() {
  50. if(index == 0){
  51. getHealthConsulationList();
  52. // }else{
  53. // getPreConsultList();
  54. }
  55. self.endPullupToRefresh();
  56. }, 1000);
  57. }
  58. }
  59. });
  60. });
  61. });
  62. }
  63. function initFamilyData(){
  64. appendFamilyMember($('#memberContainer'),function(){
  65. //切换家庭成员,默认选中健康咨询tab显示
  66. id = 0;
  67. xfId = 0;
  68. chooseType = 1;
  69. loaded = [true, false];
  70. $("#healthTab a").click();
  71. initPageData();
  72. },function(t){
  73. //判断有授权家人,修改样式,只在初始的时候执行一次
  74. var height = $('#memberContainer').height();
  75. $("#slider").css({
  76. 'top': height,
  77. 'height': 'calc(100% - '+height+'px)'
  78. });
  79. });
  80. }
  81. function initPageData(){
  82. var userInfo= JSON.parse(userAgent);
  83. patientcode = userInfo.represented?userInfo.represented:userInfo.uid;
  84. getPatientInfo();
  85. }
  86. //获得患者信息
  87. function getPatientInfo(){
  88. d.show();
  89. var data={};
  90. sendPost('patient/baseinfo', data, 'json', 'post', queryFailed, function(res){
  91. if (res.status == 200) {
  92. var data = res.data,
  93. ssc = data.ssc;
  94. expensesStatus = res.data.expensesStatus;
  95. patientName = data.name;
  96. if(!ssc) ssc = "";
  97. if(!ssc || ssc==""){
  98. //用户未办理医保卡
  99. dialog({
  100. content: '对不起,尚未办理医保卡的用户暂不支持签约~',
  101. cancelValue: '我知道了',
  102. cancel: function () {
  103. wx.closeWindow();
  104. }
  105. }).showModal();
  106. }
  107. // if(data.prescription == 1){ //慢病人员,可以续方
  108. // //如果患者在白名单中,则显示续方咨询tab的信息
  109. // if(canPrescription){
  110. // $("#preTab").show();
  111. // $(".xufangsq-icon").show();
  112. // mui('#slider').slider().setStopped(false);
  113. // }else{
  114. // $("#preTab").hide();
  115. // $(".xufangsq-icon").hide();
  116. // mui('#slider').slider().setStopped(true);
  117. // }
  118. // }else{
  119. mui('#slider').slider().gotoItem(0);
  120. $("#preTab").hide();
  121. // $(".xufangsq-icon").hide();
  122. mui('#slider').slider().setStopped(true);
  123. // }
  124. //判断签约状态
  125. checkIsSign();
  126. } else {
  127. queryFailed(res);
  128. }
  129. });
  130. }
  131. //判断是否已经签约
  132. function checkIsSign(){
  133. var url = 'patient/is_sign',
  134. params = {};
  135. sendPost(url, params, 'json', 'post', queryFailed, function(res){
  136. if(res.status == 200){
  137. is_sign = res.data;//0未签约,1已签约
  138. // if(is_sign==1 || is_sign == -1){//1已经签约的
  139. // if(chooseTab == 1){
  140. mui('#healthConsulationPanel').pullRefresh().scrollTo(0, 0, 1000);
  141. getHealthConsulationList(); //获取健康咨询列表
  142. // }else{
  143. // mui('#re-prescriptionConsulationPanel').pullRefresh().scrollTo(0, 0, 1000);
  144. // getPreConsultList(); //获取健康咨询列表
  145. // }
  146. // }else
  147. // if(is_sign==0){
  148. // d.close();
  149. // //签约未完成
  150. // $(".mui-content").hide();
  151. // $('.div-signing').show();
  152. // }
  153. /*else if(is_sign == -1){//-1签约已到期或未签约
  154. d.close();
  155. $(".mui-content").hide();
  156. $(".div-no-sign").show();
  157. }*/
  158. }else{
  159. queryFailed(res);
  160. }
  161. });
  162. }
  163. //获取健康咨询列表
  164. function getHealthConsulationList(){
  165. var url = 'patient/consult/records',
  166. params = {
  167. id: id,
  168. pagesize: pageSize,
  169. title: $("#item1 .inp-search").val().trim()
  170. };
  171. sendPost(url, params, 'json', 'get', queryFailed, function(res){
  172. if(res.status == 200){
  173. if(is_sign == 1){
  174. $(".div-add-btn").show();
  175. }else{
  176. $(".div-add-btn").hide();
  177. }
  178. $("#healthConsulationPanel").css("top","50px");
  179. d.close();
  180. $('#healthConsulationPanel').show();
  181. if (res.list.length > 0) {
  182. $('#ul_jiating_consultation').show();
  183. $('#item1 .vertical-line').show();
  184. $("#item1 .div-no-search-info").hide();
  185. $("#item1 .div-no-info").hide();
  186. var searchText = $("#item1 .inp-search").val().trim();
  187. var list = _.map(res.list, function(o){
  188. o.jsonStr = JSON.stringify(o);
  189. //针对搜索字体
  190. if(searchText.length > 0){
  191. var reg = new RegExp(searchText,"g");
  192. o.symptoms = o.symptoms.replace(reg, '<em>'+searchText+"</em>");
  193. }
  194. var divStatus = "";
  195. if(o.type==2){
  196. if(o.status==0){
  197. //咨询中
  198. divStatus = "div-beginning";
  199. }else if(o.evaluate ==1){
  200. divStatus = "div-hasvalue";//是否有评价 0无 1有
  201. }else{
  202. divStatus = "div-novalue";
  203. }
  204. }
  205. o.statusClass = divStatus;
  206. return o;
  207. });
  208. var html = template('healthConsulation_tmp', {list: list});
  209. if(id == 0){
  210. $("#ul_jiating_consultation").empty().append(html);
  211. }else{
  212. $("#ul_jiating_consultation").append(html);
  213. }
  214. if(res.list.length < pageSize){
  215. mui("#item1 .mui-scroll-wrapper").pullRefresh().endPullupToRefresh(true);
  216. }
  217. id = res.list[res.list.length-1].id;
  218. }else{
  219. if(isHealthSearch){//查询无结果
  220. $('#ul_jiating_consultation').hide();
  221. $('#item1 .vertical-line').hide();
  222. $("#item1 .div-no-search-info").show();
  223. isHealthSearch = false;
  224. }else if(id==0){//id为0的时候证明是第一次加载,第一次加载无数据,显示无数据界面
  225. $('#ul_jiating_consultation').hide();
  226. $('#item1 .vertical-line').hide();
  227. $("#item1 .div-no-info").show();
  228. $("#healthConsulationPanel").css("top","0px");
  229. if(is_sign == 0){
  230. $(".mui-content").hide();
  231. $('.div-signing').show();
  232. }
  233. }
  234. }
  235. }else{
  236. queryFailed(res);
  237. }
  238. });
  239. }
  240. //获取续方咨询列表
  241. //function getPreConsultList(){
  242. // d.show();
  243. // var url = 'patient/consult/getPreConsultList',
  244. // params = {
  245. // id: xfId,
  246. // pagesize: xfPageSize,
  247. // title: $("#item2 .inp-search").val().trim()
  248. // };
  249. // sendPost(url, params, 'json', 'get', queryFailed, function(res){
  250. // if(res.status == 200){
  251. // d.close();
  252. // $("#re-prescriptionConsulationPanel").show();
  253. // if(res.list.length > 0){
  254. // $('#ul_xufang_consultation').show();
  255. // $('#item2 .vertical-line').show();
  256. // $("#item2 .div-no-info").hide();
  257. // $("#item2 .div-no-search-info").hide();
  258. // var searchText = $("#item2 .inp-search").val().trim();
  259. // var list = _.map(res.list, function(o){
  260. // o.jsonStr = JSON.stringify(o);
  261. // //针对搜索字体
  262. // if(searchText.length > 0){
  263. // var reg = new RegExp(searchText,"g");
  264. // o.symptoms = o.symptoms.replace(reg, '<em>'+searchText+"</em>");
  265. // }
  266. // var divStatus = "";
  267. // if(o.status==0){
  268. // //咨询中
  269. // divStatus = "div-beginning";
  270. // }else if(o.evaluate ==1){
  271. // divStatus = "div-hasvalue";//是否有评价 0无 1有
  272. // }else{
  273. // divStatus = "div-novalue";
  274. // }
  275. // o.statusClass = divStatus;
  276. // return o;
  277. // });
  278. // var html = template('re-prescriptionConsulation_tmp', {list: list});
  279. // if(xfId == 0){
  280. // $("#ul_xufang_consultation").empty().append(html);
  281. // }else{
  282. // $("#ul_xufang_consultation").append(html);
  283. // }
  284. // if(res.list.length < xfPageSize){
  285. // mui("#item2 .mui-scroll-wrapper").pullRefresh().endPullupToRefresh(true);
  286. // }
  287. // xfId ++;
  288. // }else{
  289. // if(isPreSearch){//查询无结果
  290. // $('#ul_xufang_consultation').hide();
  291. // $('#item2 .vertical-line').hide();
  292. // $("#item2 .div-no-search-info").show();
  293. // isPreSearch = false;
  294. // }else if(xfId==0){//id为0的时候证明是第一次加载,第一次加载无数据,显示无数据界面
  295. // $('#ul_xufang_consultation').hide();
  296. // $('#item2 .vertical-line').hide();
  297. // $("#item2 .div-no-info").show();
  298. // }
  299. // }
  300. // }else{
  301. // queryFailed(res);
  302. // }
  303. // });
  304. //}
  305. //
  306. ////查询签约类型
  307. //function querySignType(type){
  308. // chooseType = type;
  309. // d.show();
  310. // sendPost('patient/sign_doctors', {}, 'json', 'post', function(res){
  311. // queryFailed(res, '获取咨询类型失败');
  312. // }, querySignTypeSuccess);
  313. //}
  314. //查询签约类型成功回调处理事件
  315. function querySignTypeSuccess(res){
  316. if (res.status == 200) {
  317. var doctors = "";
  318. switch(Number(chooseType)) {
  319. case 1: doctors = res.teamDoctors; break;
  320. case 2: doctors = res.familyDoctors; break;
  321. default: break;
  322. }
  323. var docInfo,docQkInfo;
  324. $.each(doctors, function(i, v) {
  325. if(v.teamlevel){
  326. if(v.teamlevel == 3){
  327. docInfo = v;
  328. }
  329. if(v.teamlevel == 2){
  330. docQkInfo = v;
  331. }
  332. }else{
  333. if(v.level == 3){
  334. docInfo = v;
  335. }
  336. if(v.level == 2){
  337. docQkInfo = v;
  338. }
  339. }
  340. });
  341. if(!docInfo){
  342. docInfo = docQkInfo;
  343. }
  344. //判断是否有未结束的咨询
  345. isConsultUnfinished(docInfo,docQkInfo);
  346. } else {
  347. queryFailed(res);
  348. }
  349. }
  350. //判断是否有未结束的咨询
  351. function isConsultUnfinished(docInfo,docQkInfo){
  352. var url = 'patient/consult/is_consult_unfinished',
  353. params = {doctor: docInfo.code};
  354. sendPost(url, params, 'json', 'post', function(res){
  355. queryFailed(res, '获取是否存在咨询失败');
  356. },function(res){
  357. d.close();
  358. if(res.status == 200){
  359. if(res.data == ""){
  360. //不存在
  361. checkDocInWork(chooseType, docInfo,docQkInfo);
  362. } else {
  363. dialog({
  364. content: '十分抱歉,您与'+ docInfo.name +'医生还有<br/>未结束咨询,无法发起新的咨询',
  365. okValue:'前往查看',
  366. ok: function (){
  367. var userInfo = JSON.parse(userAgent);
  368. var rep = userInfo.represented?userInfo.represented:userInfo.uid;
  369. window.location.href = "consulting-doctor.html?consult=" + res.data +"&toUser="+rep;
  370. },
  371. cancelValue: '我知道了',
  372. cancel: function () {
  373. $(".modal-overlay").trigger("click");
  374. $(".jiating-icon").removeClass("active");
  375. $(".mingyi-icon").removeClass("active");
  376. return;
  377. }
  378. }).showModal();
  379. }
  380. } else {
  381. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  382. }
  383. });
  384. }
  385. //获取签约医生的工作时间
  386. function checkDocInWork(type, doctor,docQkInfo){
  387. var url = 'patient/consult/isDoctorWorkWhenconsult',
  388. params = {doctor:docQkInfo.code,healthDoctor:doctor.code};
  389. sendPost(url, params, 'json', 'post', queryFailed, function(res){
  390. if(res.status == 200){
  391. // data:0-医生不接受咨询/1-医生当前接受咨询/2-全科医生和健管师当前都不在工作时间/3-全科医生当前不在工作时间/4-健管师当前不在工作时间 健管师当前不在工作时间
  392. if(res.data==2){
  393. dialog({
  394. content: '您好,由于您的签约医生工作繁忙,设置了每日回复咨询的时间段,所以,在该时间段外的时间,您的咨询将不会马上获得医生的回复。',
  395. okValue:'查看医生工作时间',
  396. ok: function (){
  397. window.location.href = "doctor-work-hours.html?doctor=" + docQkInfo.code+"&healthDoctor="+doctor.code;
  398. },
  399. cancelValue: '继续新增咨询',
  400. cancel: function () {
  401. window.location.href = "add-consult.html?type=" +type+"&doctorCode="+doctor.code;
  402. }
  403. }).showModal();
  404. }else if(res.data==3){
  405. dialog({
  406. content: '您好,由于您的签约全科医生工作繁忙……,您的咨询将不会马上获得全科医生的回复 。',
  407. okValue:'查看医生工作时间',
  408. ok: function (){
  409. window.location.href = "doctor-work-hours.html?doctor=" + docQkInfo.code+"&healthDoctor="+doctor.code;
  410. },
  411. cancelValue: '继续新增咨询',
  412. cancel: function () {
  413. window.location.href = "add-consult.html?type=" +type+"&doctorCode="+doctor.code;
  414. }
  415. }).showModal();
  416. }else if(res.data==4){
  417. dialog({
  418. content: '您好,由于您的签约健康管理师工作繁忙……,您的咨询将不会马上获得健康管理师的回复 。',
  419. okValue:'查看医生工作时间',
  420. ok: function (){
  421. window.location.href = "doctor-work-hours.html?doctor=" + docQkInfo.code+"&healthDoctor="+doctor.code;
  422. },
  423. cancelValue: '继续新增咨询',
  424. cancel: function () {
  425. window.location.href = "add-consult.html?type=" +type+"&doctorCode="+doctor.code;
  426. }
  427. }).showModal();
  428. }else{
  429. //跳转到新增咨询页面
  430. window.location.href = "add-consult.html?type="+type+"&doctorCode="+doctor.code;
  431. }
  432. }else{
  433. queryFailed(res);
  434. }
  435. });
  436. }
  437. //判断是否可以新增续方咨询
  438. function checkCanPreConsult(){
  439. var url = "/patient/consult/isPrescriptionConsult",
  440. params = {patient: patientcode};
  441. d.show();
  442. sendPost(url, params, 'json', 'get', queryFailed, function(res){
  443. if(res.status == 200){
  444. //成功及可以发起续方咨询,跳转去新增续方咨询页面
  445. //TODO 待处理事件
  446. window.location.href = "add-prescription-consult.html?patient="+patientcode+"&name="+patientName;
  447. }else{
  448. queryFailed(res);
  449. }
  450. });
  451. }
  452. //显示搜索输入文字
  453. function showSearchSuggest(text, type){
  454. var suggestText = '搜索“'+text+'”';
  455. // 如果text不为空,则显示;否则隐藏
  456. if(text&&text.trim().length) {
  457. if(type == 1){//家庭医生咨询
  458. $("#search_suggest_text").text(suggestText);
  459. $("#search_suggest_text").show();
  460. }else if(type == 2){//续方咨询
  461. $("#xf_search_suggest_text").text(suggestText);
  462. $("#xf_search_suggest_text").show();
  463. }
  464. } else {
  465. if(type == 1){//家庭医生咨询
  466. $("#search_suggest_text").text('');
  467. $("#search_suggest_text").hide();
  468. }else if(type == 2){//续方咨询
  469. $("#xf_search_suggest_text").text('');
  470. $("#xf_search_suggest_text").hide();
  471. }
  472. }
  473. }
  474. //搜索操作
  475. function search(type){
  476. d.show();
  477. if(type == 1){//家庭医生咨询
  478. isHealthSearch = true;
  479. id = 0;
  480. $("#search_suggest_text").text('');
  481. $("#search_suggest_text").hide();
  482. $("#item1 .searchbar-cancel").hide();
  483. $("#item1 .searchbar-cancel").css("opacity","0");
  484. $("#item1 .div-no-info").hide();
  485. $("#item1 .div-no-search-info").hide();
  486. d.show();
  487. getHealthConsulationList();
  488. }else if(type == 2){//续方咨询
  489. isPreSearch = true;
  490. xfId = 0;
  491. $("#xf_search_suggest_text").text('');
  492. $("#xf_search_suggest_text").hide();
  493. $("#item2 .searchbar-cancel").hide();
  494. $("#item2 .searchbar-cancel").css("opacity","0");
  495. $("#item2 .div-no-info").hide();
  496. $("#item2 .div-no-search-info").hide();
  497. getPreConsultList();
  498. }
  499. }
  500. function bindEvents(){
  501. //监听tab切换动作
  502. document.querySelector('.mui-slider').addEventListener('slide', function(event) {
  503. var index = event.detail.slideNumber;
  504. chooseTab = index + 1;
  505. if(!loaded[index]){ //tab未加载过,则加载数据
  506. d.show();
  507. getPreConsultList();
  508. loaded[index] = true;
  509. }
  510. });
  511. $("#ul_jiating_consultation").on("tap",'li', function(){
  512. var userInfo = JSON.parse(userAgent);
  513. var jsonData = JSON.parse(this.getAttribute("data-json"));
  514. if(jsonData.type == 2 && jsonData.status == 0){
  515. var url = "patient/sign_status",
  516. params = {};
  517. d.show();
  518. sendPost(url, params, "json", "post", queryFailed, function(res){
  519. d.close();
  520. var teamCode = res["teamCode_2"];
  521. var signCode = res["signCode_2"];
  522. localStorage.setItem("signInfo_tab", "1");
  523. window.location.href = "../../qygl/html/sign_info.html?code="+jsonData.signCode+"&consult="+jsonData.code+"&teamCode="+jsonData.teamCode+"&type="+jsonData.type+"&doctor="+jsonData.doctorCode;
  524. });
  525. }else{
  526. localStorage.setItem("evaluate",jsonData.evaluate);
  527. window.location.href = "consulting-doctor.html?consult=" + jsonData.code+"&type="+jsonData.type+"&toUser="+userInfo.uid+"&doctor="+jsonData.doctorCode;
  528. }
  529. });
  530. $("#ul_xufang_consultation").on("tap",'li', function(){
  531. var userInfo = JSON.parse(userAgent);
  532. var jsonData = JSON.parse(this.getAttribute("data-json"));
  533. localStorage.setItem("evaluate",jsonData.evaluate);
  534. //跳转去续方咨询页面
  535. window.location.href = 'prescription-consulting.html?consult='+jsonData.code+'&type='+jsonData.type+"&toUser="+userInfo.uid+"&doctor="+jsonData.doctorCode;
  536. });
  537. //新增按钮事件
  538. $(".div-add-btn").on("click",function(){
  539. //现在固定显示咨询可以选择类型,不做三师等的判断
  540. $(this).hide();
  541. $(".div-dialog-content").show();
  542. $(".modal-overlay").addClass("modal-overlay-visible");
  543. });
  544. //点击遮罩事件
  545. $(".modal-overlay").on("click",function(){
  546. $(".modal-overlay").removeClass("modal-overlay-visible");
  547. $(".div-dialog-content").hide();
  548. $(".div-add-btn").removeClass("active");
  549. if(is_sign == 1){
  550. $(".div-add-btn").show();
  551. }else{
  552. $(".div-add-btn").hide();
  553. }
  554. });
  555. //点击家庭医生事件
  556. $(".jiating-icon").on("click",function(){
  557. $(this).addClass("active");
  558. if(is_sign == 1){
  559. //判断该居民是否已经缴费 1为已经交费 ""没有签约信息 "0"未扣费 "1"已扣费 "2"已退费
  560. if(expensesStatus == 1){
  561. querySignType(2);
  562. }else{
  563. //未缴费居民限制咨询次数
  564. limitZxTimes();
  565. }
  566. }else{
  567. $(".div-dialog-content").show();
  568. dialog({
  569. content: '没有有效的签约信息,请前往签约',
  570. okValue:'前往签约',
  571. ok: function (){
  572. window.location.href = "../../qygl/html/signing_management.html";
  573. },
  574. cancelValue: '我知道了',
  575. cancel: function () {
  576. $(".modal-overlay").trigger("click");
  577. $(".jiating-icon").removeClass("active");
  578. $(".mingyi-icon").removeClass("active");
  579. return;
  580. }
  581. }).showModal();
  582. }
  583. // if(expensesStatus == 1){
  584. // querySignType(2);
  585. // }else if(expensesStatus == ""){
  586. // d.close();
  587. // $(".mui-content").hide();
  588. // $(".div-no-sign").show();
  589. // }else{
  590. // //未缴费居民限制咨询次数
  591. // limitZxTimes();
  592. // }
  593. });
  594. //点击名医咨询事件
  595. $(".mingyi-icon").on("click",function(){
  596. $(this).addClass("active");
  597. if(is_sign == 1){
  598. window.location.href = "select-consult-doctor.html";
  599. }else{
  600. dialog({
  601. content: '没有有效的签约信息,请前往签约',
  602. okValue:'前往签约',
  603. ok: function (){
  604. window.location.href = "../../qygl/html/signing_management.html";
  605. },
  606. cancelValue: '我知道了',
  607. cancel: function () {
  608. $(".modal-overlay").trigger("click");
  609. $(".jiating-icon").removeClass("active");
  610. $(".mingyi-icon").removeClass("active");
  611. return;
  612. }
  613. }).showModal();
  614. }
  615. });
  616. //取消事件
  617. $(".quxiao").on("click",function(){
  618. $(".modal-overlay").trigger("click");
  619. });
  620. //查看签约
  621. $('#signing-btn').on('click',function(){
  622. window.location.href = "../../qygl/html/signing_management.html";
  623. });
  624. //跳转去签约管理页面
  625. $("#goToSign").on('click', function(){
  626. window.location.href = "../../qygl/html/signing_management.html";
  627. });
  628. //点击发起咨询事件
  629. $("#launch-btn").on("tap",function(){
  630. // $(".div-add-btn").trigger("click");
  631. window.location.href = "select-consult-doctor.html";
  632. });
  633. //点击续方tab内发起咨询的事件
  634. $("#launch-btn2").on("tap", function(){
  635. //判断是否可以续方咨询
  636. checkCanPreConsult();
  637. })
  638. //点击续方申请事件
  639. $(".xufangsq-icon").on("click",function(){
  640. $(this).addClass("active");
  641. //判断是否可以续方咨询
  642. checkCanPreConsult();
  643. });
  644. //搜索框事件
  645. $(".inp-search").on("input",function(){
  646. var text = $(this).val().trim(),
  647. type = $(this).attr("data-val");
  648. if(type == 1){//家庭医生咨询
  649. $('#healthConsulationPanel').hide();
  650. }else if(type == 2){//续方咨询
  651. $('#re-prescriptionConsulationPanel').hide();
  652. }
  653. showSearchSuggest(text, type);
  654. var $searchCancelBtn = $(".searchbar-clear");
  655. if(text){
  656. // $searchCancelBtn.css("opacity","1");
  657. }else{
  658. // $searchCancelBtn.css("opacity","0");
  659. search(type);
  660. }
  661. }).on('keydown',function(e) {
  662. var type = $(this).attr("data-val");
  663. if (e.which === 13) {
  664. search(type);
  665. }
  666. });
  667. $("#search_suggest_text").on("click", function(){
  668. search(1);
  669. });
  670. $("#xf_search_suggest_text").on("click", function(){
  671. search(2);
  672. });
  673. $(".searchbar-clear").on("click", function(){
  674. $(this).css("opacity","0");
  675. var $input = $(this).closest('.inp-search'),
  676. type = $input.attr("data-val");
  677. $input.val('');
  678. if(type == 1){//家庭医生咨询
  679. $("#search_suggest_text").text('');
  680. $("#search_suggest_text").hide();
  681. }else if(type == 2){//续方咨询
  682. $("#xf_search_suggest_text").text('');
  683. $("#xf_search_suggest_text").hide();
  684. }
  685. search(type);
  686. });
  687. //限制左右滑动
  688. // 左滑事件
  689. document.addEventListener("swipeleft", function(event) {
  690. console.log(event);
  691. event.preventDefault();
  692. return false;
  693. });
  694. // 右滑事件
  695. document.addEventListener("swiperight", function(event) {
  696. console.log(event);
  697. event.preventDefault();
  698. return false;
  699. });
  700. }
  701. //未缴费居民限制咨询次数
  702. function limitZxTimes(){
  703. //获取剩余家庭咨询次数
  704. var url = '/patient/consult/remainConsultTimes';
  705. var remainTimes;//剩余咨询次数
  706. var countTimes;//总咨询次数
  707. var zxTimes;//已咨询次数
  708. d.show();
  709. sendPost(url, {}, 'json', 'get', queryFailed, function(res){
  710. if(res.status == 200){
  711. d.close();
  712. remainTimes = res.data.amount;
  713. countTimes = res.data.count;
  714. zxTimes = countTimes - remainTimes;
  715. if(zxTimes == countTimes){
  716. //未缴费的总咨询次数已达上限 提示去缴费
  717. dialog({
  718. content: '您本年度家庭医生签约暂未缴费,当前10次免费健康咨询已全部使用.如果需要家庭医生继续为您提供服务,请尽快完成缴费操作',
  719. okValue:'前往缴费',
  720. ok: function (){
  721. window.location.href = "../../qygl/html/signing_management.html";
  722. }
  723. }).showModal();
  724. }else{
  725. dialog({
  726. content: '您本年度家庭医生签约暂未缴费,可使用10次免费健康咨询,当前剩余:'+remainTimes+'次.为避免影响您的服务体验,请尽快完成缴费操作',
  727. okValue:'前往缴费',
  728. ok: function (){
  729. window.location.href = "../../qygl/html/signing_management.html";
  730. },
  731. cancelValue: '开始咨询',
  732. cancel: function () {
  733. querySignType(2)
  734. }
  735. }).showModal();
  736. }
  737. }else{
  738. queryFailed(res);
  739. }
  740. });
  741. }
  742. //请求失败处理事件
  743. function queryFailed(res, message){
  744. d.close();
  745. if(message){
  746. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content: message}).show();
  747. }else{
  748. if (res && res.msg) {
  749. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  750. } else {
  751. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'加载失败'}).show();
  752. }
  753. }
  754. }
  755. //获取微信信息,并配置微信api接口
  756. function wxGetSign(){
  757. var params = {};
  758. params.pageUrl = window.location.href;
  759. $.ajax(server + "weixin/getSign", {
  760. data: params,
  761. dataType: "json",
  762. type: "post",
  763. success: function(res){
  764. if (res.status == 200) {
  765. var t = res.data.timestamp;
  766. var noncestr = res.data.noncestr;
  767. var signature = res.data.signature;
  768. wx.config({
  769. //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  770. appId: appId, // 必填,公众号的唯一标识
  771. timestamp: t, // 必填,生成签名的时间戳
  772. nonceStr: noncestr, // 必填,生成签名的随机串
  773. signature: signature,// 必填,签名,见附录1
  774. jsApiList: [
  775. 'closeWindow'
  776. ] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  777. });
  778. }
  779. }
  780. });
  781. }