rehabilitation_management.js 25 KB

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