consulting-doctor.js 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331
  1. var dd = dialog({contentType:'load', skin:'bk-popup', content:'发送中...'});
  2. var d = dialog({
  3. contentType: 'load',
  4. skin: 'bk-popup'
  5. });
  6. var userAgent = JSON.parse(window.localStorage.getItem(agentName));
  7. var dialroll;
  8. var content = "";
  9. var timeStr = "";
  10. var id = 1;
  11. var pagesize = 10;
  12. var consultCode = "";
  13. var patientcode = "";
  14. var networkStatus = "";
  15. var $ipt_content = $('#input_content');
  16. var recordTimer = null;
  17. var realStartTime = 0;
  18. var aud = document.getElementById('audio');
  19. var $playingDom;
  20. var serverId = "";
  21. var images = [];
  22. var chooseType; //记录选择的咨询类型
  23. //标记renew状态
  24. var isRenew;
  25. var participants = []; //记录参与者的信息
  26. var recordCancel = false;
  27. var recorder = null;
  28. var audio_tips = document.getElementById("audio_tips");
  29. var startTimestamp = null;
  30. var stopTimestamp = null;
  31. var stopTimer = null;
  32. var MIN_SOUND_TIME = 500;
  33. var expensesStatus="";//'扣费状态 【""没有签约信息 "0"未扣费 "1"已扣费 "2"已退费】'
  34. var ui = {
  35. body: document.querySelector('body'),
  36. btnMsgType: document.querySelector('#msg-type'),
  37. boxMsgText: document.querySelector('#msg-text'),
  38. boxMsgSound: document.querySelector('#msg-sound'),
  39. btnMsgImage: document.querySelector('#msg-image'),
  40. areaMsgList: document.querySelector('#msg-list'),
  41. boxSoundAlert: document.querySelector('#sound-alert')
  42. };
  43. patientcode = userAgent.uid;
  44. var consulting = {
  45. //初始化页面
  46. getInfo: function(){
  47. d.show();
  48. var reqList = [{
  49. //判断当前是否有未结束的咨询
  50. url:'/patient/consult/is_consult_unfinished',
  51. reqType:'POST',
  52. data:{doctor: request.doctor}
  53. },{
  54. //获得会话窗口的用户的头像等信息
  55. url: '/patient/consult/participants',
  56. reqType: 'POST',
  57. data: {
  58. sessionId: patientcode+"_"+request.doctor+"_1"
  59. }
  60. },{
  61. //获得咨询记录
  62. url: '/patient/consult/logs',
  63. reqType: 'POST',
  64. data: {
  65. sessionId: patientcode+"_"+request.doctor+"_1",
  66. startMsgId:"",
  67. endMsgId: "",
  68. page: id,
  69. pagesize: pagesize
  70. }
  71. }];
  72. isRenew = request.isRenew;
  73. getReqPromises(reqList).then(function(res){
  74. // if(isRenew == 1){
  75. // d.close();
  76. // $("#input_div").hide();
  77. // $("#finish_list").hide();
  78. // $(".xzzx").hide();
  79. // winSize(125); //70+45
  80. // }else{
  81. doResponse(res);
  82. // }
  83. });
  84. },
  85. bindEvents: bindConsultEvents
  86. };
  87. //请求回调处理
  88. function doResponse(res){
  89. var res1 = res[0],
  90. res2 = res[1],
  91. res3 = res[2];
  92. if(res1.status == 200 && res2.status == 200 && res3.status == 200){
  93. d.close();
  94. loadSocket();
  95. if(res1.data == ""){
  96. //无正在进行中的咨询
  97. $("#input_div").hide();
  98. $("#finish_list").hide();
  99. $(".xzzx").show();
  100. winSize(125); //70+45
  101. //-1患者已取消,-2已拒绝,-3已解约,-4已到期
  102. switch(request.status){
  103. case "-1":
  104. case "-2":
  105. case "-3":
  106. case "-4":
  107. $(".xzzx").hide();
  108. winSize(45);
  109. break;
  110. }
  111. }else if(res1.data){
  112. //有正在咨询中的问卷
  113. $("#input_div").show();
  114. $("#finish_list").show();
  115. $(".xzzx").hide();
  116. consultCode = res1.data;
  117. //提示谁进入咨询
  118. var data = {
  119. consult:consultCode
  120. }
  121. sendPost('patient/consult/intoTopic', data, "json", "post", null,function(res){})
  122. winSize(167); //102+45
  123. }
  124. participants = res2.list;
  125. var pulldownAction = function() {
  126. getConsultLog();
  127. };
  128. dialroll = iscrollAssist.newVerScrollForPull($('.pull-iscroll-wrap'), pulldownAction, null);
  129. dialroll.refresh();
  130. dialroll.scrollTo(0, dialroll.maxScrollY);
  131. querySuccess2(res3, false);
  132. }else{
  133. queryFailed2();
  134. }
  135. }
  136. //加载socket组件
  137. function loadSocket(){
  138. jQuery.getScript(imurl+"/socket.io/socket.io.js").done(function() {
  139. var socket = io.connect(imurl);
  140. var sessionId = patientcode+"_"+request.teamCode+"_"+request.type;
  141. var userInfo = JSON.parse(window.localStorage.getItem(agentName));
  142. socket.emit('login', {userId: userInfo.represented?userInfo.represented:userInfo.uid, password: userInfo.represented?userInfo.represented:userInfo.uid,sessionId:sessionId,clientType:"patient"});
  143. socket.on('message', function (data) {
  144. // console.log(data)
  145. if((data.type == 1) ||(data.type == 2) || (data.type == 6) || (data.type == 12)){
  146. addReply(1, data.content, new Date(data.timestamp).Format('yyyy-MM-dd HH:mm:ss'), data.type, data.name, getImgUrl(data.sender_img));
  147. // setTimeout(function(){
  148. dialroll.refresh();
  149. dialroll.scrollTo(0, dialroll.maxScrollY);
  150. // },300)
  151. }
  152. });
  153. socket.on('error', function (data) {
  154. // console.log(data);
  155. });
  156. socket.on('ack', function (data) {
  157. // console.log(data);
  158. });
  159. function getLocalTime(nS) {
  160. return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ');
  161. }
  162. })
  163. .fail(function() {
  164. dialog({contentType:'tipsbox', skin:'bk-popup' ,bottom:true, content:"医生实时对话连接失败!"}).show();
  165. });
  166. }
  167. //获得咨询记录
  168. function getConsultLog(){
  169. var url = "/patient/consult/logs",
  170. params = {
  171. sessionId: patientcode+"_"+request.teamCode+"_"+request.type,
  172. startMsgId:"",
  173. endMsgId: "",
  174. page: id,
  175. pagesize: pagesize
  176. };
  177. d.show();
  178. sendPost(url, params, "json", "post", queryFailed2, function(res){
  179. querySuccess2(res, true);
  180. });
  181. }
  182. //控制“发送”按钮的变化
  183. function sendBtn() {
  184. var tval = $(".talk-input input").val();
  185. if (tval != "") {
  186. $(".talk-send a").removeClass("disab");
  187. } else {
  188. $(".talk-send a").addClass("disab");
  189. }
  190. }
  191. //控制页面高度
  192. function winSize(h) {
  193. var totH = $(window).height();
  194. $("#talkwrap").height(totH - h);
  195. }
  196. function queryMsg(logId,msgType){
  197. var data={};
  198. data.consult = consultCode;
  199. data.logId = logId;
  200. data.msgType=msgType;
  201. sendPost('patient/consult/oneLog', data, 'json', 'GET', queryFailed2, function(res){
  202. if(res.status==200){
  203. var reply = res.consult;
  204. if((reply.msgType == 1) || (reply.msgType == 2) || (reply.msgType == 6)){
  205. addReply(reply.type, reply.content, reply.time, reply.msgType, reply.doctorName, reply.photo);
  206. setTimeout(function(){
  207. dialroll.refresh();
  208. dialroll.scrollTo(0, dialroll.maxScrollY);
  209. },300)
  210. }
  211. }
  212. d.close();
  213. });
  214. }
  215. function queryFailed2(res) {
  216. d.close();
  217. if (res && res.msg) {
  218. dialog({contentType:'tipsbox', skin:'bk-popup' ,bottom:true, content:res.msg}).show();
  219. } else {
  220. dialog({contentType:'tipsbox', skin:'bk-popup' ,bottom:true, content:'加载失败'}).show();
  221. }
  222. }
  223. function querySuccess2(res, prepend) {
  224. if (res.status == 200) {
  225. id++;
  226. var list = res.list;
  227. if (list && list.length > 0) {
  228. for (var j = list.length-1; j >=0; j--) {
  229. var reply = JSON.parse(list[j]);
  230. //屏蔽全科医生求助专科医生的消息
  231. if(reply.content_type != 5){
  232. var date = new Date();
  233. date.setTime(reply.timestamp);
  234. var time = date.format('yyyy-MM-dd hh:mm:ss');
  235. var p;
  236. for(var k in participants){
  237. if(participants[k].id==reply.sender_id)
  238. p = participants[k].avatar;
  239. }
  240. var isSystem = reply.sender_id == 'system';
  241. addReply(reply.sender_id==patientcode? 2 : 1, reply.content, time, reply.content_type, reply.sender_name, p, prepend, isSystem);
  242. }
  243. }
  244. dialroll.refresh();
  245. if(!prepend){
  246. dialroll.scrollTo(0, dialroll.maxScrollY);
  247. }
  248. }
  249. d.close();
  250. }
  251. else{
  252. queryFailed2(res);
  253. }
  254. }
  255. function getNowFormatDate() {
  256. var date = new Date();
  257. var seperator1 = "-";
  258. var seperator2 = ":";
  259. var month = date.getMonth() + 1;
  260. var strDate = date.getDate();
  261. if (month >= 1 && month <= 9) {
  262. month = "0" + month;
  263. }
  264. if (strDate >= 0 && strDate <= 9) {
  265. strDate = "0" + strDate;
  266. }
  267. var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
  268. + " " + date.getHours() + seperator2 + date.getMinutes()
  269. + seperator2 + date.getSeconds();
  270. return currentdate;
  271. }
  272. //点击发送按钮
  273. function send(){
  274. content = $("#input_content").text().replace(/\s+/g,"");
  275. if (content && content != null && content != "") {
  276. var now = new Date();
  277. timeStr = "";
  278. if(now.getMonth()<9){
  279. //补0
  280. timeStr = now.getFullYear() + "-0"+ (now.getMonth()+1) + "-" +now.getDate() +' '
  281. + now.getHours() + ":" +now.getMinutes() + ":" +now.getSeconds();
  282. }else{
  283. timeStr = now.getFullYear() + "-"+ (now.getMonth()+1) + "-" +now.getDate() +' '
  284. + now.getHours() + ":" +now.getMinutes() + ":" +now.getSeconds();
  285. }
  286. $("#input_content").blur();
  287. dialroll.refresh();
  288. dialroll.scrollTo(0, dialroll.maxScrollY);
  289. dd.showModal();
  290. var data = {};
  291. data.consult = consultCode;
  292. data.content = utf16toEntities(content);
  293. data.type = 1;
  294. sendPost('patient/consult/append', data, 'json', 'post', submitFailed, submitSuccess);
  295. } else {
  296. return;
  297. }
  298. }
  299. function submitFailed(res) {
  300. dd.close();
  301. if (res && res.msg) {
  302. dialog({contentType:'tipsbox', skin:'bk-popup' ,bottom:true, content:res.msg}).show();
  303. } else {
  304. dialog({contentType:'tipsbox', skin:'bk-popup' ,bottom:true, content:'发送失败'}).show();
  305. }
  306. }
  307. function submitSuccess(res) {
  308. if (res.status == 200) {
  309. //置空
  310. $("#input_content").text("");
  311. $(".talk-send a").addClass("disab");
  312. addReply(2, content, timeStr, 1, "");
  313. dialroll.refresh();
  314. dialroll.scrollTo(0, dialroll.maxScrollY);
  315. showSendBtn(false);
  316. dd.close();
  317. } else {
  318. submitFailed(res);
  319. }
  320. }
  321. //回复单条内容填写
  322. var defaultPhoto = "../../../images/p-default.png";
  323. var doctorDefaultPhoto = "../../../images/d-default.png";
  324. function addReply(isPatient, content, time, msgType, doctorName,photo,prepend, isSystem) {
  325. //time = time.substr(10);
  326. var doctorPhoto = photo ? getImgUrl(photo) : doctorDefaultPhoto;
  327. var $div = $("<dl></dl>");
  328. if(msgType == 7 || msgType == 10 || msgType == 13 ||msgType == 14){
  329. if(msgType == 7 && isSystem){
  330. content = "您24小时内未回复,系统自动结束咨询";
  331. }
  332. if(prepend){
  333. $(".talk-box").prepend('<div class="time-tips"><span class="xt-xiaoxi">' + content + '</span></div>');
  334. } else
  335. $(".talk-box").append('<div class="time-tips"><span class="xt-xiaoxi">' + content + '</span></div>');
  336. return;
  337. }
  338. if (isPatient == 1) {
  339. $div.addClass('chat-left');
  340. img = doctorPhoto;
  341. name = doctorName;
  342. } else {
  343. $div.addClass('chat-right');
  344. img = photo? getImgUrl(photo):defaultPhoto;
  345. defaultPhoto = img;
  346. name = window.localStorage.getItem("nowPatientName");
  347. }
  348. var temp = '<dt style="height: auto; text-align: center;"><a><img src="' + img + '" class="c-images-cycle" /></a></dt>' +
  349. '<div class="c-content"><span class="c-f12 name">' + name + '</span>'
  350. switch(parseInt(msgType)) {
  351. case 0: //签约信息
  352. case 1://信息
  353. case 6://咨询问题
  354. temp += '<dd class="word-bread"><span>' + content + '</span></dd>';
  355. break;
  356. case 2://图片
  357. // alert(content);
  358. temp += '<dd class="word-bread wb-img"><img style="width:100px; height:100px;" src="'+ getImgUrl(content) +'" /></dd>';
  359. break;
  360. case 3://语音
  361. var rec = JSON.parse(content);
  362. temp += "<div class='c-msg'><dd class='word-bread audio' data-type='3' data-audio='" + content + "'>"+
  363. "<div class='soundWav'>" +
  364. "<span class='soundWavT'>"+(rec? rec.times: "") +"\'\'</span>"+
  365. "</div>"+
  366. "</dd></div>";
  367. break;
  368. case 4: //文章
  369. temp += formatJyzd(content, "","", time);
  370. // temp += '<dd class="word-bread" data-type="1"><span>' + matchUrl(contentMsg) + '</span></dd>';
  371. break;
  372. case 12://视频
  373. var videoInfo = content.split(",");
  374. var shichang = formatSeconds(videoInfo[2]);//时长
  375. if(isPatient == 1){
  376. temp += '<dd class="preview-video" data-video="'+getImgUrl(videoInfo[1])+'">'+
  377. '<img class="video-img-left" src="'+getImgUrl(videoInfo[0])+'">'+
  378. '<img class="bofang-icon-left" src="../../yszx/images/bofang_icon.png">'+
  379. '<img class="jianjiao-icon-left" src="../../yszx/images/zuoshanjiao_bg.png">'+
  380. '<span class="shichang-time-left">'+shichang+'</span>'+
  381. '</dd>';
  382. }else{
  383. temp += '<dd class="preview-video" data-video="'+getImgUrl(videoInfo[1])+'">'+
  384. '<img class="video-img-right" src="'+getImgUrl(videoInfo[0])+'">'+
  385. '<img class="bofang-icon-right" src="../../yszx/images/bofang_icon.png">'+
  386. '<img class="jianjiao-icon-right" src="../../yszx/images/youshanjiao_bg.png">'+
  387. '<span class="shichang-time-right">'+shichang+'</span>'+
  388. '</dd>';
  389. }
  390. break;
  391. }
  392. if(prepend){
  393. $(".talk-box").prepend($div.append(temp)).prepend('<div class="time-tips"><span>' + time + '</span></div>');
  394. } else{
  395. $(".talk-box").append('<div class="time-tips"><span>' + time + '</span></div>').append($div.append(temp));
  396. }
  397. if(isPatient != null && isPatient != 1) {
  398. $(".tw-add-detail").hide(200);
  399. }
  400. }
  401. function formatJyzd(msg, sendErrDom,yiduHtml, time){
  402. // {"title":"2016年春节放假调休门诊安排通知","id":"ff1b39cfdf6a482c958140ba768474cc","img":"http://f1.yihuimg.com/TFS/upfile/WBJ/111/2016-02-05/160294_1454633481085_fullsize.png","content":"为了您的健康,我给您发送了一篇文章,请咨询查阅,如有问题,可随时与我沟通"}
  403. if(msg){
  404. //针对\n,\r等特殊字符,在json转换时会报错
  405. msg = msg.replace(/\n/g, "\\n");
  406. msg = msg.replace(/\r/g, "\\r");
  407. msg = JSON.parse(msg);
  408. // msg.img = msg.type==1? "../../../images/jkjl_share.png" : msg.img;
  409. if(msg.type == 1){ //健康记录
  410. msg.img = "../../../images/jkjl_share.png";
  411. }else if(msg.type == 2){ //健康指导
  412. var img = msg.img.split(",");
  413. if(img[0] && img[0] != "null"){
  414. msg.img = getImgUrl(img[0]);
  415. }else{
  416. msg.img = "../../../images/default_share_blue.png";
  417. }
  418. }else{ //健康教育
  419. msg.img = getImgUrl(msg.img);
  420. if(!msg.img){
  421. msg.img = "../../../images/default_share_blue.png";
  422. }
  423. }
  424. var temp =
  425. '<div class="c-msg">'+'<dd class="word-bread word-article" data-code="'+ msg.id+'" data-inner-type="'+ msg.type +'" data-type="4" data-time="'+time+'">'
  426. // + yiduHtml
  427. + '<h4 class="text-ellipsis c-f18">'+ msg.title +'</h4>'
  428. + '<div class="article-content"><img src="'+ msg.img +'">'
  429. + '<div>'+ msg.content+'</div>'
  430. + '</div>'
  431. + '</dd></div>';
  432. return temp;
  433. }
  434. return "";
  435. }
  436. //毫秒转换成时分秒
  437. function formatSeconds(value) {
  438. var theTime = parseInt(value/1000);// 秒
  439. var theTime1 = 0;// 分
  440. var theTime2 = 0;// 小时
  441. if(theTime > 60) {
  442. theTime1 = parseInt(theTime/60);
  443. theTime = parseInt(theTime%60);
  444. if(theTime1 > 60) {
  445. theTime2 = parseInt(theTime1/60);
  446. theTime1 = parseInt(theTime1%60);
  447. }
  448. }
  449. var result = ""+parseInt(theTime);//秒
  450. if(parseInt(theTime)<=9){
  451. result = "0"+parseInt(theTime);//秒
  452. }
  453. if(theTime1 > 0) {//分
  454. if(parseInt(theTime1)>9){
  455. result = ""+parseInt(theTime1)+":"+result;
  456. }else{
  457. result = "0"+parseInt(theTime1)+":"+result;
  458. }
  459. }
  460. if(theTime2 > 0) {//小时
  461. if(parseInt(theTime2)>9){
  462. result = ""+parseInt(theTime2)+":"+result;
  463. }else{
  464. result = "0"+parseInt(theTime2)+":"+result;
  465. }
  466. }
  467. var resResult = "";
  468. if(result.split(":").length==1){//秒
  469. resResult = "00:"+result;
  470. }else if(result.split(":").length==2){//分
  471. resResult = "00:"+result;
  472. }else{//时
  473. resResult = result;
  474. }
  475. return resResult;
  476. }
  477. //向上拉取更多
  478. function addReplyBefore(type, content, time, msgType, doctorName) {
  479. //time = time.substr(10);
  480. var doctorPhoto = doctorDefaultPhoto;
  481. var patientPhoto = defaultPhoto;
  482. var $div = $("<div></div>");
  483. if (type == 1) {
  484. if(msgType == 2){
  485. $div.addClass('talk-left');
  486. $div.addClass('clearfix');
  487. $div.html('<div class="leftpart"><img src="'+doctorPhoto+'" /><p style="font-size: 13px; text-align: center;max-width: 40px;">'+ doctorName + '</p></div> '
  488. +'<span class="talktime" style="width: 100%; left: 70px; top:-10px;">' + time+'</span>'
  489. +'<div class="rightpart">'
  490. +' <s class="rightjt jt-left"><s></s></s><img style="height: 150px; width: 100px;" src="'+getImgUrl(content)+'" onclick="viewImg(this)"/>'
  491. +'</div>');
  492. }
  493. else{
  494. $div.addClass('talk-left');
  495. $div.addClass('clearfix');
  496. $div.html('<div class="leftpart"><img src="'+doctorPhoto+'" /><p style="font-size: 13px; text-align: center;max-width: 40px;">'+ doctorName + '</p></div> '
  497. +'<span class="talktime" style="width: 100%; left: 70px; top:-10px;">' + time+'</span>'
  498. +'<div class="rightpart">'
  499. +' <s class="rightjt jt-left"><s></s></s>'+content
  500. +'</div>');
  501. }
  502. } else {
  503. if(msgType == 2){
  504. $div.addClass('talk-right');
  505. $div.addClass('clearfix');
  506. $div.html('<div class="leftpart"><img src="'+patientPhoto+'" /></div> '
  507. +'<span class="talktime" style="width: 100%; position:absolute; right:-45%; top:-10px; float: right;">'+time+'</span>'
  508. +'<div class="rightpart">'
  509. +' <img style="height: 150px; width: 100px;" src="'+getImgUrl(content)+'" onclick="viewImg(this)"/>'
  510. +'</div>');
  511. }
  512. else{
  513. $div.addClass('talk-right');
  514. $div.addClass('clearfix');
  515. $div.html ('<div class="leftpart"><img src="' + patientPhoto + '" /></div>'
  516. + '<span class="talktime" style="width: 100%; position:absolute; right:-45%; top:-10px; float: right;">' + time + '</span>'
  517. + '<div class="rightpart">' + content + '</div>');
  518. }
  519. }
  520. $(".talk-box").prepend($div);
  521. }
  522. //结束咨询
  523. function finish(){
  524. dialog({
  525. content:'是否确认结束该次咨询?结束后医生将无法回复',
  526. ok: function (){
  527. var params = {}
  528. params.code = consultCode;
  529. //发送ajax请求, 查询设备列表信息
  530. sendPost("patient/consult/finish", params, "json", "post", submitFailed3,finish_Successs);
  531. function finish_Successs(res){
  532. if (res.status == 200) {
  533. localStorage.setItem("evaluate",0);//标志未评价
  534. location.reload();
  535. }
  536. else{
  537. submitFailed3(res);
  538. }
  539. }
  540. },
  541. cancel: function () {
  542. return;
  543. }
  544. }).showModal();
  545. }
  546. function submitFailed3(res) {
  547. if (res && res.msg) {
  548. dialog({contentType:'tipsbox', skin:'bk-popup' ,bottom:true, content:res.msg}).show();
  549. } else {
  550. dialog({contentType:'tipsbox', skin:'bk-popup' ,bottom:true, content:'操作失败'}).show();
  551. }
  552. }
  553. //查看图片
  554. function viewImg(dom) {
  555. var $img = $(dom);
  556. var thissrc = $img.attr("src");
  557. var mWid = $(window).width();
  558. var mHei = $(window).height();
  559. var nHtml = '<div class="delimgpop"><div class="del-img-box"><div class="del-img-con"><img class="del-pop-img" src="' + thissrc + '" style="max-width:' + mWid + 'px; max-height:' + mHei + 'px;"></div></div></div>';
  560. $("body").append(nHtml);
  561. $(".delimgpop").click(function() {
  562. $(this).remove()
  563. });
  564. }
  565. //微信上传图片
  566. function chooseImageWx(){
  567. dd.showModal();
  568. wx.chooseImage({
  569. count: 3,
  570. success: function (res) {
  571. for (var i in res.localIds) {
  572. images.push(res.localIds[i]);
  573. }
  574. uploadImage();
  575. }
  576. });
  577. }
  578. function uploadImage(){
  579. if (images.length == 0) {
  580. dd.close();
  581. return;
  582. }
  583. var i = 0, length = images.length;
  584. serverId = "";
  585. var faillength = 0 ;
  586. function upload() {
  587. wx.uploadImage({
  588. localId: images[i],
  589. isShowProgressTips: 0,
  590. success: function (res) {
  591. faillength= 0;
  592. dd.close();
  593. i++;
  594. if(serverId.length == 0){
  595. serverId = res.serverId;
  596. }
  597. else{
  598. serverId =serverId + "," + res.serverId;
  599. }
  600. if (i < length) {
  601. upload();
  602. }
  603. if(i == images.length){
  604. sendImages();
  605. }
  606. },
  607. fail: function (res) {
  608. dd.close();
  609. faillength+=1;
  610. if(faillength<=5){
  611. //失败从传
  612. upload();
  613. }else{
  614. dialog({contentType:'tipsbox', skin:'bk-popup' ,bottom:true, content:"图片上传失败,请控制发送频率"}).show();
  615. }
  616. }
  617. });
  618. }
  619. upload();
  620. }
  621. //保存图片
  622. function sendImages(){
  623. var now = new Date();
  624. //清空images
  625. images = [];
  626. timeStr = "";
  627. if(now.getMonth()<9){
  628. //补0
  629. timeStr = now.getFullYear() + "-0"+ (now.getMonth()+1) + "-" +now.getDate() +' '
  630. + now.getHours() + ":" +now.getMinutes() + ":" +now.getSeconds();
  631. }else{
  632. timeStr = now.getFullYear() + "-"+ (now.getMonth()+1) + "-" +now.getDate() +' '
  633. + now.getHours() + ":" +now.getMinutes() + ":" +now.getSeconds();
  634. }
  635. var data = {};
  636. data.consult = consultCode;
  637. data.content = "";
  638. data.mediaIds = serverId;
  639. data.type = 2;
  640. data.times = 0;
  641. dd.showModal();
  642. sendPost('patient/consult/append', data, 'json', 'post', submitFailed, submitImageSuccess);
  643. }
  644. function submitImageSuccess(res) {
  645. if (res.status == 200) {
  646. var data= JSON.parse(res.data)
  647. dd.close();
  648. addReply(2, data.content, timeStr, 2, "");
  649. dialroll.refresh();
  650. dialroll.scrollTo(0, dialroll.maxScrollY);
  651. } else {
  652. submitFailed(res);
  653. }
  654. }
  655. //function wslogin() {
  656. // var userid = patientcode;
  657. // var ws;
  658. // if (typeof MozWebSocket != "undefined") {
  659. // ws = new MozWebSocket(wsurl, 'netex');
  660. // } else {
  661. // ws = new WebSocket(wsurl, 'netex');
  662. // }
  663. //
  664. // function onopen() {
  665. // var reg = {};
  666. // reg.id = 'reg';
  667. // reg.uid = userid;
  668. // reg.pwd = '';
  669. // ws.send(JSON.stringify(reg));
  670. // }
  671. //
  672. // function onclose() {
  673. // // 断链重连
  674. // if (typeof MozWebSocket != "undefined") {
  675. // ws = new MozWebSocket(wsurl, 'netex');
  676. // } else {
  677. // ws = new WebSocket(wsurl, 'netex');
  678. // }
  679. // }
  680. // function onmessage(msg) {
  681. // var result = eval("("+msg.data+")");
  682. // if(result.msgid){
  683. // queryMsg(result.msgid,result.msgType);
  684. // }
  685. // }
  686. // ws.onopen = onopen;
  687. // ws.onmessage = onmessage;
  688. // ws.onclose = onclose;
  689. // }
  690. function playSoundEnd(){
  691. $playingDom.removeClass('active');
  692. $playingDom = null;
  693. }
  694. function playError(){
  695. var src = $('#audio').attr('src');
  696. if(!$.trim(src)) {
  697. return ;
  698. }
  699. dialog({contentType:'tipsbox', skin:'bk-popup' ,bottom:true, content:"播放语音失败"}).show();
  700. $playingDom.removeClass('active');
  701. $playingDom = null;
  702. }
  703. function showSendBtn(isShow){
  704. if(isShow){
  705. $('.tw-add').hide();
  706. $('#reply').fadeIn('fast', 'swing');
  707. } else {
  708. $('#reply').fadeOut('fast', 'swing', function(){
  709. $('.tw-add').show();
  710. });
  711. }
  712. }
  713. function setSoundAlertVisable(show){
  714. if(show){
  715. ui.boxSoundAlert.style.display = 'block';
  716. ui.boxSoundAlert.style.opacity = 1;
  717. }else{
  718. ui.boxSoundAlert.style.opacity = 0;
  719. //fadeOut 完成再真正隐藏
  720. setTimeout(function(){
  721. ui.boxSoundAlert.style.display = 'none';
  722. },200);
  723. }
  724. };
  725. function recordErr(res){
  726. if(res && res.errMsg == "stopRecord:tooshort") {
  727. audio_tips.innerHTML = "录音时间太短";
  728. ui.boxSoundAlert.classList.add('rprogress-sigh');
  729. recordCancel = true;
  730. stopTimer=setTimeout(function(){
  731. setSoundAlertVisable(false);
  732. },500);
  733. startTimestamp = 0;
  734. //小于300ms,不录音
  735. if(recordTimer)clearTimeout(recordTimer);
  736. return;
  737. }
  738. if(!recordCancel){
  739. dialog({
  740. content:'录音失败,请重试',
  741. okValue:'我知道了',
  742. ok: function() {}
  743. }).showModal();
  744. }
  745. }
  746. //保存图片
  747. function sendSounds(times){
  748. var now = new Date();
  749. timeStr = "";
  750. if(now.getMonth()<9){
  751. //补0
  752. timeStr = now.getFullYear() + "-0"+ (now.getMonth()+1) + "-" +now.getDate() +' '
  753. + now.getHours() + ":" +now.getMinutes() + ":" +now.getSeconds();
  754. }else{
  755. timeStr = now.getFullYear() + "-"+ (now.getMonth()+1) + "-" +now.getDate() +' '
  756. + now.getHours() + ":" +now.getMinutes() + ":" +now.getSeconds();
  757. }
  758. var data = {};
  759. data.consult = consultCode;
  760. data.content = "";
  761. data.type = 3;
  762. data.times = times;
  763. wx.uploadVoice({
  764. localId: serverId,
  765. success: function (res) {
  766. data.voices = res.serverId;
  767. dd.showModal();
  768. sendPost('patient/consult/append', data, 'json', 'post', submitFailed,
  769. function submitSoundSuccess(res) {
  770. if (res.status == 200) {
  771. dd.close();
  772. var data = JSON.parse(res.data[0]);
  773. addReply(2, data.content, timeStr, 3, "");
  774. dialroll.refresh();
  775. dialroll.scrollTo(0, dialroll.maxScrollY);
  776. } else {
  777. submitFailed(res);
  778. }
  779. });
  780. }
  781. });
  782. }
  783. function bindConsultEvents(){
  784. //录制视频
  785. /*$(".lz-video-img").click(function(){
  786. $("#upload_input").click();
  787. //dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请录制10秒左右的短视频,以防录制完成后无法发送'}).show();
  788. return false;
  789. })*/
  790. //点击内容区域输入框失焦
  791. $('#talkwrap').click(function(){
  792. $("#input_content").blur();
  793. // dialroll.refresh();
  794. // dialroll.scrollTo(0, dialroll.maxScrollY);
  795. return false;
  796. });
  797. //发送以后定位至最底部
  798. $("#reply a").click(function() {
  799. send();
  800. });
  801. //立即发送
  802. $("#lijifasong").on("tap", function(){
  803. uploadVideo();
  804. mui('#sheet1').popover('toggle');
  805. return false;
  806. });
  807. //不再提醒
  808. $("#buzaitixing").on("tap", function(){
  809. window.localStorage.setItem("isTiXingVideoFaSong","1");
  810. uploadVideo();
  811. mui('#sheet1').popover('toggle');
  812. return false;
  813. });
  814. // window.localStorage.removeItem("isTiXingVideoFaSong");//测试
  815. $('.talk-box').on('click', '.word-bread img', function(){
  816. var src = $(this).attr('src')
  817. $(this).attr('src',src+'?'+$.now())
  818. if(!$(this).closest(".word-bread").hasClass("preview-video")){
  819. var urls = [];
  820. $.each($('.word-bread img'), function(i, v) {
  821. urls.push($(v).attr('src'));
  822. });
  823. wx.previewImage({
  824. current: $(this).attr('src'), // 当前显示图片的http链接
  825. urls: urls // 需要预览的图片http链接列表
  826. });
  827. }
  828. })
  829. .on('touchstart', '.audio', function(){
  830. if($playingDom){
  831. aud.pause();
  832. //aud.stop();
  833. $playingDom.removeClass('active');
  834. if($playingDom[0] == this){
  835. $playingDom = null;
  836. return;
  837. }
  838. }
  839. $playingDom = $(this);
  840. $playingDom.addClass('active');
  841. var ser = JSON.parse($(this).attr('data-audio'));
  842. aud.src = getImgUrl(ser.path);
  843. aud.load();
  844. aud.play();
  845. })
  846. .on('click','.preview-video',function() {
  847. $(document.body).find('video').remove();
  848. var url = $(this).attr('data-video');
  849. var html = '<video style="display: none;" controls preload="auto" width="1" height="1" src="'+url+'"></video>';
  850. $(document.body).append(html);
  851. var video = $(document.body).find('video')[0];
  852. video.play();
  853. });
  854. //键盘输入解决输入框被软键盘覆盖的问题
  855. var bfscrolltop = document.body.scrollTop;//获取软键盘唤起前浏览器滚动部分的高度
  856. var interval;
  857. $ipt_content.focus(function(){//当它获取焦点时触发事件
  858. $(".tw-add-detail").hide();
  859. interval = setInterval(function(){//设置一个计时器,时间设置与软键盘弹出所需时间相近
  860. document.body.scrollTop = document.body.scrollHeight;//获取焦点后将浏览器内所有内容高度赋给浏览器滚动部分高度
  861. },100)
  862. }).blur(function(){//设定输入框失去焦点时的事件
  863. clearInterval(interval);//清除计时器
  864. document.body.scrollTop = bfscrolltop; //将软键盘唤起前的浏览器滚动部分高度重新赋给改变后的高度
  865. });
  866. /**
  867. * 显示发送按钮的事件
  868. */
  869. $ipt_content.on('input', function(e){
  870. if($(this).prop('comstart')) {
  871. //console.log("true");
  872. return;
  873. }
  874. var text = $.trim($(this).text());
  875. showSendBtn(text.length > 0)
  876. }).on('compositionstart', function(){
  877. $(this).prop('comstart', true);
  878. //console.log('中文输入:开始');
  879. }).on('compositionend', function(){
  880. $(this).prop('comstart', false);
  881. // console.log('中文输入:结束');
  882. var text = $.trim($(this).text());
  883. showSendBtn(text.length > 0)
  884. })
  885. .on('tap', function(){
  886. $(".tw-add-detail").hide();
  887. // $ipt_content.focus();
  888. //mui.later(scrollToEnd, 300);
  889. })
  890. /*
  891. * 附加功能
  892. */
  893. $(".tw-add").click(function() {
  894. $(".tw-add-detail").toggle(200);
  895. });
  896. $('body')
  897. //隐藏打开的附加功能
  898. .on('tap', '#talkwrap', function(){
  899. $('.tw-add-detail').hide();
  900. $ipt_content.blur();
  901. })
  902. $(".yy-add").click(function() {
  903. if($('#msg-sound:visible').length){
  904. $ipt_content.show();
  905. ui.boxMsgSound.style.display = 'none';
  906. $(this).find('img:eq(0)').show().next().hide();
  907. } else {
  908. $ipt_content.hide();
  909. ui.boxMsgSound.style.display = 'block';
  910. $(this).find('img:eq(0)').hide().next().show();
  911. }
  912. });
  913. $("body").on('tap', '.word-article', function(){
  914. var type = $(this).attr('data-inner-type');
  915. var code = $(this).attr('data-code');
  916. if(type == 2){
  917. window.location.href = "../../yszd/html/guidance-detail.html?id="+code;
  918. } else{
  919. //根据时间判断该文章是旧的文章还是改造后发送的文章,时间是:2017-12-29 00:00:00
  920. var sendTimeStr = $(this).attr("Data-code"),
  921. sendTime = new Date(sendTimeStr),
  922. cDate = new Date("2017-12-29 00:00:00");
  923. if(sendTime < cDate){
  924. window.location.href = "../../jkjy/html/article.html?dataId="+code;
  925. }else{
  926. window.location.href = "../../jkjy/html/article2.html?dataId="+code;
  927. }
  928. }
  929. });
  930. $(".xzzx").on('tap', function(){
  931. //获取患者信息 判断该患者是否已经缴费 若缴费则正常咨询 未缴费提示咨询次数信息
  932. getPatientInfo();
  933. })
  934. ui.boxMsgSound.addEventListener("touchstart", function(e) {
  935. e.preventDefault();
  936. event.preventDefault();
  937. $(this).addClass('yy-hold');
  938. if(stopTimer)clearTimeout(stopTimer);
  939. recordCancel = false;
  940. audio_tips.innerHTML = "手指上划,取消发送";
  941. ui.boxSoundAlert.classList.remove('rprogress-sigh');
  942. setSoundAlertVisable(true);
  943. startTimestamp = new Date().getTime();
  944. recordTimer = setTimeout(function(){
  945. wx.startRecord({
  946. success: function(){
  947. realStartTime = new Date().getTime();
  948. },
  949. fail: recordErr
  950. });
  951. wx.onVoiceRecordEnd({
  952. // 录音时间超过一分钟没有停止的时候会执行 complete 回调
  953. complete: function (res) {
  954. serverId = res.localId;
  955. sendSounds(60);
  956. },
  957. fail: recordErr
  958. });
  959. },MIN_SOUND_TIME);
  960. }, false);
  961. ui.boxMsgSound.addEventListener("touchend", function(e){
  962. e.preventDefault();
  963. event.preventDefault();
  964. $(this).removeClass('yy-hold');
  965. if (audio_tips.classList.contains("cancel")) {
  966. audio_tips.classList.remove("cancel");
  967. audio_tips.innerHTML = "手指上划,取消发送";
  968. }
  969. var endTimestamp = new Date().getTime();
  970. var times = endTimestamp - startTimestamp;
  971. var realTimes = endTimestamp - realStartTime;
  972. if(times < MIN_SOUND_TIME || realTimes < MIN_SOUND_TIME){
  973. audio_tips.innerHTML = "录音时间太短";
  974. ui.boxSoundAlert.classList.add('rprogress-sigh');
  975. recordCancel = true;
  976. stopTimer=setTimeout(function(){
  977. setSoundAlertVisable(false);
  978. },500);
  979. startTimestamp = 0;
  980. realStartTime = 0;
  981. //小于300ms,不录音
  982. clearTimeout(recordTimer);
  983. wx.stopRecord({
  984. success: function (res) {
  985. },
  986. fail: function(){}
  987. });
  988. }else{
  989. setSoundAlertVisable(false);
  990. wx.stopRecord({
  991. success: function (res) {
  992. if(!recordCancel) {
  993. serverId = res.localId;
  994. sendSounds(Math.round(times/1000));
  995. }
  996. },
  997. fail: recordErr
  998. });
  999. }
  1000. }, false)
  1001. ui.body.addEventListener('drag', function(event) {
  1002. if (Math.abs(event.detail.deltaY) > 50) {
  1003. if (!recordCancel) {
  1004. recordCancel = true;
  1005. if (!audio_tips.classList.contains("cancel")) {
  1006. audio_tips.classList.add("cancel");
  1007. }
  1008. audio_tips.innerHTML = "松开手指,取消发送";
  1009. }
  1010. } else {
  1011. if (recordCancel) {
  1012. recordCancel = false;
  1013. if (audio_tips.classList.contains("cancel")) {
  1014. audio_tips.classList.remove("cancel");
  1015. }
  1016. audio_tips.innerHTML = "手指上划,取消发送";
  1017. }
  1018. }
  1019. }, false);
  1020. }
  1021. //录制视频回调
  1022. function videoFileChange(target) {
  1023. var fileSize = (target.files[0].size/1024/1024).toFixed(2);//字节转换成M
  1024. if(parseInt(fileSize)>30){
  1025. dialog({
  1026. content:'对不起,视频超过30Mb,无法发送,请录制10秒左右的短视频',
  1027. okValue:'我知道了',
  1028. ok: function() {
  1029. return;
  1030. }
  1031. }).showModal();
  1032. }else{
  1033. if(networkStatus=="wifi" || window.localStorage.getItem("isTiXingVideoFaSong")=="1"){//wifi环境或用户点击移动网络弹框中的”不再提醒“按钮
  1034. uploadVideo();
  1035. }else{
  1036. $("#mui-content").html('您正在使用移动网络,继续发送将消耗'+fileSize+'Mb流量,是否继续发送?');
  1037. mui('#sheet1').popover('toggle');
  1038. }
  1039. }
  1040. }
  1041. //上传视频
  1042. function uploadVideo(){
  1043. dd.showModal();
  1044. var fd=new FormData();
  1045. fd.append('file',document.getElementById("upload_input").files[0]);
  1046. $.ajax(server+"/upload/chat?type=4", {
  1047. data: fd,
  1048. contentType: false,
  1049. cache: false,
  1050. processData: false,
  1051. type: 'post',
  1052. success: function(resData) {
  1053. if(resData.status==200){
  1054. var data = {consult:consultCode,content:resData.urls,type:12};
  1055. sendPost('patient/consult/append', data, 'json', 'post', submitFailed,
  1056. function submitSoundSuccess(res) {
  1057. if (res.status == 200) {
  1058. dd.close();
  1059. var data = JSON.parse(res.data[0]);
  1060. addReply(2, data.content, new Date(data.timestamp).Format('yyyy-MM-dd HH:mm:ss'), 12, "");
  1061. dialroll.refresh();
  1062. dialroll.scrollTo(0, dialroll.maxScrollY);
  1063. } else {
  1064. submitFailed(res);
  1065. }
  1066. });
  1067. }else{
  1068. dd.close();
  1069. }
  1070. },
  1071. error:function (XMLHttpRequest, textStatus, errorThrown) {
  1072. console.log(XMLHttpRequest.status);
  1073. console.log(XMLHttpRequest.readyState);
  1074. console.log(textStatus)
  1075. }
  1076. });
  1077. }
  1078. Date.prototype.format = function(fmt) { //author: meizz
  1079. var o = {
  1080. "M+": this.getMonth() + 1, //月份
  1081. "d+": this.getDate(), //日
  1082. "h+": this.getHours(), //小时
  1083. "m+": this.getMinutes(), //分
  1084. "s+": this.getSeconds(), //秒
  1085. "q+": Math.floor((this.getMonth() + 3) / 3), //季度
  1086. "S": this.getMilliseconds() //毫秒
  1087. };
  1088. if (/(y+)/.test(fmt))
  1089. fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
  1090. for (var k in o)
  1091. if (new RegExp("(" + k + ")").test(fmt))
  1092. fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
  1093. return fmt;
  1094. }
  1095. //未缴费居民限制咨询次数
  1096. function limitZxTimes(){
  1097. //获取剩余家庭咨询次数
  1098. var url = '/patient/consult/remainConsultTimes';
  1099. var remainTimes;//剩余咨询次数
  1100. var countTimes;//总咨询次数
  1101. var zxTimes;//已咨询次数
  1102. d.show();
  1103. sendPost(url, {}, 'json', 'get', queryFailed, function(res){
  1104. if(res.status == 200){
  1105. d.close();
  1106. remainTimes = res.data.amount;
  1107. countTimes = res.data.count;
  1108. zxTimes = countTimes - remainTimes;
  1109. if(zxTimes == countTimes){
  1110. //未缴费的总咨询次数已达上限 提示去缴费
  1111. dialog({
  1112. content: '您本年度家庭医生签约暂未缴费,当前10次免费健康咨询已全部使用.如果需要家庭医生继续为您提供服务,请尽快完成缴费操作',
  1113. okValue:'前往缴费',
  1114. ok: function (){
  1115. window.location.href = "signing_management.html";
  1116. }
  1117. }).showModal();
  1118. }else{
  1119. dialog({
  1120. content: '您本年度家庭医生签约暂未缴费,可使用10次免费健康咨询,当前剩余:'+remainTimes+'次.为避免影响您的服务体验,请尽快完成缴费操作',
  1121. okValue:'前往缴费',
  1122. ok: function (){
  1123. window.location.href = "signing_management.html";
  1124. },
  1125. cancelValue: '开始咨询',
  1126. cancel: function () {
  1127. querySignType(2)
  1128. }
  1129. }).showModal();
  1130. }
  1131. }else{
  1132. queryFailed(res);
  1133. }
  1134. });
  1135. }
  1136. //查询签约类型
  1137. function querySignType(type){
  1138. chooseType = type;
  1139. d.show();
  1140. sendPost('patient/sign_doctors', {}, 'json', 'post', function(res){
  1141. queryFailed(res, '获取咨询类型失败');
  1142. }, querySignTypeSuccess);
  1143. }
  1144. //查询签约类型成功回调处理事件
  1145. function querySignTypeSuccess(res){
  1146. if (res.status == 200) {
  1147. d.close();
  1148. var doctors = "";
  1149. switch(Number(chooseType)) {
  1150. case 1: doctors = res.teamDoctors; break;
  1151. case 2: doctors = res.familyDoctors; break;
  1152. default: break;
  1153. }
  1154. var docInfo,docQkInfo;
  1155. $.each(doctors, function(i, v) {
  1156. if(v.teamlevel){
  1157. if(v.teamlevel == 3){
  1158. docInfo = v;
  1159. }
  1160. if(v.teamlevel == 2){
  1161. docQkInfo = v;
  1162. }
  1163. }else{
  1164. if(v.level == 3){
  1165. docInfo = v;
  1166. }
  1167. if(v.level == 2){
  1168. docQkInfo = v;
  1169. }
  1170. }
  1171. });
  1172. if(!docInfo){
  1173. docInfo = docQkInfo;
  1174. }
  1175. checkDocInWork(chooseType, docInfo,docQkInfo)
  1176. }else {
  1177. queryFailed(res);
  1178. }
  1179. }
  1180. //获取签约医生的工作时间
  1181. function checkDocInWork(type, doctor,docQkInfo){
  1182. var url = 'patient/consult/isDoctorWorkWhenconsult',
  1183. params = {doctor:docQkInfo.code,healthDoctor:doctor.code};
  1184. sendPost(url, params, 'json', 'post', queryFailed, function(res){
  1185. if(res.status == 200){
  1186. // data:0-医生不接受咨询/1-医生当前接受咨询/2-全科医生和健管师当前都不在工作时间/3-全科医生当前不在工作时间/4-健管师当前不在工作时间 健管师当前不在工作时间
  1187. if(res.data==2){
  1188. dialog({
  1189. content: '您好,由于您的签约医生工作繁忙,设置了每日回复咨询的时间段,所以,在该时间段外的时间,您的咨询将不会马上获得医生的回复。',
  1190. okValue:'查看医生工作时间',
  1191. ok: function (){
  1192. window.location.href = "../../yszx/html/doctor-work-hours.html?doctor=" + docQkInfo.code+"&healthDoctor="+doctor.code;
  1193. },
  1194. cancelValue: '继续新增咨询',
  1195. cancel: function () {
  1196. window.location.href = "../../yszx/html/add-consult.html?type="+request.type+"&doctorCode=" + request.doctor;
  1197. }
  1198. }).showModal();
  1199. }else if(res.data==3){
  1200. dialog({
  1201. content: '您好,由于您的签约全科医生工作繁忙……,您的咨询将不会马上获得全科医生的回复 。',
  1202. okValue:'查看医生工作时间',
  1203. ok: function (){
  1204. window.location.href = "../../yszx/html/doctor-work-hours.html?doctor=" + docQkInfo.code+"&healthDoctor="+doctor.code;
  1205. },
  1206. cancelValue: '继续新增咨询',
  1207. cancel: function () {
  1208. window.location.href = "../../yszx/html/add-consult.html?type="+request.type+"&doctorCode=" + request.doctor;
  1209. }
  1210. }).showModal();
  1211. }else if(res.data==4){
  1212. dialog({
  1213. content: '您好,由于您的签约健康管理师工作繁忙……,您的咨询将不会马上获得健康管理师的回复 。',
  1214. okValue:'查看医生工作时间',
  1215. ok: function (){
  1216. window.location.href = "../../yszx/html/doctor-work-hours.html?doctor=" + docQkInfo.code+"&healthDoctor="+doctor.code;
  1217. },
  1218. cancelValue: '继续新增咨询',
  1219. cancel: function () {
  1220. window.location.href = "../../yszx/html/add-consult.html?type="+request.type+"&doctorCode=" + request.doctor;
  1221. }
  1222. }).showModal();
  1223. }else{
  1224. //跳转到新增咨询页面
  1225. window.location.href = "../../yszx/html/add-consult.html?type="+request.type+"&doctorCode=" + request.doctor;
  1226. }
  1227. }else{
  1228. queryFailed(res);
  1229. }
  1230. });
  1231. }
  1232. //获得患者信息判断用户是否已缴费
  1233. function getPatientInfo(){
  1234. d.show();
  1235. sendPost('patient/baseinfo', {}, 'json', 'post', queryFailed, function(res){
  1236. if (res.status == 200) {
  1237. expensesStatus = res.data.expensesStatus;
  1238. if(expensesStatus == 1){
  1239. //如果已经缴费 先判断医生是否在工作空间 若在泽可咨询 若不在则进行相关提示
  1240. querySignType(2);
  1241. }else{
  1242. //咨询问题的居民未缴费
  1243. limitZxTimes();
  1244. }
  1245. } else {
  1246. queryFailed(res);
  1247. }
  1248. });
  1249. }
  1250. //请求失败处理事件
  1251. function queryFailed(res, message){
  1252. d.close();
  1253. if(message){
  1254. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content: message}).show();
  1255. }else{
  1256. if (res && res.msg) {
  1257. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  1258. } else {
  1259. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'加载失败'}).show();
  1260. }
  1261. }
  1262. }