rehabilitation_management.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  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. excuteServerItem: function(type, detailId){
  262. if(type==1){
  263. }
  264. },
  265. changeStatus:function(val){
  266. this.status=this.status==val?null:val;
  267. },
  268. changeTask:function(val){
  269. this.searchTask=this.searchTask==val.code?null:val.code;
  270. this.searchTaskName=this.searchTaskName==val.name?null:val.name;
  271. },
  272. monDetail:function(){
  273. this.currentDay = this.ynow + '年'+ (this.mnow + 1) +'月';
  274. this.currentDayForEn=this.ynow+'/'+(this.mnow>=9?(this.mnow+1):"0"+(this.mnow+1))+'/'+(this.dnow>=9?this.dnow:"0"+this.dnow)
  275. },
  276. is_leap:function(year) { //判断是否为闰年
  277. return (year%100==0?res=(year%400==0?1:0):res=(year%4==0?1:0));
  278. },
  279. preMonth:function(){ //上一个月
  280. if(this.mnow<=0){
  281. this.mnow=11;
  282. this.ynow=this.ynow-1;
  283. }else{
  284. this.mnow--;
  285. }
  286. this.monDetail();
  287. this.goToLoadData(true);
  288. },
  289. getPreMouth:function(){
  290. var pMnow,pYnow;
  291. if(this.mnow<=0){
  292. pMnow=11;
  293. pYnow=this.ynow-1;
  294. }else{
  295. pMnow=this.mnow-1;
  296. pYnow=this.ynow;
  297. }
  298. var m_days=new Array(31,(28+this.is_leap(pYnow)),31,30,31,30,31,31,30,31,30,31); //每个月的天数
  299. return {
  300. days:m_days[pMnow],
  301. date:pYnow+'-'+(++pMnow>=10?pMnow:"0"+pMnow)
  302. }
  303. },
  304. nextMonth:function(){ //下一个月
  305. if(this.mnow>=11){
  306. this.mnow=0;
  307. this.ynow=this.ynow+1;
  308. }else{
  309. this.mnow++;
  310. }
  311. this.monDetail();
  312. this.goToLoadData(true);
  313. },
  314. getNextMouth:function(){
  315. var nMnow,nYnow;
  316. if(this.mnow>=11){
  317. nMnow=0;
  318. nYnow=this.ynow+1;
  319. }else{
  320. nMnow=this.mnow+1;
  321. nYnow=this.ynow;
  322. }
  323. var m_days=new Array(31,(28+this.is_leap(nYnow)),31,30,31,01,31,31,30,31,30,31); //每个月的天数
  324. return {
  325. days:m_days[nMnow],
  326. date:nYnow+'-'+(++nMnow>=10?nMnow:"0"+nMnow)
  327. }
  328. },
  329. goToLoadData:function(flag){//flag是否更新数据
  330. this.tabStatus==1 && (!this.calendarData.length || flag) && this.calendar();
  331. this.tabStatus==2 && (!this.timeAxisData.length || flag) && this.timeAxis();
  332. // this.changeSearch(-1)
  333. },
  334. calendar:function(){
  335. var nlstr = new Date(this.ynow,this.mnow,1); //当月第一天
  336. var firstday = nlstr.getDay()-1;//第一天星期几,默认是周日 我们改成周一
  337. firstday=firstday==-1?6:firstday;//如果是-1,说明当月的第一天是周日
  338. var m_days=new Array(31,(28+this.is_leap(this.ynow)),31,30,31,30,31,31,30,31,30,31); //每个月的天数
  339. var tr_str=Math.ceil((m_days[this.mnow] + firstday)/7); //当前月天数+第一天是星期几的数值 获得 表格行数
  340. var c_days=m_days[this.mnow];//当前月份的天数
  341. var p_arr=this.getPreMouth();
  342. var n_arr=this.getNextMouth();
  343. var i,k,idx,date_str;
  344. var dataArr=[];//天数/年月
  345. for(i=0;i<tr_str;i++) { //表格的行
  346. for(k=0;k<7;k++) { //表格每行的单元格
  347. idx=i*7+k; //单元格自然序列号
  348. date_str=idx-firstday+1; //计算日期
  349. var __ym;
  350. if(date_str<=0){//过滤无效日期(小于等于零的、大于月总天数的)
  351. date_str=date_str+p_arr['days'];//当前日期+上个月的天数就是上个月的日期
  352. __ym=p_arr['date'];
  353. }else if(date_str>c_days){
  354. date_str=date_str-c_days;//下个月的日期就是这个月的天数-当月的天数
  355. __ym=n_arr['date'];
  356. }else{
  357. __ym=this.ynow+'-'+(this.mnow>=9?"":"0")+(this.mnow+1);
  358. }
  359. dataArr.push({
  360. day:date_str,
  361. date:__ym
  362. });
  363. }
  364. }
  365. this.__Data=dataArr;
  366. this.monDetail();
  367. this.calenderPlanDetail();
  368. },
  369. daysSort: function(arr) {
  370. var getArr = JSON.parse(JSON.stringify(arr)),
  371. returnArr = []
  372. for(var i = 1; i < 31; i++) {
  373. for(var j = 0, len = getArr.length; j < len; j++) {
  374. var stri = i > 9 + '' ? i : '0'+i
  375. if(getArr[j].day == stri) {
  376. returnArr.push(getArr[j])
  377. getArr.splice(j,1)
  378. break;
  379. }
  380. }
  381. }
  382. return returnArr
  383. },
  384. // 日历有计划数据处理
  385. planHandleData: function(data, day, mounth) {
  386. var item = data;
  387. item.day = day;
  388. if(mounth) {item.mounth = mounth}
  389. var finishFlag=false
  390. var sFlag=false;
  391. var fFlag=false;
  392. if(item.specialist){
  393. if(item.specialist.all==item.specialist.finish){
  394. sFlag=true;
  395. }
  396. }else{
  397. sFlag = true;
  398. }
  399. if(item.family){
  400. if(item.family.all==item.family.finish){
  401. fFlag = true;
  402. }
  403. }else{
  404. fFlag = true;
  405. }
  406. finishFlag = sFlag && fFlag;
  407. item.finishFlag=finishFlag;
  408. return item
  409. },
  410. // 日历请求
  411. calenderPlanDetail:function(){
  412. var vm=this;
  413. var __days=vm.__Data;
  414. var lastDay=(__days.concat()).pop().day;
  415. lastDay=lastDay>9?lastDay:'0'+lastDay;
  416. if(vm.searchTask || vm.status || vm.status == 0) {
  417. vm.isFastSearch = true
  418. } else {
  419. vm.isFastSearch = false
  420. }
  421. var params={
  422. executeStartTime: vm.isFastSearch ? '' : __days[0].date+'-'+__days[0].day+' 00:00:00',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
  423. executeEndTime: vm.isFastSearch ? '' : (__days.concat()).pop().date+'-'+lastDay+' 23:59:59',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
  424. planId:vm.planId,//计划id
  425. searchTask:vm.searchTask,//快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访)
  426. status:vm.status,//任务状态(0未完成,1已完成,2已预约)
  427. }
  428. rehaAPI.calendarPlanDetail(params).then(function(res){
  429. vm.curTask=vm.searchTask;
  430. vm.curTaskName=vm.searchTaskName;
  431. vm.calendarData=[];
  432. var list = [];
  433. if(res.status==200){
  434. var data=res.data
  435. // 快速查找
  436. if(vm.isFastSearch) {
  437. vm.searchData = []
  438. var searchData0 = [],
  439. searchData1 = [],
  440. searchData2 = [];
  441. for(var setM = 1; setM <= 12; setM++) {
  442. var _setM = setM > 9 ? setM : '0' + setM,
  443. _setY = new Date().getFullYear();
  444. var data0 = [],
  445. data1 = [],
  446. data2 = [];
  447. for(var i in data) {
  448. var getY = i.split("-")[0],
  449. getM = i.split("-")[1],
  450. getD = i.split("-")[2];
  451. // 去年
  452. if(_setY - 1 == getY && _setM == getM) {
  453. var item = vm.planHandleData(data[i], getD, getM)
  454. data0.push(item)
  455. data.length && data.splice(i,1);
  456. } else if(_setY == getY && _setM == getM) { // 今年
  457. var item = vm.planHandleData(data[i], getD, getM)
  458. data1.push(item)
  459. data.length && data.splice(i,1);
  460. } else if(_setY + 1 == getY && _setM == getM) { // 明年
  461. var item = vm.planHandleData(data[i], getD, getM)
  462. data2.push(item)
  463. data.length && data.splice(i,1);
  464. }
  465. }
  466. if(data0.length) {
  467. var dataSort = vm.daysSort(data0)
  468. var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
  469. for(var i = 0; i < 7 - addlen; i++) {
  470. dataSort.push({
  471. noService:true
  472. })
  473. }
  474. searchData0.push(dataSort)
  475. }
  476. if(data1.length) {
  477. var dataSort = vm.daysSort(data1)
  478. var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
  479. for(var i = 0; i < 7 - addlen; i++) {
  480. dataSort.push({
  481. noService:true
  482. })
  483. }
  484. searchData1.push(dataSort)
  485. }
  486. if(data2.length) {
  487. var dataSort = vm.daysSort(data2)
  488. var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
  489. for(var i = 0; i < 7 - addlen; i++) {
  490. dataSort.push({
  491. noService:true
  492. })
  493. }
  494. searchData2.push(dataSort)
  495. }
  496. }
  497. if(searchData0.length) {vm.searchData.push(searchData0)}
  498. if(searchData1.length) {vm.searchData.push(searchData1)}
  499. if(searchData2.length) {vm.searchData.push(searchData2)}
  500. return false;
  501. }
  502. // 正常日历
  503. var _currentTimeStamp=+new Date(new Date().setHours(0, 0, 0, 0));
  504. for(var i in __days){
  505. var _key=__days[i].date+'-'+(__days[i].day>9?__days[i].day:'0'+__days[i].day);
  506. var item={
  507. noService:true,
  508. day:__days[i].day
  509. };
  510. for(var j in data){
  511. if(_key==j){
  512. item = vm.planHandleData(data[j], __days[i].day)
  513. data.length && data.splice(j,1);
  514. break;
  515. }
  516. }
  517. var thatTime=+new Date(_key)-8*60*60*1000;
  518. var future=_currentTimeStamp>thatTime?0:(_currentTimeStamp==thatTime?1:2);
  519. item.future=future;
  520. list.push(item);
  521. // vm.calendarData.push(item);
  522. }
  523. vm.calendarData = _.chunk(list, 7)
  524. }
  525. })
  526. },
  527. // 时间轴请求
  528. timeAxis:function(){
  529. var m_days=new Array(31,(28+this.is_leap(this.ynow)),31,30,31,30,31,31,30,31,30,31); //每个月的天数
  530. var c_days=m_days[this.mnow];//当前月份的天数
  531. var __ym=this.ynow+'-'+(this.mnow>=9?"":"0")+(this.mnow+1);
  532. var dataArr=[];//天数/年月
  533. for(;c_days>0;c_days--){
  534. dataArr.push({
  535. day:c_days,
  536. date:__ym
  537. });
  538. }
  539. this.__xData=dataArr;
  540. this.monDetail();
  541. this.calendarPlanDetailList();
  542. this.calendarPlanDetailItems();
  543. },
  544. //时间轴请求
  545. calendarPlanDetailList:function(){
  546. var vm=this;
  547. var __days=vm.__xData;
  548. var lastDay=(__days.concat()).pop().day;
  549. lastDay=lastDay>9?lastDay:'0'+lastDay;
  550. var params={
  551. executeEndTime:__days[0].date+'-'+__days[0].day+' 00:00:00',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
  552. executeStartTime:(__days.concat()).pop().date+'-'+lastDay+' 23:59:59',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
  553. planId:vm.planId,//计划id
  554. searchTask:vm.searchTask,//快速查找任务:(1、我的任务,2、随访,3、复诊,4、健康教育)
  555. status:vm.status,//任务状态(0未完成,1已完成,2已预约)
  556. }
  557. rehaAPI.calendarPlanDetailList(params).then(function(res){
  558. if(res.status==200){
  559. var _currentTimeStamp=+new Date(new Date().setHours(0, 0, 0, 0))
  560. var list=_.map(res.data||{},function(o){
  561. var _time=o.executeTime.split(' ');
  562. var thatTime=+new Date(_time[0]);
  563. var future=_currentTimeStamp>thatTime?0:(_currentTimeStamp==thatTime?1:2);
  564. (o.status==0 && _currentTimeStamp>thatTime) && (future=-1)
  565. var _html=o.status==2?'预':(future==-1?'逾':'');
  566. _html=future==1?'今':_html;
  567. if(_html=='预') future=3;
  568. // var d = new Date(o.execute_time);
  569. // if(d.format("yyyy-MM-dd") == new Date().format("yyyy-MM-dd")) {
  570. // o.dateClass = "today";
  571. // o.firstSort = '1'
  572. // o.dateText = "今";
  573. // o.today = true;
  574. // obj = getStatusInfo(o.status);
  575. // future=1
  576. // if(o.status) {
  577. // o.secondSort = '2'
  578. // } else {
  579. // o.secondSort = '1'
  580. // }
  581. // } else if(d > new Date()) {
  582. // o.firstSort = '3 '
  583. // o.dateText = "";
  584. // o.dateClass = "blue";
  585. // future=2
  586. // if(o.status) {
  587. // o.secondSort = '2'
  588. // } else {
  589. // o.secondSort = '1'
  590. // }
  591. // } else {
  592. // obj = getStatusInfo(o.status);
  593. // o.firstSort = '2'
  594. // future=0
  595. // if(o.status == 0) {
  596. // o.dateClass = "overlay";
  597. // o.dateText = "逾";
  598. // o.secondSort = '1'
  599. // } else {
  600. // o.dateText = "";
  601. // o.dateClass = "";
  602. // o.secondSort = '2'
  603. // }
  604. // }
  605. o.html=_html
  606. o.date=_time[0];
  607. o.time=_time[1];
  608. o.future=future;
  609. return o;
  610. })||[];
  611. vm.timeAxisData = list
  612. }
  613. })
  614. },
  615. viewServerItemsDetail: function(o){
  616. if(o.code=='2'){
  617. showInfoMessage('请从“消息-患者消息列表”中查看患者的康复咨询记录')
  618. return
  619. }
  620. if(o.code=='3'){
  621. return
  622. }
  623. this.serverItemInfo = o
  624. this.showServerItemDetail = true
  625. this.islimit = o.frequency_code?true:false
  626. },
  627. calendarPlanDetailItems: function(){
  628. var vm=this;
  629. var __days=vm.__xData;
  630. var lastDay=(__days.concat()).pop().day;
  631. lastDay=lastDay>9?lastDay:'0'+lastDay;
  632. var params={
  633. executeEndTime:__days[0].date+'-'+__days[0].day+' 00:00:00',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
  634. executeStartTime:(__days.concat()).pop().date+'-'+lastDay+' 23:59:59',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
  635. planId:vm.planId,//计划id
  636. searchTask:vm.searchTask,//快速查找任务:(1、我的任务,2、随访,3、复诊,4、健康教育)
  637. status:vm.status,//任务状态(0未完成,1已完成,2已预约)
  638. }
  639. rehaAPI.calendarPlanDetailItems(params).then(function(res){
  640. if(res.status==200){
  641. var arr = []
  642. $.each(res.data, function(i, o){
  643. if(o.code=='3'&&o.type){
  644. if(o.type==2){
  645. o.levelClazz = vm.getLevelClazz(o.value1, 139, 90) || vm.getLevelClazz(o.value2, 89, 60)
  646. o.levelClazz1 = vm.getLevelClazz(o.value1, 139, 90)
  647. o.levelClazz2 = vm.getLevelClazz(o.value2, 89, 60)
  648. o.levelClazz3 = vm.getLevelClazz(o.value3, 100, 60)
  649. } else {
  650. var num = parseInt(o.value2)
  651. var max = normalLevel[num][0],
  652. min = normalLevel[num][1];
  653. o.levelClazz1 = vm.getLevelClazz(o.value1, max, min)
  654. o.levelName = xuetangDuring[o.value2]
  655. }
  656. }
  657. arr.push(o)
  658. })
  659. vm.limitlessItems = arr
  660. }
  661. })
  662. },
  663. getLevelClazz: function(value,max,min) {
  664. if(!value||(!max && !min)) {
  665. return '';
  666. }
  667. var value = parseFloat(value);
  668. if(value < min) {
  669. return 'low';
  670. } else if(value > max) {
  671. return 'high';
  672. } else {
  673. return ''
  674. }
  675. },
  676. getNormalLevel: function(index) {
  677. return [
  678. [],
  679. [7, 4],
  680. [11.1, 4],
  681. [7, 4],
  682. [11.1, 4],
  683. [7, 4],
  684. [11.1, 4],
  685. [7, 4]
  686. ][index];
  687. },
  688. changeSearch: function(status) {
  689. var i = status == 1 ? -400 : 0;
  690. var timer1 = setInterval(function() {
  691. i += (5 * status)
  692. $(".search-left").css("right", i + "px")
  693. if(status == 1 && i >= 0) {
  694. clearInterval(timer1)
  695. }
  696. if(status == -1 && i <= -400) {
  697. clearInterval(timer1)
  698. }
  699. }, 5)
  700. },
  701. //邀请视频聊天
  702. openVideoChat: function(otherDoc){
  703. var vm = this;
  704. var loading = layer.load(0);
  705. var participants = []
  706. var participantsMobile = {}
  707. var docInfo = JSON.parse(localStorage.docInfo);
  708. //发起人
  709. participants.push({mobile: docInfo.mobile, name: docInfo.name, sex: docInfo.sex==1? 1 : 2, birthdate: "", level: 3, hospital_name: docInfo.hospitalName, idcard: ""});
  710. participantsMobile[docInfo.mobile] = 1;
  711. if(otherDoc){
  712. //被邀请人
  713. participants.push({
  714. mobile: otherDoc.doctorMobile,
  715. name: otherDoc.doctorName,
  716. sex: otherDoc.doctorSex==1? 1 : 2,
  717. birthdate: "",
  718. level: 3,
  719. hospital_name: otherDoc.doctorHospitalName,
  720. idcard: otherDoc.doctorIdcard})
  721. participantsMobile[otherDoc.doctorMobile] = 0;
  722. }
  723. videoChatAPI.addDoctor({participants : JSON.stringify(participants)}).then(function(res){
  724. if(res.status == 200){
  725. videoChatAPI.sessions({
  726. sessionId: httpRequest.uuid(24, 16),
  727. sessionType: 4,
  728. sessionName: vm.planInfo.patientName +"的远程门诊",
  729. participants: JSON.stringify(participantsMobile),
  730. videoconferencing: 1,
  731. idcard: vm.planInfo.idcard
  732. }).then(function(res1){
  733. layer.close(loading)
  734. if(res1.status == 200){
  735. layer.msg("发起会话成功",{icon:6});
  736. } else{
  737. layer.msg("发起会话失败",{icon:5});
  738. }
  739. }).catch(function(){
  740. layer.close(loading)
  741. layer.msg("系统繁忙",{icon:5});
  742. })
  743. }else{
  744. layer.close(loading)
  745. layer.msg(res.msg,{icon:5});
  746. }
  747. }).catch(function(){
  748. layer.close(loading)
  749. layer.msg("系统繁忙",{icon:5});
  750. })
  751. }
  752. },
  753. watch:{
  754. tabStatus:function(){
  755. this.goToLoadData();
  756. }
  757. }
  758. })
  759. }();