rehabilitation_management.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764
  1. !function(){
  2. var httpData=GetRequest();
  3. var currentGMT=new Date();//当前时间GMT
  4. var xuetangDuring = ['', '早餐前', '早餐后', '午餐前', '午餐后', '晚餐前', '晚餐后', '睡前'];
  5. var normalLevel = [
  6. [],
  7. [7, 4],
  8. [11.1, 4],
  9. [7, 4],
  10. [11.1, 4],
  11. [7, 4],
  12. [11.1, 4],
  13. [7, 4]
  14. ];
  15. function showSuccessMessage(msg) {
  16. layer.msg(msg, {
  17. icon: 1
  18. })
  19. }
  20. function showErrorMessage(msg) {
  21. layer.msg(msg, {
  22. icon: 5
  23. })
  24. }
  25. function showWarningMessage(msg) {
  26. layer.msg(msg, {
  27. icon: 2
  28. })
  29. }
  30. function showInfoMessage(msg) {
  31. layer.msg(msg, {
  32. icon: 6
  33. })
  34. }
  35. top.rehabilitationVue = new Vue({
  36. el:"#app",
  37. data:{
  38. ynow: currentGMT.getFullYear(),//年份
  39. mnow: currentGMT.getMonth(),//月份(比实际少一个月---0开始至11)
  40. dnow: currentGMT.getDate(),//当前日
  41. currentDay:null,//带中文格式的当前年月
  42. currentDayForEn:null,//不带中文格式年月日2018/10/01如果写成/的话 转换成时间戳会变成北京时间8点
  43. calendarData:[],//日历数据
  44. timeAxisData:[],//时间轴数据
  45. __Data:[],//当前的年月(日历)
  46. __xData:[],//当前的年月(时间轴)
  47. isFastSearch: false, // 是否是快速查找任务
  48. status:null,//任务状态(0未完成,1已完成,2已预约)
  49. searchTask:null,//快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访,5、复诊)
  50. searchTaskName:null,//快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访,5、复诊)
  51. planId: httpData['planId'],
  52. patientCode: httpData['patientCode'],
  53. taskArr:[
  54. {code:1,name:'我的任务'},
  55. {code:2,name:'健康教育'},
  56. {code:3,name:'健康指导'},
  57. {code:4,name:'随访'},
  58. {code:5,name:'复诊'},
  59. ],
  60. statusArr:[
  61. {code:0,name:'未完成'},
  62. {code:1,name:'已完成'},
  63. {code:2,name:'已预约'},
  64. ],
  65. curTask:'',//快速查找是否点击了搜索按钮
  66. curTaskName:'',//快速查找是否点击了搜索按钮
  67. tabStatus:null,
  68. planInfo:{},
  69. docList:[],
  70. diagnosisInformation: null,
  71. searchData: [], // 搜索计划安排(去年、今年、明年)
  72. medicalRecordsList: [], //病历列表
  73. limitlessItems: [],
  74. showServerItemDetail: false,
  75. serverItemInfo: undefined,
  76. islimit: false
  77. },
  78. mounted:function(){
  79. if(!this.planId){
  80. layer.msg('未传入计划id(planId)',{icon:2})
  81. }else{
  82. this.tabStatus=1;
  83. }
  84. this.planSchedule();
  85. // this.serviceDoctorList();//获取服务医生列表
  86. this.selectPlanServerDoctor();//获取服务医生列表
  87. this.bindEvents();
  88. // 获取最新的诊疗信息1条
  89. this.findDiagnosisInformationByPlanId()
  90. },
  91. methods:{
  92. // 刷新
  93. refresh: function(){
  94. this.planSchedule();
  95. this.timeAxis();
  96. },
  97. // 获取服务医生列表
  98. selectPlanServerDoctor: function(){
  99. var vm = this,
  100. params = {
  101. planId: vm.planId
  102. }
  103. rehaAPI.selectPlanServerDoctor(params).then(function(res){
  104. if(res.status==200){
  105. vm.docList = res.data
  106. }else{
  107. layer.msg(res.msg,{icon:5});
  108. }
  109. })
  110. },
  111. //获取计划表
  112. planSchedule:function(){
  113. var vm = this;
  114. var params = {
  115. planId: this.planId,
  116. patientCode: this.patientCode
  117. };
  118. rehaAPI.planSchedule(params).then(function(res){
  119. if(res.status == 200){
  120. vm.planInfo = res.data;
  121. vm.planInfo.tagClass = "tag-"+res.data.healthyConditionType;
  122. //patientImg:居民签名照/证件照,如果不为null的话说明居民已确认,显示康复完成明细
  123. if(vm.planInfo.status==2 && !vm.planInfo.patientImg){//任务全部完成时,显示完成提示框
  124. vm.showCompleteDailog();
  125. }else if(vm.planInfo.status==2 && vm.planInfo.patientImg){//居民已确认计划完成
  126. vm.tabStatus=3;
  127. $("#framePage").attr("src","stop_special_service.html?planids="+vm.planId+"&planStatus="+vm.planInfo.status)
  128. }
  129. vm.selectByMedicalCode(res.data.medicalRecordsCode)
  130. }else{
  131. layer.msg(res.msg,{icon:5});
  132. }
  133. })
  134. },
  135. // 获取住院病历
  136. selectByMedicalCode: function(medicalRecordsCode){
  137. var vm = this;
  138. var params = {
  139. medical: medicalRecordsCode
  140. };
  141. rehaAPI.selectByMedicalCode(params).then(function(res){
  142. if(res.status==200){
  143. vm.medicalRecordsList = res.data
  144. }else {
  145. showErrorMessage(res.msg);
  146. }
  147. })
  148. },
  149. formatter: function(time){
  150. return new Date(time).format('yyyy-MM-dd')
  151. },
  152. // 获取最新的诊疗消息
  153. findDiagnosisInformationByPlanId: function() {
  154. var vm = this,
  155. loading = layer.load(0, {shade: false}),
  156. params = {
  157. planId: vm.planId
  158. }
  159. recoverAPI.findDiagnosisInformationByPlanId(params).then(function(res) {
  160. layer.close(loading)
  161. if(res.status == 200) {
  162. vm.diagnosisInformation = res.data
  163. } else {
  164. showErrorMessage(res.msg);
  165. }
  166. })
  167. },
  168. serviceDoctorList:function(){
  169. var vm = this;
  170. rehaAPI.serviceDoctorList({patientCode: this.patientCode}).then(function(res){
  171. if(res.status == 200){
  172. vm.docList = res.data;
  173. }else{
  174. layer.msg(res.msg,{icon:5});
  175. }
  176. })
  177. },
  178. weiXinConfirmClick:function(){
  179. var vm = this;
  180. rehaAPI.sendWxMsg({planId: this.planId}).then(function(res){
  181. if(res.status == 200){
  182. layer.msg("发送成功,等待居民确认");
  183. setTimeout(function(){
  184. vm.tabStatus=3;
  185. $("#framePage").attr("src","stop_special_service.html?planids="+vm.planId+"&planStatus="+vm.planInfo.status)
  186. },1000)
  187. }else{
  188. layer.msg(res.msg,{icon:5});
  189. }
  190. })
  191. },
  192. setImgSrc: function (src) {
  193. var str = httpRequest.getImgUrl(src)
  194. return str
  195. },
  196. showCompleteDailog:function(){
  197. layer.confirm('<div class="mt10 tac"><image src="../images/yiwancheng_icon.png" width="100" height="100"/><div class="mt20 c-f20 c-333 mb40">本次康复计划已完成</div><div class="div-patient-comfirm c-f14 c-fff bgc-12b7f5" style="margin:40px auto 20px;">邀请居民确认</div></div>', {
  198. btn: [],
  199. area: ["400px", "340px"],
  200. title: "完成提示"
  201. }, function (index) {
  202. // layer.close(index);
  203. });
  204. },
  205. refreshPage:function(){
  206. if(!this.planId){
  207. layer.msg('未传入计划id(planId)',{icon:2})
  208. return ;
  209. }
  210. this.goToLoadData(true);
  211. },
  212. bindEvents:function(){
  213. var vm = this;
  214. $("body").on("click",".div-patient-comfirm",function(){
  215. layer.closeAll();
  216. vm.weiXinConfirmClick();
  217. }).on("click", ".div-patient-home", function() {
  218. location.href = "../../recover/html/personal-manage.html?patientCode=" + vm.patientCode+'&planId='+vm.planId
  219. })
  220. },
  221. viewDetail:function(planids,type){
  222. var vm=this;
  223. if(!planids){
  224. layer.msg('无服务项',{icon:5})
  225. return ;
  226. }
  227. if(type==1){ // 单个服务项
  228. layer.open({
  229. type: 2,
  230. area: ['800px', '700px'],
  231. shade: 0.5,
  232. title: '服务项目内容',
  233. fixed: true, //不固定
  234. maxmin: true,
  235. closeBtn:1,
  236. shift: 5,
  237. shadeClose: false, //点击遮罩关闭层
  238. content: '../../rehabilitation/html/guide_the_message.html?planid='+planids+'&oprateType=1'+'&pId='+httpData['planId']+'&patient='+vm.patientCode+'&patientName='+vm.planInfo.patientName,
  239. end:function(){
  240. vm.goToLoadData(true);
  241. }
  242. });
  243. return ;
  244. }
  245. layer.open({ // 康复计划的所有服务项
  246. type: 2,
  247. area: ['800px', '700px'],
  248. shade: 0.5,
  249. title: '服务项目内容',
  250. fixed: true, //不固定
  251. maxmin: true,
  252. closeBtn:1,
  253. shift: 5,
  254. shadeClose: false, //点击遮罩关闭层
  255. content: '../../rehabilitation/html/service_item_content.html?planids='+planids+'&planId='+httpData['planId']+'&patient='+vm.patientCode+'&patientName='+vm.planInfo.patientName,
  256. end:function(){
  257. vm.goToLoadData(true);
  258. }
  259. });
  260. },
  261. changeStatus:function(val){
  262. this.status=this.status==val?null:val;
  263. },
  264. changeTask:function(val){
  265. this.searchTask=this.searchTask==val.code?null:val.code;
  266. this.searchTaskName=this.searchTaskName==val.name?null:val.name;
  267. },
  268. monDetail:function(){
  269. this.currentDay = this.ynow + '年'+ (this.mnow + 1) +'月';
  270. this.currentDayForEn=this.ynow+'/'+(this.mnow>=9?(this.mnow+1):"0"+(this.mnow+1))+'/'+(this.dnow>=9?this.dnow:"0"+this.dnow)
  271. },
  272. is_leap:function(year) { //判断是否为闰年
  273. return (year%100==0?res=(year%400==0?1:0):res=(year%4==0?1:0));
  274. },
  275. preMonth:function(){ //上一个月
  276. if(this.mnow<=0){
  277. this.mnow=11;
  278. this.ynow=this.ynow-1;
  279. }else{
  280. this.mnow--;
  281. }
  282. this.monDetail();
  283. this.goToLoadData(true);
  284. },
  285. getPreMouth:function(){
  286. var pMnow,pYnow;
  287. if(this.mnow<=0){
  288. pMnow=11;
  289. pYnow=this.ynow-1;
  290. }else{
  291. pMnow=this.mnow-1;
  292. pYnow=this.ynow;
  293. }
  294. var m_days=new Array(31,(28+this.is_leap(pYnow)),31,30,31,30,31,31,30,31,30,31); //每个月的天数
  295. return {
  296. days:m_days[pMnow],
  297. date:pYnow+'-'+(++pMnow>=10?pMnow:"0"+pMnow)
  298. }
  299. },
  300. nextMonth:function(){ //下一个月
  301. if(this.mnow>=11){
  302. this.mnow=0;
  303. this.ynow=this.ynow+1;
  304. }else{
  305. this.mnow++;
  306. }
  307. this.monDetail();
  308. this.goToLoadData(true);
  309. },
  310. getNextMouth:function(){
  311. var nMnow,nYnow;
  312. if(this.mnow>=11){
  313. nMnow=0;
  314. nYnow=this.ynow+1;
  315. }else{
  316. nMnow=this.mnow+1;
  317. nYnow=this.ynow;
  318. }
  319. var m_days=new Array(31,(28+this.is_leap(nYnow)),31,30,31,01,31,31,30,31,30,31); //每个月的天数
  320. return {
  321. days:m_days[nMnow],
  322. date:nYnow+'-'+(++nMnow>=10?nMnow:"0"+nMnow)
  323. }
  324. },
  325. goToLoadData:function(flag){//flag是否更新数据
  326. this.tabStatus==1 && (!this.calendarData.length || flag) && this.calendar();
  327. this.tabStatus==2 && (!this.timeAxisData.length || flag) && this.timeAxis();
  328. // this.changeSearch(-1)
  329. },
  330. calendar:function(){
  331. var nlstr = new Date(this.ynow,this.mnow,1); //当月第一天
  332. var firstday = nlstr.getDay()-1;//第一天星期几,默认是周日 我们改成周一
  333. firstday=firstday==-1?6:firstday;//如果是-1,说明当月的第一天是周日
  334. var m_days=new Array(31,(28+this.is_leap(this.ynow)),31,30,31,30,31,31,30,31,30,31); //每个月的天数
  335. var tr_str=Math.ceil((m_days[this.mnow] + firstday)/7); //当前月天数+第一天是星期几的数值 获得 表格行数
  336. var c_days=m_days[this.mnow];//当前月份的天数
  337. var p_arr=this.getPreMouth();
  338. var n_arr=this.getNextMouth();
  339. var i,k,idx,date_str;
  340. var dataArr=[];//天数/年月
  341. for(i=0;i<tr_str;i++) { //表格的行
  342. for(k=0;k<7;k++) { //表格每行的单元格
  343. idx=i*7+k; //单元格自然序列号
  344. date_str=idx-firstday+1; //计算日期
  345. var __ym;
  346. if(date_str<=0){//过滤无效日期(小于等于零的、大于月总天数的)
  347. date_str=date_str+p_arr['days'];//当前日期+上个月的天数就是上个月的日期
  348. __ym=p_arr['date'];
  349. }else if(date_str>c_days){
  350. date_str=date_str-c_days;//下个月的日期就是这个月的天数-当月的天数
  351. __ym=n_arr['date'];
  352. }else{
  353. __ym=this.ynow+'-'+(this.mnow>=9?"":"0")+(this.mnow+1);
  354. }
  355. dataArr.push({
  356. day:date_str,
  357. date:__ym
  358. });
  359. }
  360. }
  361. this.__Data=dataArr;
  362. this.monDetail();
  363. this.calenderPlanDetail();
  364. },
  365. daysSort: function(arr) {
  366. var getArr = JSON.parse(JSON.stringify(arr)),
  367. returnArr = []
  368. for(var i = 1; i < 31; i++) {
  369. for(var j = 0, len = getArr.length; j < len; j++) {
  370. var stri = i > 9 + '' ? i : '0'+i
  371. if(getArr[j].day == stri) {
  372. returnArr.push(getArr[j])
  373. getArr.splice(j,1)
  374. break;
  375. }
  376. }
  377. }
  378. return returnArr
  379. },
  380. // 日历有计划数据处理
  381. planHandleData: function(data, day, mounth) {
  382. var item = data;
  383. item.day = day;
  384. if(mounth) {item.mounth = mounth}
  385. var finishFlag=false
  386. var sFlag=false;
  387. var fFlag=false;
  388. if(item.specialist){
  389. if(item.specialist.all==item.specialist.finish){
  390. sFlag=true;
  391. }
  392. }else{
  393. sFlag = true;
  394. }
  395. if(item.family){
  396. if(item.family.all==item.family.finish){
  397. fFlag = true;
  398. }
  399. }else{
  400. fFlag = true;
  401. }
  402. finishFlag = sFlag && fFlag;
  403. item.finishFlag=finishFlag;
  404. return item
  405. },
  406. // 日历请求
  407. calenderPlanDetail:function(){
  408. var vm=this;
  409. var __days=vm.__Data;
  410. var lastDay=(__days.concat()).pop().day;
  411. lastDay=lastDay>9?lastDay:'0'+lastDay;
  412. if(vm.searchTask || vm.status || vm.status == 0) {
  413. vm.isFastSearch = true
  414. } else {
  415. vm.isFastSearch = false
  416. }
  417. var params={
  418. executeStartTime: vm.isFastSearch ? '' : __days[0].date+'-'+__days[0].day+' 00:00:00',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
  419. executeEndTime: vm.isFastSearch ? '' : (__days.concat()).pop().date+'-'+lastDay+' 23:59:59',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
  420. planId:vm.planId,//计划id
  421. searchTask:vm.searchTask,//快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访)
  422. status:vm.status,//任务状态(0未完成,1已完成,2已预约)
  423. }
  424. rehaAPI.calendarPlanDetail(params).then(function(res){
  425. vm.curTask=vm.searchTask;
  426. vm.curTaskName=vm.searchTaskName;
  427. vm.calendarData=[];
  428. var list = [];
  429. if(res.status==200){
  430. var data=res.data
  431. // 快速查找
  432. if(vm.isFastSearch) {
  433. vm.searchData = []
  434. var searchData0 = [],
  435. searchData1 = [],
  436. searchData2 = [];
  437. for(var setM = 1; setM <= 12; setM++) {
  438. var _setM = setM > 9 ? setM : '0' + setM,
  439. _setY = new Date().getFullYear();
  440. var data0 = [],
  441. data1 = [],
  442. data2 = [];
  443. for(var i in data) {
  444. var getY = i.split("-")[0],
  445. getM = i.split("-")[1],
  446. getD = i.split("-")[2];
  447. // 去年
  448. if(_setY - 1 == getY && _setM == getM) {
  449. var item = vm.planHandleData(data[i], getD, getM)
  450. data0.push(item)
  451. data.length && data.splice(i,1);
  452. } else if(_setY == getY && _setM == getM) { // 今年
  453. var item = vm.planHandleData(data[i], getD, getM)
  454. data1.push(item)
  455. data.length && data.splice(i,1);
  456. } else if(_setY + 1 == getY && _setM == getM) { // 明年
  457. var item = vm.planHandleData(data[i], getD, getM)
  458. data2.push(item)
  459. data.length && data.splice(i,1);
  460. }
  461. }
  462. if(data0.length) {
  463. var dataSort = vm.daysSort(data0)
  464. var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
  465. for(var i = 0; i < 7 - addlen; i++) {
  466. dataSort.push({
  467. noService:true
  468. })
  469. }
  470. searchData0.push(dataSort)
  471. }
  472. if(data1.length) {
  473. var dataSort = vm.daysSort(data1)
  474. var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
  475. for(var i = 0; i < 7 - addlen; i++) {
  476. dataSort.push({
  477. noService:true
  478. })
  479. }
  480. searchData1.push(dataSort)
  481. }
  482. if(data2.length) {
  483. var dataSort = vm.daysSort(data2)
  484. var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
  485. for(var i = 0; i < 7 - addlen; i++) {
  486. dataSort.push({
  487. noService:true
  488. })
  489. }
  490. searchData2.push(dataSort)
  491. }
  492. }
  493. if(searchData0.length) {vm.searchData.push(searchData0)}
  494. if(searchData1.length) {vm.searchData.push(searchData1)}
  495. if(searchData2.length) {vm.searchData.push(searchData2)}
  496. return false;
  497. }
  498. // 正常日历
  499. var _currentTimeStamp=+new Date(new Date().setHours(0, 0, 0, 0));
  500. for(var i in __days){
  501. var _key=__days[i].date+'-'+(__days[i].day>9?__days[i].day:'0'+__days[i].day);
  502. var item={
  503. noService:true,
  504. day:__days[i].day
  505. };
  506. for(var j in data){
  507. if(_key==j){
  508. item = vm.planHandleData(data[j], __days[i].day)
  509. data.length && data.splice(j,1);
  510. break;
  511. }
  512. }
  513. var thatTime=+new Date(_key)-8*60*60*1000;
  514. var future=_currentTimeStamp>thatTime?0:(_currentTimeStamp==thatTime?1:2);
  515. item.future=future;
  516. list.push(item);
  517. // vm.calendarData.push(item);
  518. }
  519. vm.calendarData = _.chunk(list, 7)
  520. }
  521. })
  522. },
  523. // 时间轴请求
  524. timeAxis:function(){
  525. var m_days=new Array(31,(28+this.is_leap(this.ynow)),31,30,31,30,31,31,30,31,30,31); //每个月的天数
  526. var c_days=m_days[this.mnow];//当前月份的天数
  527. var __ym=this.ynow+'-'+(this.mnow>=9?"":"0")+(this.mnow+1);
  528. var dataArr=[];//天数/年月
  529. for(;c_days>0;c_days--){
  530. dataArr.push({
  531. day:c_days,
  532. date:__ym
  533. });
  534. }
  535. this.__xData=dataArr;
  536. this.monDetail();
  537. this.calendarPlanDetailList();
  538. this.calendarPlanDetailItems();
  539. },
  540. //时间轴请求
  541. calendarPlanDetailList:function(){
  542. var vm=this;
  543. var __days=vm.__xData;
  544. var lastDay=(__days.concat()).pop().day;
  545. lastDay=lastDay>9?lastDay:'0'+lastDay;
  546. var params={
  547. executeEndTime:__days[0].date+'-'+__days[0].day+' 00:00:00',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
  548. executeStartTime:(__days.concat()).pop().date+'-'+lastDay+' 23:59:59',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
  549. planId:vm.planId,//计划id
  550. searchTask:vm.searchTask,//快速查找任务:(1、我的任务,2、随访,3、复诊,4、健康教育)
  551. status:vm.status,//任务状态(0未完成,1已完成,2已预约)
  552. }
  553. rehaAPI.calendarPlanDetailList(params).then(function(res){
  554. if(res.status==200){
  555. // var _currentTimeStamp=+new Date(new Date().setHours(0, 0, 0, 0))
  556. var list=_.map(res.data||{},function(o){
  557. // var _time=o.executeTime.split(' ');
  558. // var thatTime=+new Date(_time[0]);
  559. // var future=_currentTimeStamp>thatTime?0:(_currentTimeStamp==thatTime?1:2);
  560. // (o.status==0 && _currentTimeStamp>thatTime) && (future=-1)
  561. // var _html=o.status==2?'预':(future==-1?'逾':'');
  562. // _html=future==1?'今':_html;
  563. // if(_html=='预') future=3;
  564. var _time=o.executeTime.split(' ');
  565. var _html = ''
  566. var d = new Date(o.execute_time);
  567. if(d.format("yyyy-MM-dd") == new Date().format("yyyy-MM-dd")) {
  568. o.firstSort = '1'
  569. future = 1
  570. _html = '今'
  571. if(o.status) {
  572. o.secondSort = '2'
  573. } else {
  574. o.secondSort = '1'
  575. }
  576. } else if(d > new Date()) {
  577. o.firstSort = '3'
  578. future = 2
  579. if(o.status) {
  580. o.secondSort = '2'
  581. } else {
  582. o.secondSort = '1'
  583. }
  584. } else {
  585. o.firstSort = '2'
  586. future = 0
  587. if(o.status == 0) {
  588. future = -1
  589. _html = '逾'
  590. o.secondSort = '1'
  591. } else {
  592. o.secondSort = '2'
  593. }
  594. }
  595. o.html=_html
  596. o.date=_time[0];
  597. o.time=_time[1];
  598. o.future=future;
  599. o.doctorName = o.doctor_name
  600. o.hospitalName = o.hospital_name
  601. return o;
  602. })||[];
  603. var nowTime = new Date().getTime()
  604. vm.timeAxisData = _.sortBy(list, function(o) {
  605. return o.firstSort + o.secondSort + (nowTime/o.execute_time)
  606. });
  607. }
  608. })
  609. },
  610. viewServerItemsDetail: function(o){
  611. if(o.code=='2'){
  612. showInfoMessage('请从“消息-患者消息列表”中查看患者的康复咨询记录')
  613. return
  614. }
  615. if(o.code=='3'){
  616. return
  617. }
  618. this.serverItemInfo = o
  619. this.showServerItemDetail = true
  620. this.islimit = o.frequency_code?true:false
  621. },
  622. calendarPlanDetailItems: function(){
  623. var vm=this;
  624. var __days=vm.__xData;
  625. var lastDay=(__days.concat()).pop().day;
  626. lastDay=lastDay>9?lastDay:'0'+lastDay;
  627. var params={
  628. executeEndTime:__days[0].date+'-'+__days[0].day+' 00:00:00',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
  629. executeStartTime:(__days.concat()).pop().date+'-'+lastDay+' 23:59:59',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
  630. planId:vm.planId,//计划id
  631. searchTask:vm.searchTask,//快速查找任务:(1、我的任务,2、随访,3、复诊,4、健康教育)
  632. status:vm.status,//任务状态(0未完成,1已完成,2已预约)
  633. }
  634. rehaAPI.calendarPlanDetailItems(params).then(function(res){
  635. if(res.status==200){
  636. var arr = []
  637. $.each(res.data, function(i, o){
  638. if(o.code=='3'&&o.type){
  639. if(o.type==2){
  640. o.levelClazz = vm.getLevelClazz(o.value1, 139, 90) || vm.getLevelClazz(o.value2, 89, 60)
  641. o.levelClazz1 = vm.getLevelClazz(o.value1, 139, 90)
  642. o.levelClazz2 = vm.getLevelClazz(o.value2, 89, 60)
  643. o.levelClazz3 = vm.getLevelClazz(o.value3, 100, 60)
  644. } else {
  645. var num = parseInt(o.value2)
  646. var max = normalLevel[num][0],
  647. min = normalLevel[num][1];
  648. o.levelClazz1 = vm.getLevelClazz(o.value1, max, min)
  649. o.levelName = xuetangDuring[o.value2]
  650. }
  651. }
  652. arr.push(o)
  653. })
  654. vm.limitlessItems = arr
  655. }
  656. })
  657. },
  658. getLevelClazz: function(value,max,min) {
  659. if(!value||(!max && !min)) {
  660. return '';
  661. }
  662. var value = parseFloat(value);
  663. if(value < min) {
  664. return 'low';
  665. } else if(value > max) {
  666. return 'high';
  667. } else {
  668. return ''
  669. }
  670. },
  671. getNormalLevel: function(index) {
  672. return [
  673. [],
  674. [7, 4],
  675. [11.1, 4],
  676. [7, 4],
  677. [11.1, 4],
  678. [7, 4],
  679. [11.1, 4],
  680. [7, 4]
  681. ][index];
  682. },
  683. changeSearch: function(status) {
  684. var i = status == 1 ? -400 : 0;
  685. var timer1 = setInterval(function() {
  686. i += (5 * status)
  687. $(".search-left").css("right", i + "px")
  688. if(status == 1 && i >= 0) {
  689. clearInterval(timer1)
  690. }
  691. if(status == -1 && i <= -400) {
  692. clearInterval(timer1)
  693. }
  694. }, 5)
  695. },
  696. //邀请视频聊天
  697. openVideoChat: function(otherDoc){
  698. var vm = this;
  699. var loading = layer.load(0);
  700. var participants = []
  701. var participantsMobile = {}
  702. var docInfo = JSON.parse(localStorage.docInfo);
  703. //发起人
  704. participants.push({mobile: docInfo.mobile, name: docInfo.name, sex: docInfo.sex==1? 1 : 2, birthdate: "", level: 3, hospital_name: docInfo.hospitalName, idcard: ""});
  705. participantsMobile[docInfo.mobile] = 1;
  706. if(otherDoc){
  707. //被邀请人
  708. participants.push({
  709. mobile: otherDoc.doctorMobile,
  710. name: otherDoc.doctorName,
  711. sex: otherDoc.doctorSex==1? 1 : 2,
  712. birthdate: "",
  713. level: 3,
  714. hospital_name: otherDoc.doctorHospitalName,
  715. idcard: otherDoc.doctorIdcard})
  716. participantsMobile[otherDoc.doctorMobile] = 0;
  717. }
  718. videoChatAPI.addDoctor({participants : JSON.stringify(participants)}).then(function(res){
  719. if(res.status == 200){
  720. videoChatAPI.sessions({
  721. sessionId: httpRequest.uuid(24, 16),
  722. sessionType: 4,
  723. sessionName: vm.planInfo.patientName +"的远程门诊",
  724. participants: JSON.stringify(participantsMobile),
  725. videoconferencing: 1,
  726. idcard: vm.planInfo.idcard
  727. }).then(function(res1){
  728. layer.close(loading)
  729. if(res1.status == 200){
  730. layer.msg("发起会话成功",{icon:6});
  731. } else{
  732. layer.msg("发起会话失败",{icon:5});
  733. }
  734. }).catch(function(){
  735. layer.close(loading)
  736. layer.msg("系统繁忙",{icon:5});
  737. })
  738. }else{
  739. layer.close(loading)
  740. layer.msg(res.msg,{icon:5});
  741. }
  742. }).catch(function(){
  743. layer.close(loading)
  744. layer.msg("系统繁忙",{icon:5});
  745. })
  746. }
  747. },
  748. watch:{
  749. tabStatus:function(){
  750. this.goToLoadData();
  751. }
  752. }
  753. })
  754. }();