hd преди 5 месеца
родител
ревизия
eb24ee88aa

+ 801 - 743
app/jbsc/html/questionnaire.html

@ -1,751 +1,809 @@
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
	    <title>筛选类型</title>
	    <meta name="viewport" content="width=device-width, initial-scale=1.0">
	    <meta name="renderer" content="webkit">
	    <meta http-equiv="Cache-Control" content="no-siteapp" />
	    <meta name="keywords" content="筛选类型">
	    <meta name="description" content="筛选类型">
	    <link rel="shortcut icon" href="../../../favicon.ico">
		<link rel="stylesheet" type="text/css" href="../../../css/bootstrap.min.css"/>
		<link rel="stylesheet" type="text/css" href="../../../css/cross.css"/>
		<link rel="stylesheet" type="text/css" href="../../../css/style.min.css" />
		<link href="../../../plugins/toastr/toastr.min.css" rel="stylesheet">
		<link rel="stylesheet" href="../css/questionnaire.css" />
		<link rel="stylesheet" type="text/css" href="../../../css/element-ui.css" />
		<!-- <link rel="stylesheet" type="text/css" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css" /> -->
	</head>
	<body>
		<div class="ui-grid" id="app" style="align-items: flex-start;" v-cloak>
			<div class="flex-box-item ptb20">
				<!--<div class="prompt-text">请认真填写本页面,方便医生进行综合评估【厦门i健康】</div>-->
				<div class="single-choice-question">
					<div class="question-title">问卷题目</div>
					<div class="question-content">
						<ul class="question-list">
							<li v-for="(qst,key,index) in questions">
								<p class="question-name" v-text="key+'、'+qst.question.title"></p>
								<div class="daan-list" v-if="qst.question.questionType!=2">
									<lable class="label-block" v-for="opt in qst.option" @click="selectItem(qst.question,opt,index)">
										<span class="pull-right" v-text="(opt.score || 0)+'分'" v-if="qst.isThird!=3"></span>
										<template v-if="qst.isThird==3&&qst.question.thirdKey=='sex'">
											<input :type="qst.questionType==1?'checkbox':'radio'"  :checked="opt.thirdValue == sex" :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')" value="1" /><i></i><span v-text="opt.content"></span>									
										</template>
										<template v-if="qst.isThird==3&&qst.question.thirdKey=='acs'">
											<input :type="qst.questionType==1?'checkbox':'radio'"  :checked="opt.thirdValue == (ascvdShow?ascvdShow:ascvdS1)" id='myInput1' :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')" value="1" /><i></i><span v-text="opt.content"></span>									
										</template>
										<template v-if="qst.isThird==3&&qst.question.thirdKey=='myocardialInfarct'">
											<input :type="qst.questionType==1?'checkbox':'radio'"  :checked="opt.thirdValue == (ascvdShow?ascvdShow:ascvdS2)" id='myInput2' :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')" value="1" /><i></i><span v-text="opt.content"></span>									
										</template>
										<template v-if="qst.isThird==3&&qst.question.thirdKey=='ischemicStroke'">
											<input :type="qst.questionType==1?'checkbox':'radio'"  :checked="opt.thirdValue == (ascvdShow?ascvdShow:ascvdS3)" id='myInput3' :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')" value="1" /><i></i><span v-text="opt.content"></span>									
										</template>
										<template v-if="qst.isThird==3&&qst.question.thirdKey=='seriousMedicalHistory'">
											<input :type="qst.questionType==1?'checkbox':'radio'"  :checked="opt.thirdValue == (ascvdShow?ascvdShow:ascvdS4)" id='myInput4' :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')" value="1" /><i></i><span v-text="opt.content"></span>									
										</template>
										<template v-if="qst.question.thirdKey!='sex'&&qst.question.thirdKey!='acs'&&qst.question.thirdKey!='myocardialInfarct'&&qst.question.thirdKey!='ischemicStroke'&&qst.question.thirdKey!='seriousMedicalHistory'">
											<input :type="qst.questionType==1||qst.question.questionType?'checkbox':'radio'" v-if="qst.question.thirdKey!='sex'" :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')" value="1" /><i></i><span v-text="opt.content"></span>									
										</template>
									</lable>
								</div>
								<div v-else>
									<template v-if="(qst.isThird=='3' && qst.question.thirdKey == 'assessTime')||(qst.question.thirdKey == 'createDate'&&screeningTitle=='大肠癌筛查问卷(OB筛查)')||(qst.question.thirdKey == 'createDate'&&screeningTitle=='脑卒中风险评估(冠心病、脑卒中、肾病)')">
										<div style="padding-left: 20px;">
											<el-date-picker
											  v-model="qst.question.content"
											  type="datetime"
											  format="yyyy-MM-dd HH:mm"
											  value-format="yyyy-MM-dd HH:mm"
											  placeholder="选择日期时间"
											  @change='changeContent(qst.question,qst.question.content)'>
											</el-date-picker>
										</div>
									</template>
									<template v-else>
										<div class="daan-list" v-if="qst.isThird==3 && (qst.question.thirdKey == 'assessDoctor' || qst.question.thirdKey == 'assessOrgId'||(!shaowas&&qst.question.thirdKey == 'bmi'))">
											<textarea class="wenjuan-textarea" disabled rows="2"  v-model="qst.question.content"></textarea>
										</div>
										<div class="daan-list" v-else-if="qst.question.thirdKey != 'bmi'">
											<textarea class="wenjuan-textarea" @keyup="changeContent(qst.question,qst.question.content,1)" rows="2"  v-model="qst.question.content"></textarea>
										</div>
										<div class="daan-list" v-if="(shaowas&&qst.question.thirdKey == 'bmi')">
											<textarea class="wenjuan-textarea" disabled rows="2"  v-model="shaowas"></textarea>
										</div>
										
									</template>
								</div>
							</li>
						</ul>
					</div>
				</div>
			</div>
			<div class="w-250">
				<div class="base-info">
					<p class="f-16 mb0">基本信息</p>
					<div class="flex-box right-triangle">
						<span class="w-70">
							类型
						</span>
						<a class="flex-box-item" :alt="screeningTitle" v-text="screeningTitle" @click="goBack">
							--
						</a>
					</div>
					<div class="flex-box right-triangle">
						<span class="w-70">
							对象
						</span>
						<a class="flex-box-item" :alt="screeningResidentsName" v-text="screeningResidentsName" @click="goBack(1)">
							--
						</a>
					</div>
					<div class="flex-box">
						<span class="w-70">
							筛查人员
						</span>
						<div class="flex-box-item c-999" v-text="doctorInfo.name"></div>
					</div>
					<div class="flex-box" style="align-items: flex-start;">
						<span class="w-70">
							体征记录
						</span>
						<div class="flex-box-item" v-if="tizhongRecord.value1 || tizhongRecord.value2">
							<p v-if="tizhongRecord.value1">体重<input type="number" step="0.1" readonly="readonly" :value="tizhongRecord.value1" />kg</p>
							<p class="mb0" v-if="tizhongRecord.value2">身高<input type="number" step="0.1" readonly="readonly" :value="tizhongRecord.value2" />cm</p>
						</div>
						<div class="flex-box-item" v-else>
							暂无体征
						</div>
					</div>
				</div>
				
				<div class="completion-of-progress">
					<p class="f16 mb0">完成情况</p>
					<div class="canvas-box">
						<canvas-progress :progress="progress" ref="progress"></canvas-progress>
						<p class="progress-number">
							<span>已完成</span>
						</p>
					</div>
				</div>
				
				<div class="btn-group-bottom">
					<button class="btn submit-btn" @click="save">提交</button>
					<button class="btn btn-exit" @click="signOut">退出</button>
				</div>
			</div>
		</div>
		<script type="text/javascript" src="../../../plugins/echarts/3.8.5/echarts.min.js" ></script>
		<script src="../../../js/vue.js" type="text/javascript" charset="utf-8"></script>
		<script src="../../../js/jquery-2.2.4.js" type="text/javascript" charset="utf-8"></script>
		<script src="../../../component/common/event-bus.js"></script>
		<script src="../../../js/element-ui.js" type="text/javascript" charset="utf-8"></script>
		<!-- <script src="https://unpkg.com/element-ui/lib/index.js" type="text/javascript" charset="utf-8"></script> -->
		<script src="../../../js/underscore.js" type="text/javascript" charset="utf-8"></script>
		 <script src="../../../js/es6-promise.js" type="text/javascript" charset="utf-8"></script>
		 <script src="../../../plugins/toastr/toastr.min.js"></script>
	    <script type="text/javascript" src="../../../plugins/layer/layer.min.js" ></script>
	    <script src="../../../js/util.js" type="text/javascript" charset="utf-8"></script>
	    <script src="../../../api/http-request.js" type="text/javascript" charset="utf-8"></script>
	    <script type="text/javascript" src="../../../api/jbsc-api.js" ></script>
		<script type="text/javascript" src="../component/canvas-progress.js" ></script>
		<script type="text/javascript">
			var httpData=GetRequest();
			var docInfo = JSON.parse(window.localStorage.getItem('docInfo'));
			var question=new Vue({
				el: "#app",
				data: {
					//数据结果
					progress:0,
					selectArr:[],
					screeningTitle:decodeURI(httpData['fliter_title']),
					screeningType:httpData['fliter_code'],
					screeningResidents:httpData['resident_code'],
					screeningResidentsName:decodeURI(httpData['resident_name']),
					sex:decodeURI(httpData['sex']),
					age:decodeURI(httpData['age']),
					doctorInfo:{code:docInfo.code},
					surveyStatus: httpData['surveyStatus']||'',
					questions:[],
					tizhongRecord:{},
					labelType:5,//问卷筛查labelType=5
					isAgain:(httpData['isAgain'] || 0),
					ascvdShow:'',
					ascvdS1:'',
					ascvdS2:'',
					ascvdS3:'',
					ascvdS4:'',
					shaowas:'',
				},
				mounted: function(){
					console.log('screeningTitle',this.screeningTitle)
					this.getHealth();
					this.getQuestion();
					this.getDoctorInfo()
				},
				methods: {
					getDoctorInfo:function(){
						var vm=this;
						var data={
							code:vm.doctorInfo.code
						}
						jbscAPI.doctorBaseinfo(data).then(function(res){
							if(res.status==200){
								vm.doctorInfo=res.data
							}else{
								top.layer.msg(res.msg, {icon: 5});
							}
						})
						
					},
					//计算选中个数,组装成后台接收格式
					selectItem:function(qst,select,num){
						var vm = this
						var isFlag=1
						if (qst.title == '抗栓药物其他名称' && vm.screeningTitle == '大肠癌筛查问卷(OB筛查)') {
							vm.selectArr.forEach(function(item, index) {
							if (item.thirdKey == 'ksDrugName1') {
							item.options.forEach(function(v, i) {
								if (v.comment == '其他') {
									isFlag = 0;
									return false;
								}
							});
							}
							});
  <head>
    <meta charset="UTF-8" />
    <title>筛选类型</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="renderer" content="webkit" />
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <meta name="keywords" content="筛选类型" />
    <meta name="description" content="筛选类型" />
    <link rel="shortcut icon" href="../../../favicon.ico" />
    <link rel="stylesheet" type="text/css" href="../../../css/bootstrap.min.css" />
    <link rel="stylesheet" type="text/css" href="../../../css/cross.css" />
    <link rel="stylesheet" type="text/css" href="../../../css/style.min.css" />
    <link href="../../../plugins/toastr/toastr.min.css" rel="stylesheet" />
    <link rel="stylesheet" href="../css/questionnaire.css" />
    <link rel="stylesheet" type="text/css" href="../../../css/element-ui.css" />
    <!-- <link rel="stylesheet" type="text/css" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css" /> -->
  </head>
  <body>
    <div class="ui-grid" id="app" style="align-items: flex-start" v-cloak>
      <div class="flex-box-item ptb20">
        <!--<div class="prompt-text">请认真填写本页面,方便医生进行综合评估【厦门i健康】</div>-->
        <div class="single-choice-question">
          <div class="question-title">问卷题目</div>
          <div class="question-content">
            <ul class="question-list">
              <li v-for="(qst,key,index) in questions">
                <p class="question-name" v-text="key+'、'+qst.question.title"></p>
                <div class="daan-list" v-if="qst.question.questionType!=2">
                  <lable class="label-block" v-for="opt in qst.option" @click="selectItem(qst.question,opt,index)">
                    <span class="pull-right" v-text="(opt.score || 0)+'分'" v-if="qst.isThird!=3"></span>
                    <template v-if="qst.isThird==3&&qst.question.thirdKey=='sex'">
                      <input
                        :type="qst.questionType==1?'checkbox':'radio'"
                        :checked="opt.thirdValue == sex"
                        :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')"
                        value="1" />
                      <i></i>
                      <span v-text="opt.content"></span>
                    </template>
                    <template v-if="qst.isThird==3&&qst.question.thirdKey=='acs'">
                      <input
                        :type="qst.questionType==1?'checkbox':'radio'"
                        :checked="opt.thirdValue == (ascvdShow?ascvdShow:ascvdS1)"
                        id="myInput1"
                        :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')"
                        value="1" />
                      <i></i>
                      <span v-text="opt.content"></span>
                    </template>
                    <template v-if="qst.isThird==3&&qst.question.thirdKey=='myocardialInfarct'">
                      <input
                        :type="qst.questionType==1?'checkbox':'radio'"
                        :checked="opt.thirdValue == (ascvdShow?ascvdShow:ascvdS2)"
                        id="myInput2"
                        :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')"
                        value="1" />
                      <i></i>
                      <span v-text="opt.content"></span>
                    </template>
                    <template v-if="qst.isThird==3&&qst.question.thirdKey=='ischemicStroke'">
                      <input
                        :type="qst.questionType==1?'checkbox':'radio'"
                        :checked="opt.thirdValue == (ascvdShow?ascvdShow:ascvdS3)"
                        id="myInput3"
                        :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')"
                        value="1" />
                      <i></i>
                      <span v-text="opt.content"></span>
                    </template>
                    <template v-if="qst.isThird==3&&qst.question.thirdKey=='seriousMedicalHistory'">
                      <input
                        :type="qst.questionType==1?'checkbox':'radio'"
                        :checked="opt.thirdValue == (ascvdShow?ascvdShow:ascvdS4)"
                        id="myInput4"
                        :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')"
                        value="1" />
                      <i></i>
                      <span v-text="opt.content"></span>
                    </template>
                    <template
                      v-if="qst.question.thirdKey!='sex'&&qst.question.thirdKey!='acs'&&qst.question.thirdKey!='myocardialInfarct'&&qst.question.thirdKey!='ischemicStroke'&&qst.question.thirdKey!='seriousMedicalHistory'">
                      <input
                        :type="qst.questionType==1||qst.question.questionType?'checkbox':'radio'"
                        v-if="qst.question.thirdKey!='sex'"
                        :name="'ques'+index+screeningType+(qst.questionType==1?'[]':'')"
                        value="1" />
                      <i></i>
                      <span v-text="opt.content"></span>
                    </template>
                  </lable>
                </div>
                <div v-else>
                  <template
                    v-if="(qst.isThird=='3' && qst.question.thirdKey == 'assessTime')||(qst.question.thirdKey == 'createDate'&&screeningTitle=='大肠癌筛查问卷(OB筛查)')||(qst.question.thirdKey == 'createDate'&&screeningTitle=='脑卒中风险评估(冠心病、脑卒中、肾病)')">
                    <div style="padding-left: 20px">
                      <el-date-picker
                        v-model="qst.question.content"
                        type="datetime"
                        format="yyyy-MM-dd HH:mm"
                        value-format="yyyy-MM-dd HH:mm"
                        placeholder="选择日期时间"
                        @change="changeContent(qst.question,qst.question.content)"></el-date-picker>
                    </div>
                  </template>
                  <template v-else>
                    <div
                      class="daan-list"
                      v-if="qst.isThird==3 && (qst.question.thirdKey == 'assessDoctor' || qst.question.thirdKey == 'assessOrgId'||(!shaowas&&qst.question.thirdKey == 'bmi'))">
                      <textarea class="wenjuan-textarea" disabled rows="2" v-model="qst.question.content"></textarea>
                    </div>
                    <div class="daan-list" v-else-if="qst.question.thirdKey != 'bmi'">
                      <textarea class="wenjuan-textarea" @keyup="changeContent(qst.question,qst.question.content,1)" rows="2" v-model="qst.question.content"></textarea>
                    </div>
                    <div class="daan-list" v-if="(shaowas&&qst.question.thirdKey == 'bmi')">
                      <textarea class="wenjuan-textarea" disabled rows="2" v-model="shaowas"></textarea>
                    </div>
                  </template>
                </div>
              </li>
            </ul>
          </div>
        </div>
      </div>
      <div class="w-250">
        <div class="base-info">
          <p class="f-16 mb0">基本信息</p>
          <div :class="`flex-box ${noswitch?'':'right-triangle'}`">
            <span class="w-70">类型</span>
            <a class="flex-box-item" :alt="screeningTitle" v-text="screeningTitle" @click="goBack">--</a>
          </div>
          <div :class="`flex-box ${noswitch?'':'right-triangle'}`">
            <span class="w-70">对象</span>
            <a class="flex-box-item" :alt="screeningResidentsName" v-text="screeningResidentsName" @click="goBack(1)">--</a>
          </div>
          <div class="flex-box">
            <span class="w-70">筛查人员</span>
            <div class="flex-box-item c-999" v-text="doctorInfo.name"></div>
          </div>
          <div class="flex-box" style="align-items: flex-start">
            <span class="w-70">体征记录</span>
            <div class="flex-box-item" v-if="tizhongRecord.value1 || tizhongRecord.value2">
              <p v-if="tizhongRecord.value1">
                体重
                <input type="number" step="0.1" readonly="readonly" :value="tizhongRecord.value1" />
                kg
              </p>
              <p class="mb0" v-if="tizhongRecord.value2">
                身高
                <input type="number" step="0.1" readonly="readonly" :value="tizhongRecord.value2" />
                cm
              </p>
            </div>
            <div class="flex-box-item" v-else>暂无体征</div>
          </div>
        </div>
							// 如果没有勾选“其他”选项,提示并返回
							if (isFlag) {
								qst.content = '';  // 清空当前输入的内容
							this.$message.error('请先勾选抗栓药物名称的其他选项');
							return false;
							}
							}
						if(vm.ascvdShow) {
							if(select.thirdKey == 'acs' || select.thirdKey == 'myocardialInfarct' || select.thirdKey == 'ischemicStroke' || select.thirdKey == 'seriousMedicalHistory') {
								return false
							}
						}
						var data={
							qstCode:qst.code,
							type:qst.questionType,
							content:qst.content,
							thirdKey:qst.thirdKey
						}
						var options=[];
						var ls = []
						var lsTo = []
						if(select){
							if(qst.questionType == '1') {
						// 处理多选题
						if (!qst.selectedOptions) {
						qst.selectedOptions = [];
						}
        <div class="completion-of-progress">
          <p class="f16 mb0">完成情况</p>
          <div class="canvas-box">
            <canvas-progress :progress="progress" ref="progress"></canvas-progress>
            <p class="progress-number">
              <span>已完成</span>
            </p>
          </div>
        </div>
						var optionIndex = qst.selectedOptions.findIndex(item => item.optionCode == select.code);
        <div class="btn-group-bottom">
          <button class="btn submit-btn" @click="save">提交</button>
          <button class="btn btn-exit" @click="signOut">退出</button>
        </div>
      </div>
    </div>
    <script type="text/javascript" src="../../../plugins/echarts/3.8.5/echarts.min.js"></script>
    <script src="../../../js/vue.js" type="text/javascript" charset="utf-8"></script>
    <script src="../../../js/jquery-2.2.4.js" type="text/javascript" charset="utf-8"></script>
    <script src="../../../component/common/event-bus.js"></script>
    <script src="../../../js/element-ui.js" type="text/javascript" charset="utf-8"></script>
    <!-- <script src="https://unpkg.com/element-ui/lib/index.js" type="text/javascript" charset="utf-8"></script> -->
    <script src="../../../js/underscore.js" type="text/javascript" charset="utf-8"></script>
    <script src="../../../js/es6-promise.js" type="text/javascript" charset="utf-8"></script>
    <script src="../../../plugins/toastr/toastr.min.js"></script>
    <script type="text/javascript" src="../../../plugins/layer/layer.min.js"></script>
    <script src="../../../js/util.js" type="text/javascript" charset="utf-8"></script>
    <script src="../../../api/http-request.js" type="text/javascript" charset="utf-8"></script>
    <script type="text/javascript" src="../../../api/jbsc-api.js"></script>
    <script type="text/javascript" src="../component/canvas-progress.js"></script>
    <script type="text/javascript">
      var httpData = GetRequest()
      var docInfo = JSON.parse(window.localStorage.getItem('docInfo'))
      var question = new Vue({
        el: '#app',
        data: {
          //数据结果
          progress: 0,
          selectArr: [],
          screeningTitle: decodeURI(httpData['fliter_title']),
          screeningType: httpData['fliter_code'],
          screeningResidents: httpData['resident_code'],
          screeningResidentsName: decodeURI(httpData['resident_name']),
          sex: decodeURI(httpData['sex']),
          age: decodeURI(httpData['age']),
          doctorInfo: { code: docInfo.code },
          surveyStatus: httpData['surveyStatus'] || '',
          questions: [],
          tizhongRecord: {},
          labelType: 5, //问卷筛查labelType=5
          isAgain: httpData['isAgain'] || 0,
          ascvdShow: '',
          ascvdS1: '',
          ascvdS2: '',
          ascvdS3: '',
          ascvdS4: '',
          shaowas: '',
          noswitch: httpData['noswitch']
        },
        mounted: function () {
          console.log('screeningTitle', this.screeningTitle)
          this.getHealth()
          this.getQuestion()
          this.getDoctorInfo()
        },
        methods: {
          getDoctorInfo: function () {
            var vm = this
            var data = {
              code: vm.doctorInfo.code
            }
            jbscAPI.doctorBaseinfo(data).then(function (res) {
              if (res.status == 200) {
                vm.doctorInfo = res.data
              } else {
                top.layer.msg(res.msg, { icon: 5 })
              }
            })
          },
          //计算选中个数,组装成后台接收格式
          selectItem: function (qst, select, num) {
            var vm = this
            var isFlag = 1
            if (qst.title == '抗栓药物其他名称' && vm.screeningTitle == '大肠癌筛查问卷(OB筛查)') {
              vm.selectArr.forEach(function (item, index) {
                if (item.thirdKey == 'ksDrugName1') {
                  item.options.forEach(function (v, i) {
                    if (v.comment == '其他') {
                      isFlag = 0
                      return false
                    }
                  })
                }
              })
              // 如果没有勾选“其他”选项,提示并返回
              if (isFlag) {
                qst.content = '' // 清空当前输入的内容
                this.$message.error('请先勾选抗栓药物名称的其他选项')
                return false
              }
            }
            if (vm.ascvdShow) {
              if (select.thirdKey == 'acs' || select.thirdKey == 'myocardialInfarct' || select.thirdKey == 'ischemicStroke' || select.thirdKey == 'seriousMedicalHistory') {
                return false
              }
            }
            var data = {
              qstCode: qst.code,
              type: qst.questionType,
              content: qst.content,
              thirdKey: qst.thirdKey
            }
            var options = []
            var ls = []
            var lsTo = []
            if (select) {
              if (qst.questionType == '1') {
                // 处理多选题
                if (!qst.selectedOptions) {
                  qst.selectedOptions = []
                }
						if (optionIndex > -1) {
						// 如果已经选中,则取消选择
						qst.selectedOptions.splice(optionIndex, 1);
						} else {
						// 如果未选中,则添加选项
						qst.selectedOptions.push({
						optionCode:select.code,
						comment:select.content,
						score:select.score,
						thirdKey:select.thirdKey,
						thirdValue:select.thirdValue
						});
						}
						options = qst.selectedOptions; // 将选中的所有选项赋值给options
						}else{
		
									options=[{
										optionCode:select.code,
										comment:select.content,
										score:select.score,
										thirdKey:select.thirdKey,
										thirdValue:select.thirdValue
									}]
                var optionIndex = qst.selectedOptions.findIndex(item => item.optionCode == select.code)
	                          }
							if(select.thirdKey=="ascvd"&&select.thirdValue==0) {
								this.ascvdShow = '0'
								vm.spliceFunction()
								for(var i in this.questions) {
									if(this.questions[i].question.thirdKey == 'acs' || this.questions[i].question.thirdKey == 'myocardialInfarct' || this.questions[i].question.thirdKey == 'ischemicStroke' || this.questions[i].question.thirdKey == 'seriousMedicalHistory') {
										var s = this.questions[i].option[1]
										var v = this.questions[i].question
										ls.push({
											qstCode:v.code,
											type:v.questionType,
											thirdKey:v.thirdKey,
											options:[{
												optionCode:s.code,
												comment:s.content,
												score:s.score,
												thirdKey:s.thirdKey,
												thirdValue:s.thirdValue
											}],
										})
									}
								}
								document.getElementById("myInput1").disabled = true;
								document.getElementById("myInput2").disabled = true;
								document.getElementById("myInput3").disabled = true;
								document.getElementById("myInput4").disabled = true;
							}else if(select.thirdKey=="ascvd"&&select.thirdValue==1){
								this.ascvdShow = ''
								this.ascvdS1 = ''
								this.ascvdS2 = ''
								this.ascvdS3 = ''
								this.ascvdS4 = ''
								document.getElementById("myInput1").disabled = false;
								document.getElementById("myInput2").disabled = false;
								document.getElementById("myInput3").disabled = false;
								document.getElementById("myInput4").disabled = false;
								ls = []
								vm.spliceFunction()
								
							}
							if(select.thirdKey == 'acs') {vm.ascvdS1 = select.thirdValue}
							if(select.thirdKey == 'myocardialInfarct') {vm.ascvdS2 = select.thirdValue}
							if(select.thirdKey == 'ischemicStroke') {vm.ascvdS3 = select.thirdValue}
							if(select.thirdKey == 'seriousMedicalHistory') {vm.ascvdS4 = select.thirdValue}
						}
						if(num && qst.thirdKey == 'weight' || qst.thirdKey == 'height') {
							var weight = ''
							var height = ''
							for(var i in vm.questions){
								if(vm.questions[i].question.thirdKey == "weight") {
									weight = vm.questions[i].question.content
								}
								if(vm.questions[i].question.thirdKey == "height") {
									height = vm.questions[i].question.content
								}
								
							}
							var w = qst.thirdKey == 'weight'?qst.content:weight
							var h = qst.thirdKey == 'height'?qst.content:height / 100
							var s = (w / (h * h)).toFixed(2)
							vm.selectArr.forEach(function(v,i){
								if(v.thirdKey == 'bmi') {
									vm.selectArr.splice(i,1)
								}
							})
							for(var i in vm.questions) {
								if(vm.questions[i].question.thirdKey == "bmi") {
									lsTo.push({
										qstCode:vm.questions[i].question.code,
										type:vm.questions[i].question.questionType,
										content:s,
										thirdKey:vm.questions[i].question.thirdKey,
										options:[]
									})
									vm.shaowas = s
									// if(w && h) {
									// 	vm.shaowas = s
									// }
									// console.log(vm.questions[i].question.content,"0809")
									// vm.questions[i].question.content = ''
									// console.log(vm.questions[i].question.content,"00000---")
								}
							}
						}
						
						data.options=options;
						console.log('111111111111xsssssssss')
						var oldLen = this.selectArr.length;
						this.selectArr = _.filter(this.selectArr,function(o) {
								return o.qstCode !=data.qstCode;
						}) || [];
						this.selectArr = this.selectArr.concat(lsTo)
						this.selectArr = this.selectArr.concat(ls)
						this.selectArr.push(data);
						
						console.log(this.selectArr,'this.selectArr')
						var len=this.selectArr.length;
//						var questions=Object.values(this.questions)
                        var questions = _.toArray(this.questions)
						var allLen=questions.length;
						var progress=len===allLen?100:((len/allLen)*100);
						if(select&&select.thirdKey=="ascvd") {
							this.$refs.progress.dataFunction(progress)
						}else{
							this.progress=progress;
						}
					},
					spliceFunction:function() {
						var vm = this
						vm.selectArr.forEach(function(v,i){
							if(v.thirdKey == 'acs') {
								vm.selectArr.splice(i,1)
							}
						})
						vm.selectArr.forEach(function(v,i){
							if(v.thirdKey == 'myocardialInfarct') {
								vm.selectArr.splice(i,1)
							}
						})
						vm.selectArr.forEach(function(v,i){
							if(v.thirdKey == 'ischemicStroke') {
								vm.selectArr.splice(i,1)
							}
						})
						vm.selectArr.forEach(function(v,i){
							if(v.thirdKey == 'seriousMedicalHistory') {
								vm.selectArr.splice(i,1)
							}
						})
					},
					signOut:function(){
						var index = top.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
						var current=top.layer.confirm('问卷还未提交,确定要关闭?', {
						  btn: ['关闭','取消'] //按钮
						}, function(){
							top.layer.closeAll(); //再执行关闭
						}, function(){
							top.layer.close(current); //再执行关闭
						});
					},
					changeContent:function(qst,content,num){
						if(!content) return ;
						this.selectItem(qst,'',num)
					},
					getQuestion:function(){
						var vm=this
						var data={
			    			surveyTemplateCode: vm.screeningType
			    		}
			    		jbscAPI.getAllQuestions(data).then(function(res){
			    			if(res.status==200){
								// console.log(res.data,"res.data")
								for(var i in res.data) {
									if(res.data[i].isThird == 3){
										if (res.data[i].question.questionType == '1') {
                                       res.data[i].question.selectedOptions = []; // 初始化多选项的数组
                if (optionIndex > -1) {
                  // 如果已经选中,则取消选择
                  qst.selectedOptions.splice(optionIndex, 1)
                } else {
                  // 如果未选中,则添加选项
                  qst.selectedOptions.push({
                    optionCode: select.code,
                    comment: select.content,
                    score: select.score,
                    thirdKey: select.thirdKey,
                    thirdValue: select.thirdValue
                  })
                }
                options = qst.selectedOptions // 将选中的所有选项赋值给options
              } else {
                options = [
                  {
                    optionCode: select.code,
                    comment: select.content,
                    score: select.score,
                    thirdKey: select.thirdKey,
                    thirdValue: select.thirdValue
                  }
                ]
              }
              if (select.thirdKey == 'ascvd' && select.thirdValue == 0) {
                this.ascvdShow = '0'
                vm.spliceFunction()
                for (var i in this.questions) {
                  if (
                    this.questions[i].question.thirdKey == 'acs' ||
                    this.questions[i].question.thirdKey == 'myocardialInfarct' ||
                    this.questions[i].question.thirdKey == 'ischemicStroke' ||
                    this.questions[i].question.thirdKey == 'seriousMedicalHistory'
                  ) {
                    var s = this.questions[i].option[1]
                    var v = this.questions[i].question
                    ls.push({
                      qstCode: v.code,
                      type: v.questionType,
                      thirdKey: v.thirdKey,
                      options: [
                        {
                          optionCode: s.code,
                          comment: s.content,
                          score: s.score,
                          thirdKey: s.thirdKey,
                          thirdValue: s.thirdValue
                        }
                      ]
                    })
                  }
                }
                document.getElementById('myInput1').disabled = true
                document.getElementById('myInput2').disabled = true
                document.getElementById('myInput3').disabled = true
                document.getElementById('myInput4').disabled = true
              } else if (select.thirdKey == 'ascvd' && select.thirdValue == 1) {
                this.ascvdShow = ''
                this.ascvdS1 = ''
                this.ascvdS2 = ''
                this.ascvdS3 = ''
                this.ascvdS4 = ''
                document.getElementById('myInput1').disabled = false
                document.getElementById('myInput2').disabled = false
                document.getElementById('myInput3').disabled = false
                document.getElementById('myInput4').disabled = false
                ls = []
                vm.spliceFunction()
              }
              if (select.thirdKey == 'acs') {
                vm.ascvdS1 = select.thirdValue
              }
              if (select.thirdKey == 'myocardialInfarct') {
                vm.ascvdS2 = select.thirdValue
              }
              if (select.thirdKey == 'ischemicStroke') {
                vm.ascvdS3 = select.thirdValue
              }
              if (select.thirdKey == 'seriousMedicalHistory') {
                vm.ascvdS4 = select.thirdValue
              }
            }
            if ((num && qst.thirdKey == 'weight') || qst.thirdKey == 'height') {
              var weight = ''
              var height = ''
              for (var i in vm.questions) {
                if (vm.questions[i].question.thirdKey == 'weight') {
                  weight = vm.questions[i].question.content
                }
                if (vm.questions[i].question.thirdKey == 'height') {
                  height = vm.questions[i].question.content
                }
              }
              var w = qst.thirdKey == 'weight' ? qst.content : weight
              var h = qst.thirdKey == 'height' ? qst.content : height / 100
              var s = (w / (h * h)).toFixed(2)
              vm.selectArr.forEach(function (v, i) {
                if (v.thirdKey == 'bmi') {
                  vm.selectArr.splice(i, 1)
                }
              })
              for (var i in vm.questions) {
                if (vm.questions[i].question.thirdKey == 'bmi') {
                  lsTo.push({
                    qstCode: vm.questions[i].question.code,
                    type: vm.questions[i].question.questionType,
                    content: s,
                    thirdKey: vm.questions[i].question.thirdKey,
                    options: []
                  })
                  vm.shaowas = s
                  // if(w && h) {
                  // 	vm.shaowas = s
                  // }
                  // console.log(vm.questions[i].question.content,"0809")
                  // vm.questions[i].question.content = ''
                  // console.log(vm.questions[i].question.content,"00000---")
                }
              }
            }
            data.options = options
            console.log('111111111111xsssssssss')
            var oldLen = this.selectArr.length
            this.selectArr =
              _.filter(this.selectArr, function (o) {
                return o.qstCode != data.qstCode
              }) || []
            this.selectArr = this.selectArr.concat(lsTo)
            this.selectArr = this.selectArr.concat(ls)
            this.selectArr.push(data)
            console.log(this.selectArr, 'this.selectArr')
            var len = this.selectArr.length
            //						var questions=Object.values(this.questions)
            var questions = _.toArray(this.questions)
            var allLen = questions.length
            var progress = len === allLen ? 100 : (len / allLen) * 100
            if (select && select.thirdKey == 'ascvd') {
              this.$refs.progress.dataFunction(progress)
            } else {
              this.progress = progress
            }
          },
          spliceFunction: function () {
            var vm = this
            vm.selectArr.forEach(function (v, i) {
              if (v.thirdKey == 'acs') {
                vm.selectArr.splice(i, 1)
              }
            })
            vm.selectArr.forEach(function (v, i) {
              if (v.thirdKey == 'myocardialInfarct') {
                vm.selectArr.splice(i, 1)
              }
            })
            vm.selectArr.forEach(function (v, i) {
              if (v.thirdKey == 'ischemicStroke') {
                vm.selectArr.splice(i, 1)
              }
            })
            vm.selectArr.forEach(function (v, i) {
              if (v.thirdKey == 'seriousMedicalHistory') {
                vm.selectArr.splice(i, 1)
              }
            })
          },
          signOut: function () {
            var index = top.layer.getFrameIndex(window.name) //先得到当前iframe层的索引
            var current = top.layer.confirm(
              '问卷还未提交,确定要关闭?',
              {
                btn: ['关闭', '取消'] //按钮
              },
              function () {
                top.layer.closeAll() //再执行关闭
              },
              function () {
                top.layer.close(current) //再执行关闭
              }
            )
          },
          changeContent: function (qst, content, num) {
            if (!content) return
            this.selectItem(qst, '', num)
          },
          getQuestion: function () {
            var vm = this
            var data = {
              surveyTemplateCode: vm.screeningType
            }
            jbscAPI.getAllQuestions(data).then(function (res) {
              if (res.status == 200) {
                // console.log(res.data,"res.data")
                for (var i in res.data) {
                  if (res.data[i].isThird == 3) {
                    if (res.data[i].question.questionType == '1') {
                      res.data[i].question.selectedOptions = [] // 初始化多选项的数组
                    }
                    if (res.data[i].question.thirdKey == 'assessTime') {
                      res.data[i].question.content = new Date()
                    }
                    if (res.data[i].option.length != 0) {
                      res.data[i].question.thirdKey = res.data[i].option[0].thirdKey
                    }
                    if (res.data[i].question.thirdKey == 'assessDoctor') {
                      res.data[i].question.content = docInfo.name
                    }
                    if (res.data[i].question.thirdKey == 'assessOrgId') {
                      res.data[i].question.content = docInfo.hospitalName
                    }
                    if (res.data[i].question.thirdKey == 'name') {
                      res.data[i].question.content = vm.screeningResidentsName
                    }
                    if (res.data[i].question.thirdKey == 'sex') {
                      res.data[i].question.content = vm.sex
                    }
                    if (res.data[i].question.thirdKey == 'age') {
                      res.data[i].question.content = vm.age
                    }
                  }
                  if (res.data[i].question.thirdKey == 'belongCommunity') {
                    res.data[i].question.content = docInfo.hospitalName
                  }
                  if (res.data[i].question.thirdKey == 'doctorName') {
                    res.data[i].question.content = docInfo.name
                  }
                  if (res.data[i].question.thirdKey == 'doctorPhoneNo') {
                    res.data[i].question.content = docInfo.mobile
                  }
                  if (res.data[i].question.thirdKey == 'userName') {
                    res.data[i].question.content = decodeURI(httpData.resident_name)
                  }
                  if (res.data[i].question.thirdKey == 'idNo') {
                    res.data[i].question.content = httpData.idcard
                  }
                  if (res.data[i].question.thirdKey == 'phoneNo') {
                    res.data[i].question.content = httpData.mobile
                  }
                  if (res.data[i].question.thirdKey == 'assessDoctor') {
                    res.data[i].question.content = docInfo.name
                  }
                  if (res.data[i].question.thirdKey == 'assessOrgId') {
                    res.data[i].question.content = docInfo.hospitalName
                  }
                  if (res.data[i].question.thirdKey == 'age') {
                    res.data[i].question.content = httpData.age
                  }
                  if (res.data[i].question.title == '性别') {
                    var index = vm.sex == 1 ? '0' : '1'
                    console.log('==================aaaaaaaaaa', res.data[i].question, res.data[i].option[index])
                    vm.selectItem(res.data[i].question, res.data[i].option[index])
                  }
                  if (res.data[i].question.thirdKey == 'createDate') {
                    res.data[i].question.content = new Date().format('yyyy-MM-dd hh:mm:ss')
                  }
                  if (res.data[i].question.thirdKey == 'assessTime') {
                    res.data[i].question.content = new Date().format('yyyy-MM-dd hh:mm:ss')
                  }
                  if (res.data[i].question.thirdKey == 'sex' && (vm.screeningTitle == '大肠癌筛查问卷(OB筛查)' || vm.screeningTitle == '脑卒中风险评估(冠心病、脑卒中、肾病)')) {
                    var index = vm.sex == 1 ? '0' : '1'
                    vm.selectItem(res.data[i].question, res.data[i].option[index])
                  }
                }
                console.log(res.data, 'ssssssssslllllllllll')
                vm.questions = res.data
                for (var i in res.data) {
                  if (res.data[i].isThird == 3) {
                    if (res.data[i].question.thirdKey == 'assessTime') {
                      vm.changeContent(res.data[i].question, new Date().format('yyyy-MM-dd HH:mm'))
                    }
                    if (res.data[i].question.thirdKey == 'assessDoctor') {
                      vm.changeContent(res.data[i].question, docInfo.name)
                    }
                    if (res.data[i].question.thirdKey == 'assessOrgId') {
                      vm.changeContent(res.data[i].question, docInfo.hospitalName)
                    }
                    if (res.data[i].question.thirdKey == 'name') {
                      vm.changeContent(res.data[i].question, vm.screeningResidentsName)
                    }
                    if (res.data[i].question.thirdKey == 'age') {
                      vm.changeContent(res.data[i].question, vm.age)
                    }
                    if (res.data[i].question.thirdKey == 'sex') {
                      var index = vm.sex == 1 ? '0' : '1'
                      console.log('------111111000000000', res.data[i].question, res.data[i].option[index])
                      vm.selectItem(res.data[i].question, res.data[i].option[index])
                    }
                  }
                }
              }
            })
          },
          getHealth: function () {
            var vm = this
            jbscAPI
              .listMedical({
                patient: vm.screeningResidents,
                pageIndex: 1,
                pageSize: 1
              })
              .then(function (v) {
                if (v.status == 200) {
                  if (v.list[0]) {
                    jbscAPI
                      .findMedicalDetail({
                        medicalNo: v.list[0].medicalNo
                      })
                      .then(function (res) {
                        if (res.status == 200) {
                          var data = res.medical_detail
                          for (var i in vm.questions) {
                            if (vm.questions[i].question.thirdKey == 'height') {
                              vm.questions[i].question.content = data.height
                              vm.changeContent(vm.questions[i].question, data.height)
                            }
                            if (vm.questions[i].question.thirdKey == 'weight') {
                              vm.questions[i].question.content = data.weight
                              vm.changeContent(vm.questions[i].question, data.weight)
                            }
                            if (vm.questions[i].question.thirdKey == 'bmi') {
                              if (data.height && data.weight) {
                                var w = data.weight
                                var h = data.height / 100
                                var s = (w / (h * h)).toFixed(2)
                                vm.questions[i].question.content = s
                                vm.shaowas = s
                                vm.changeContent(vm.questions[i].question, s)
                              }
                            }
                            if (vm.questions[i].question.thirdKey == 'systolicPressure') {
                              vm.questions[i].question.content = data.bloodPressureRigthU
                              vm.changeContent(vm.questions[i].question, data.bloodPressureRigthU)
                            }
                            if (vm.questions[i].question.thirdKey == 'diastolicPressure') {
                              vm.questions[i].question.content = data.bloodPressureRigthD
                              vm.changeContent(vm.questions[i].question, data.bloodPressureRigthD)
                            }
                            if (vm.questions[i].question.thirdKey == 'bpU') {
                              vm.questions[i].question.content = data.bloodPressureLeftU || data.bloodPressureRigthU
                              vm.changeContent(vm.questions[i].question, data.bloodPressureLeftU || data.bloodPressureRigthU)
                            }
                            if (vm.questions[i].question.thirdKey == 'bpD') {
                              vm.questions[i].question.content = data.bloodPressureLeftD || data.bloodPressureRigthD
                              vm.changeContent(vm.questions[i].question, data.bloodPressureLeftD || data.bloodPressureRigthD)
                            }
                            if (vm.questions[i].question.thirdKey == 'glycolatedHemoglobin') {
                              vm.questions[i].question.content = data.glycolatedHemoglobin
                              vm.changeContent(vm.questions[i].question, data.glycolatedHemoglobin)
                            }
                            if (vm.questions[i].question.thirdKey == 'fbg') {
                              vm.questions[i].question.content = data.fastingPlasmaGlucoseL
                              vm.changeContent(vm.questions[i].question, data.fastingPlasmaGlucoseL)
                            }
                            if (vm.questions[i].question.thirdKey == 'bloodPotassium') {
                              vm.questions[i].question.content = data.renalFunctionBloodPotassium
                              vm.changeContent(vm.questions[i].question, data.renalFunctionBloodPotassium)
                            }
                            if (vm.questions[i].question.thirdKey == 'renalFunctionCreatinine') {
                              vm.questions[i].question.content = data.renalFunctionCreatinine
                              vm.changeContent(vm.questions[i].question, data.renalFunctionCreatinine)
                            }
                          }
                        }
                      })
                  } else {
                    var data = {
                      patient: vm.screeningResidents
                    }
                    jbscAPI.getHealth(data).then(function (res) {
                      if (res.status == 200) {
                        vm.tizhongRecord =
                          _.find(res.data, function (o) {
                            return o.type == '3'
                          }) || {}
                        for (var i in vm.questions) {
                          if (vm.questions[i].question.thirdKey == 'height') {
                            vm.questions[i].question.content = vm.tizhongRecord.value2
                            vm.changeContent(vm.questions[i].question, vm.tizhongRecord.value2)
                          }
                          if (vm.questions[i].question.thirdKey == 'weight') {
                            vm.questions[i].question.content = vm.tizhongRecord.value1
                            vm.changeContent(vm.questions[i].question, vm.tizhongRecord.value1)
                          }
                          if (vm.questions[i].question.thirdKey == 'systolicPressure') {
                            vm.questions[i].question.content = res.data.xy.value1
                            vm.changeContent(vm.questions[i].question, res.data.xy.value1)
                          }
                          if (vm.questions[i].question.thirdKey == 'diastolicPressure') {
                            vm.questions[i].question.content = res.data.xy.value2
                            vm.changeContent(vm.questions[i].question, res.data.xy.value2)
                          }
                          if (vm.questions[i].question.thirdKey == 'bmi') {
                            if (vm.tizhongRecord.value2 && vm.tizhongRecord.value1) {
                              var w = vm.tizhongRecord.value1
                              var h = vm.tizhongRecord.value2 / 100
                              var s = (w / (h * h)).toFixed(2)
                              vm.questions[i].question.content = s
                              vm.shaowas = s
                              vm.changeContent(vm.questions[i].question, s)
                            }
                          }
                        }
                      } else {
                        top.layer.msg(res.msg, { icon: 5 })
                      }
                    })
                  }
                }
              })
          },
          save: function () {
            console.log('2222221sssssssssssssssss', this.selectArr)
            var vm = this
            if (vm.progress != 100) {
              top.layer.msg('问卷还未全部填写', { icon: 5 })
              return
            }
            var loadding = top.layer.load(0, { shade: false }) //0代表加载的风格,支持0-2
            vm.selectArr.forEach(function (v) {
              if (v.thirdKey == 'assessTime') {
                v.content = new Date(v.content).format('yyyy-MM-dd HH:mm')
              }
            })
            var data = {
              patientCode: vm.screeningResidents,
              labelType: vm.labelType,
              isAgain: vm.isAgain,
              source: 1,
              surveyStatus: vm.surveyStatus,
              jsonData: JSON.stringify({
                surveyCode: vm.screeningType,
                questions: vm.selectArr
              })
            }
            jbscAPI.saveAnswer(data).then(function (res) {
              top.layer.close(loadding)
              if (res.status == 200) {
                if (vm.questions[1].isThird == 3) {
                  top.layer.open({
                    type: 2,
                    //				  offset: ['100px'], //右下角弹出
                    area: ['568px', '100%'],
                    shade: 0.5,
                    title: '查看筛选结果',
                    fixed: true, //不固定
                    maxmin: true,
                    closeBtn: 1,
                    shift: 5,
                    shadeClose: false, //点击遮罩关闭层
                    content: '../../jbsc/html/view_screening_results.html?resultCode=' + res.data,
                    end: function () {
                      var index = top.layer.getFrameIndex(window.name) //先得到当前iframe层的索引
                      parent.eventBuss.$emit('guan_results', index)
                    }
                  })
                } else {
                  top.layer.open({
                    type: 2,
                    area: ['820px', '648px'],
                    shade: 0.5,
                    title: '筛选统计',
                    fixed: true, //不固定
                    maxmin: true,
                    closeBtn: 1,
                    shift: 5,
                    shadeClose: false, //点击遮罩关闭层
                    content: '../../jbsc/html/filter_result.html?code=' + res.data + '&filter_type=' + vm.screeningType
                  })
                }
										if(res.data[i].question.thirdKey == 'assessTime') {
											res.data[i].question.content = new Date()
										}
										if(res.data[i].option.length!=0){
											res.data[i].question.thirdKey = res.data[i].option[0].thirdKey
										}
										if(res.data[i].question.thirdKey == 'assessDoctor') {
											res.data[i].question.content = docInfo.name
										}
										if(res.data[i].question.thirdKey == 'assessOrgId') {
											res.data[i].question.content = docInfo.hospitalName
										}
										if(res.data[i].question.thirdKey == 'name') {
											res.data[i].question.content = vm.screeningResidentsName
										} 
										if(res.data[i].question.thirdKey == 'sex') {
											res.data[i].question.content = vm.sex
										} 
										if(res.data[i].question.thirdKey == 'age') {
											res.data[i].question.content = vm.age
										} 
										
									}
									if(res.data[i].question.thirdKey == 'belongCommunity') {
											res.data[i].question.content = docInfo.hospitalName
										}
									if(res.data[i].question.thirdKey == 'doctorName') {
											res.data[i].question.content = docInfo.name
										}	
									if(res.data[i].question.thirdKey == 'doctorPhoneNo') {
											res.data[i].question.content = docInfo.mobile
										}
									if(res.data[i].question.thirdKey == 'userName') {
											res.data[i].question.content =decodeURI(httpData.resident_name)
										}
										if(res.data[i].question.thirdKey == 'idNo') {
											res.data[i].question.content =httpData.idcard
										}
										if(res.data[i].question.thirdKey == 'phoneNo') {
											res.data[i].question.content =httpData.mobile
										}
										if(res.data[i].question.thirdKey == 'assessDoctor') {
											res.data[i].question.content=docInfo.name
										}
										if(res.data[i].question.thirdKey == 'assessOrgId') {
											res.data[i].question.content=docInfo.hospitalName
										}
										if(res.data[i].question.thirdKey == 'age') {
											res.data[i].question.content =httpData.age
										}
										if(res.data[i].question.title == "性别") {
											var index = vm.sex==1?"0":'1'
											console.log(
												'==================aaaaaaaaaa',res.data[i].question,res.data[i].option[index]
											)
											vm.selectItem(res.data[i].question,res.data[i].option[index])
										}
										if(res.data[i].question.thirdKey == "createDate") {
											res.data[i].question.content =new Date().format('yyyy-MM-dd hh:mm:ss')
										}
										if(res.data[i].question.thirdKey == "assessTime") {
											res.data[i].question.content =new Date().format('yyyy-MM-dd hh:mm:ss')
										}
								
										if(res.data[i].question.thirdKey == 'sex'&&(vm.screeningTitle=='大肠癌筛查问卷(OB筛查)'||vm.screeningTitle=='脑卒中风险评估(冠心病、脑卒中、肾病)')) {
											var index = vm.sex==1?"0":'1'
											vm.selectItem(res.data[i].question,res.data[i].option[index])
										}  	 	 		
								}
								console.log(res.data,'ssssssssslllllllllll')
								vm.questions = res.data;
								
								for(var i in res.data) {
									if(res.data[i].isThird == 3){
										if(res.data[i].question.thirdKey == 'assessTime') {
											vm.changeContent(res.data[i].question,new Date().format('yyyy-MM-dd HH:mm'))
										}
										if(res.data[i].question.thirdKey == 'assessDoctor') {
											vm.changeContent(res.data[i].question,docInfo.name)
										}
										if(res.data[i].question.thirdKey == 'assessOrgId') {
											vm.changeContent(res.data[i].question,docInfo.hospitalName)
										}
										if(res.data[i].question.thirdKey == 'name') {
											vm.changeContent(res.data[i].question,vm.screeningResidentsName)
										} 
										if(res.data[i].question.thirdKey == 'age') {
											vm.changeContent(res.data[i].question,vm.age)
										} 
										if(res.data[i].question.thirdKey == 'sex') {
											var index = vm.sex==1?"0":'1'
											console.log('------111111000000000',res.data[i].question,res.data[i].option[index])
											vm.selectItem(res.data[i].question,res.data[i].option[index])
										} 
									}
								}
							}
			    		})
					},
					getHealth:function(){
						var vm=this;
						jbscAPI.listMedical({
							patient: vm.screeningResidents,
							pageIndex: 1,
							pageSize: 1
						}).then(function(v){
							if(v.status == 200) {
								if(v.list[0]) {
									jbscAPI.findMedicalDetail({
										medicalNo: v.list[0].medicalNo
									}).then(function(res){
										if(res.status == 200) {
											var data = res.medical_detail
											for(var i in vm.questions) {
												if(vm.questions[i].question.thirdKey == "height") {
													vm.questions[i].question.content = data.height
													vm.changeContent(vm.questions[i].question,data.height)
												} 
												if(vm.questions[i].question.thirdKey == "weight") {
													vm.questions[i].question.content = data.weight
													vm.changeContent(vm.questions[i].question,data.weight)
												}
												if(vm.questions[i].question.thirdKey == "bmi") {
													if(data.height && data.weight) {
														var w = data.weight
														var h = data.height / 100
														var s = (w / (h * h)).toFixed(2)
														vm.questions[i].question.content = s
														vm.shaowas = s
														vm.changeContent(vm.questions[i].question,s)
													}
												}
												
												if(vm.questions[i].question.thirdKey == "systolicPressure") {
													vm.questions[i].question.content = data.bloodPressureRigthU
													vm.changeContent(vm.questions[i].question,data.bloodPressureRigthU)
												}
												if(vm.questions[i].question.thirdKey == "diastolicPressure") {
													vm.questions[i].question.content = data.bloodPressureRigthD
													vm.changeContent(vm.questions[i].question,data.bloodPressureRigthD)
												}
												if(vm.questions[i].question.thirdKey == "bpU") {
													vm.questions[i].question.content = data.bloodPressureLeftU || data.bloodPressureRigthU
													vm.changeContent(vm.questions[i].question,data.bloodPressureLeftU || data.bloodPressureRigthU)
												}
												if(vm.questions[i].question.thirdKey == "bpD") {
													vm.questions[i].question.content = data.bloodPressureLeftD || data.bloodPressureRigthD
													vm.changeContent(vm.questions[i].question,data.bloodPressureLeftD || data.bloodPressureRigthD)
												}
												if(vm.questions[i].question.thirdKey == "glycolatedHemoglobin") {
													vm.questions[i].question.content = data.glycolatedHemoglobin
													vm.changeContent(vm.questions[i].question,data.glycolatedHemoglobin)
												}
												if(vm.questions[i].question.thirdKey == "fbg") {
													vm.questions[i].question.content = data.fastingPlasmaGlucoseL
													vm.changeContent(vm.questions[i].question,data.fastingPlasmaGlucoseL)
												}
												if(vm.questions[i].question.thirdKey == "bloodPotassium") {
													vm.questions[i].question.content = data.renalFunctionBloodPotassium
													vm.changeContent(vm.questions[i].question,data.renalFunctionBloodPotassium)
												}
												if(vm.questions[i].question.thirdKey == "renalFunctionCreatinine") {
													vm.questions[i].question.content = data.renalFunctionCreatinine
													vm.changeContent(vm.questions[i].question,data.renalFunctionCreatinine)
												}
											}
											 
										}
									})
								}else{
									var data={
										patient: vm.screeningResidents
									}
									jbscAPI.getHealth(data).then(function(res){
										if(res.status == 200) {
											vm.tizhongRecord = _.find(res.data,function(o) {
												return o.type =="3";
											}) || {};
											for(var i in vm.questions) {
												if(vm.questions[i].question.thirdKey == "height") {
													vm.questions[i].question.content = vm.tizhongRecord.value2
													vm.changeContent(vm.questions[i].question,vm.tizhongRecord.value2)
												} 
												if(vm.questions[i].question.thirdKey == "weight") {
													vm.questions[i].question.content = vm.tizhongRecord.value1
													vm.changeContent(vm.questions[i].question,vm.tizhongRecord.value1)
												}
												if(vm.questions[i].question.thirdKey == "systolicPressure") {
													vm.questions[i].question.content = res.data.xy.value1
													vm.changeContent(vm.questions[i].question,res.data.xy.value1)
												}
												if(vm.questions[i].question.thirdKey == "diastolicPressure") {
													vm.questions[i].question.content = res.data.xy.value2
													vm.changeContent(vm.questions[i].question,res.data.xy.value2)
												}
												if(vm.questions[i].question.thirdKey == "bmi") {
													if(vm.tizhongRecord.value2 && vm.tizhongRecord.value1) {
														var w = vm.tizhongRecord.value1
														var h = vm.tizhongRecord.value2 / 100
														var s = (w / (h * h)).toFixed(2)
														vm.questions[i].question.content = s
														vm.shaowas = s
														vm.changeContent(vm.questions[i].question,s)
													}
												}
											}
										} else {
											top.layer.msg(res.msg, {icon: 5});
										}
										
									})
								}
							}
						})
					},
					save:function(){
						console.log('2222221sssssssssssssssss',this.selectArr)
						var vm=this;
						if(vm.progress!=100){
							top.layer.msg('问卷还未全部填写', {icon: 5});
							return ;
						}
						var loadding = top.layer.load(0, {shade: false}); //0代表加载的风格,支持0-2
						vm.selectArr.forEach(function(v){
							if(v.thirdKey == "assessTime") {
								v.content = new Date(v.content).format('yyyy-MM-dd HH:mm')
							}
						})
						var data={
							patientCode:vm.screeningResidents,
							labelType:vm.labelType,
							isAgain:vm.isAgain,
							source:1,
							surveyStatus:vm.surveyStatus,
							jsonData:JSON.stringify({
								surveyCode:vm.screeningType,
								questions:vm.selectArr	
							})
						}
						jbscAPI.saveAnswer(data).then(function(res){
							top.layer.close(loadding);
							if(res.status == 200) {
								if(vm.questions[1].isThird == 3) {
									top.layer.open({
									  type: 2,
					//				  offset: ['100px'], //右下角弹出
									  area: ['568px', '100%'],
									  shade: 0.5,
									  title: '查看筛选结果',
									  fixed: true, //不固定
									  maxmin: true,
									  closeBtn:1,
									  shift: 5,
									  shadeClose: false, //点击遮罩关闭层
									  content: '../../jbsc/html/view_screening_results.html?resultCode='+res.data,
									  end:function() {
										  var index = top.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
										  parent.eventBuss.$emit('guan_results',index)
									  },
									});
								}else{
									top.layer.open({
									  type: 2,
									  area: ['820px', '648px'],
									  shade: 0.5,
									  title: '筛选统计',
									  fixed: true, //不固定
									  maxmin: true,
									  closeBtn:1,
									  shift: 5,
									  shadeClose: false, //点击遮罩关闭层
									  content: '../../jbsc/html/filter_result.html?code='+res.data+'&filter_type='+vm.screeningType
									});
								}
								
							} else {
								top.layer.msg(res.msg, {icon: 5});
							}
			    			
					   })
					},
//					返回选择居民或者问卷类型
					goBack:function(number){
						var vm=this
						if(vm.isAgain){
							var content;
							if(number==1){
								content='再次筛查无法选择居民'
							}else{
								content='再次筛查无法选择问卷类型'
							}
							top.layer.msg(content, {icon: 5});
							return ;
						}
						var content='../../jbsc/html/filter_type.html?isReLoad=1';
						if(number===1){//选择居民
							content+='&goDenizen=1&fliter_code='+vm.screeningType+'&fliter_title='+vm.screeningTitle;
						}
						layer.open({
						  type: 2,
						  offset: 'rb', //右下角弹出
						  id:"filter_type",
						  background:"transparent",
						  area: ['280px', '100%'],
						  shade: 0.5,
						  title: false,
						  fixed: true, //不固定
						  maxmin: false,
						  closeBtn:0,
						  shift: 5,
						  shadeClose: true, //点击遮罩关闭层
						  content: content
						});
					}
				},watch:{
					screeningType:function(){
						$('.daan-list input').attr('checked',false)
					},
				}
			})
		</script>
	</body>
              } else {
                top.layer.msg(res.msg, { icon: 5 })
              }
            })
          },
          //					返回选择居民或者问卷类型
          goBack: function (number) {
            if (this.noswitch) {
              return
            }
            var vm = this
            if (vm.isAgain) {
              var content
              if (number == 1) {
                content = '再次筛查无法选择居民'
              } else {
                content = '再次筛查无法选择问卷类型'
              }
              top.layer.msg(content, { icon: 5 })
              return
            }
            var content = '../../jbsc/html/filter_type.html?isReLoad=1'
            if (number === 1) {
              //选择居民
              content += '&goDenizen=1&fliter_code=' + vm.screeningType + '&fliter_title=' + vm.screeningTitle
            }
            layer.open({
              type: 2,
              offset: 'rb', //右下角弹出
              id: 'filter_type',
              background: 'transparent',
              area: ['280px', '100%'],
              shade: 0.5,
              title: false,
              fixed: true, //不固定
              maxmin: false,
              closeBtn: 0,
              shift: 5,
              shadeClose: true, //点击遮罩关闭层
              content: content
            })
          }
        },
        watch: {
          screeningType: function () {
            $('.daan-list input').attr('checked', false)
          }
        }
      })
    </script>
  </body>
</html>

+ 3 - 1
app/rehabilitation/html/device.html

@ -134,7 +134,7 @@
            <div class="form-label">SN码</div>
            <el-input v-model="query.deviceSn" :disabled="dataId" placeholder="请输入设备唯一码"></el-input>
          </div>
          <div class="form-item" v-if="deviceObj.deviceId == 6">
          <div class="form-item" v-if="deviceObj.id == 6">
            <div class="form-label">SIM码</div>
            <el-input v-model="query.sim" :disabled="dataId" placeholder="请输入SIM码"></el-input>
          </div>
@ -198,6 +198,7 @@
            const vm = this
            httpRequest.get('common/device/DeviceInfo', { data: { id: this.deviceId } }).then(function (res) {
              vm.deviceObj = res.data
              if (vm.deviceObj.isMultiUser == 1) {
                vm.deviceObj.multiUser = JSON.parse(res.data.multiUser)
              }
@ -247,6 +248,7 @@
            httpRequest.get('common/device/DeviceInfo', { data: { id: item.id } }).then(function (res) {
              vm.step++
              vm.deviceObj = res.data
              if (vm.deviceObj.isMultiUser == 1) {
                vm.deviceObj.multiUser = JSON.parse(res.data.multiUser)
              }

+ 203 - 163
app/rehabilitation/html/guide_the_message.html

@ -1,168 +1,208 @@
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>完成项目服务</title>
		<link rel="stylesheet" href="../../../css/bootstrap.min.css" />
	    <link rel="stylesheet" type="text/css" href="../../../css/style.min.css"/>
	    <link rel="stylesheet" type="text/css" href="../../../css/cross.css"/>
		<link href="../../../plugins/toastr/toastr.min.css" rel="stylesheet">
		<link rel="stylesheet" type="text/css" href="../../../css/element-ui.css">
		<link rel="stylesheet" href="../css/guide_the_message.css" />
	</head>
	<body>
		<div id="app" v-cloak role="tablist" aria-multiselectable="true">
		  <div class="panelcurPage">
		    <div class="panel-heading" style="border-bottom: 1px solid #d7dce6;" role="tab">
		      <h4 class="panel-title">
		        <a role="button" class="flex-box">
		          <div class="flex-box-item service-top">
		          	<p class="service-name"><!--<span class="service-index">1</span>--><span>{{service.title}}</span></p>
		         	<div v-if="islimit" class="label-group">
		         		<span class="pull-right mt5" v-if="service.statusName=='已完成'"><i class="icon icon-gouxuan icon-18 mr5"></i>{{service.statusName}}</span>
		         		<span class="label-blue" v-if="service.shortExecuteTime">{{service.shortExecuteTime}}</span>
		         		<span class="label-blue" v-for="doctor in service.executeDoctorList">{{doctor}}</span>
		         	</div>
					<div v-else class="label-group">
		         		<span class="pull-right mt5" v-if="service.recordStatus==1"><i class="icon icon-gouxuan icon-18 mr5"></i>{{service.recordStatus==1?'已完成':'未完成'}}</span>
		         		<span class="label-blue" v-if="service.shortCompleteTime">{{service.shortCompleteTime}}</span>
						<span class="label-blue" v-for="doctor in service.executeDoctorList">{{doctor}}</span>
					</div>
				  </div>
		          <!--<span class="icon icon-arrow-down ml50"></span>-->
		        </a>
		      </h4>
			</div>
			<div v-if="islimit && service.type==7" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
				<div class="panel-body">
					<div class="pb20 c-border-b">
						为居民提供康复后的复诊提醒或代预约服务
					</div>
				</div>
			</div>
		    <div class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
		      	<div class="panel-body" style="padding-top: 0;">
		      		<div v-if="service.type!=7" class="service-content pt20">{{service.content}}</div>
		      		<div class="service-address ptb20">
		      			<div class="flex-box">
		      				<div class="flex-box-item">
		      					<p class="m0">服务地点:{{service.hospitalName}}</p>
		      					<p class="m0">服务时间:{{service.executeTime | formatDate}}</p>
		      				</div>
		      				<div class="flex-box-item">
		      					<p class="m0 yslb">执行人:<span v-for="(doctor,index) in service.executeDoctorList">{{doctor}}</span></p>
		      					<p class="m0">服务收费:{{service.expense}}元</p>
		      				</div>
		      			</div>
		      		</div>
		   		</div>
	       </div>
		  </div>
	   		<div class="panel-body">
	      		<div class="service-operation">
	      			<div style="border-bottom: 1px solid #D7D4F0;">
	      				<div class="pb10">
		      				指导与汇报记录&emsp;<span class="view-detail" v-if="service.messageList && service.messageList.length" :class="{active:isCollapse}" @click="chakan"><i class="icon icon-check mr5 icon-16"></i>{{isCollapse?'收起详情':'查看详情'}}</span>
		      				<div class="pull-right" v-if="(service.isMyTask==1 || service.isCreate || service.isCK) && service.planStatus!=0">
		      					<span class="view-detail" @click="zdly(service)" v-if="service.isCreate && (service.isMyTask!=1) && ((islimit&&service.status!=1)||(!islimit&&service.recordStatus!=1))">指导留言</span>
		      					<span class="view-detail" @click="zdly(service)" v-if="service.isCK && service.isMyTask==1">查看留言</span>
		      				</div>
	      				</div>
			      		<div class="record-list mb10" :class="{active:isCollapse}">
		      				<div class="record-item" v-for="item in service.messageList">
		      					<div class="flex-box c-999 f14">
			      					<div class="flex-box-item">
			      						{{item.adminTeamName}}
			      					</div>
			      					<div class="flex-box-item">
			      						{{item.createTime}}
			      					</div>
			      				</div>
				      			<div class="f14 c-333" v-html="getContent(item.content,item.contentType)"></div>
		      				</div>
		      			</div>
		      			<p class="c-999" style="margin-top: -10px;" v-if="service.messageList && !service.messageList.length">暂无记录</p>
					  </div>
					  <!-- 协诊信息 -->
					  <div>
						<div class="setRadio mt40" v-if="showAppointHelpCheckBtn && !service.appointmentTime && service.type==7 && service.status!=1 && service.isMyTask==1">
							<el-radio-group v-model="selectCheckTyperadio">
								<el-radio :label="0">线下复诊--预约至专家医院进行复诊</el-radio>
								<el-radio :label="1">远程协诊--家庭医生与专科医生协同会诊</el-radio>
								<el-radio :label="2">线上复诊--入驻互联网医院提供线上复诊开方咨询</el-radio>
							</el-radio-group>
						</div>
						<div v-if="(selectCheckTyperadio==1 &&!showAppointHelpCheckBtn) || service.appointmentTime" class="ptb10">
							<div class="pb10 c-f14 c-333">协诊信息</div>
							<div class="flex-box-item">
								<p class="m0">预约时间:{{service.appointmentTime || appointTime}}</p>
								<p class="m0">预约医生:{{service.appointmentDoctorName || service.specialistDoctorName}}</p>
								<p class="m0">预约项目:远程协诊</p>
							</div>	
						</div>
					  </div>
					<div class="note-info pt10" v-if="(service.type==7 && (islimit&&service.status==1) && service.reservationType!=1 && service.reservationType!=2) ||((islimit&&service.status!=1) && service.isMyTask==1 && showRecordFinished)">
						<p class="f14 c-333">服务完成笔记</p>
						<textarea v-if="(islimit&&service.status!=1) && service.isMyTask==1 && showRecordFinished" class="form-control" style="resize: none;" rows="4" placeholder="可备注您的服务记录" v-model="service.node"></textarea>
						<div  v-if="service.type==7 && (islimit && service.status==1) && service.reservationType!=1 && service.reservationType!=2">{{service.node || '暂无服务记录'}}</div>
					</div>
					<div class="note-info ptb10" v-if="service.type==7 && (islimit&&service.status!=1) && service.isMyTask==1 && showRecordFinished">
							<p class="f14 c-333">相关记录</p>
							<ul class="upload-box">
								<li class="flex-box" v-for="(img,index) in upImgs">
									<div class="upload-img-box">      						
										<img :src="img.baseUrl" />
									</div>
									<a class="delete-img" @click="deleteImg(index)">&times;</a>
								</li>
								<li class="flex-box" v-if="upImgs.length<5">
									<span class="add-img">+</span>
									<input type="file" @change="upLoadImgToBase64" class="upload-img" />
								</li>
							</ul>
					</div>
					<div class="note-info ptb10" v-if="service.type==7 && (islimit&&service.status==1) && service.reservationType!=1 && service.reservationType!=2">
							<p class="f14 c-333">相关记录</p>
							<ul class="upload-box" v-if="service.relationRecordImg && service.relationRecordImg.length">
								<li class="flex-box" v-for="img in service.relationRecordImg">
									<div class="upload-img-box">      						
										<img :src="img | getImgUrl" />
									</div>
								</li>
							</ul>
							<div class="upload-box" v-else>
								<p>暂无相关记录</p>
							</div>
					</div>  
					<!-- operate: 是否完成任务 0 未完成 1 已完成 isMyTask: 0 不是自己的任务 1是自己的任务 status: 0 未完成 1已完成 2已预约-->
					<!-- planStatus:计划的状态 0 已终止 1进行中 2已完成 -->
					<!-- type: 服务项code 1 电话/短信关怀 2康复咨询 3远程健康监测 4 上门服务 5康复指导 6 康复随访 7 复诊-->
					<!-- selectCheckTyperadio 0 线下复诊 1远程协诊 2线上复诊 -->
					<div v-if="islimit&&service.planStatus!=0" class="flex-box btns-group clearfix" style="position: relative;"> <!-- 限制频次 -->
						<button class="btn btn-yuyue" v-if="service.type==4 && service.status!=1 && service.isMyTask==1" @click="sendSpecialistWeixinMessage(4)">提醒患者</button>
						<button class="btn btn-12b7f5" v-if="service.type==4 && service.status!=1 && service.isMyTask==1" @click="toDoorDialog">代预约</button>
						<button class="btn btn-yuyue" v-if="service.type==5 && service.status!=1 && service.isMyTask==1" @click="kfzd()">发送指导</button>
						<button class="btn btn-yuyue" v-if="service.type==6 && service.status!=1 && service.isMyTask==1 && service.operate==0"  @click="sfjh()" style="width: auto">创建随访计划</button>
						<button class="btn btn-12b7f5" v-if="service.type==6 && service.status!=1 && service.isMyTask==1 && service.operate==1" @click="openFollowRecordForm" style="width: auto">记录随访表单</button>
						<button class="btn btn-12b7f5" v-if="service.type==6 && service.status==1" @click="openFollowRecordForm" style="width: auto">查看随访结果</button>
						<button class="btn btn-yuyue" v-if="service.type==7 && service.status!=1 && service.isMyTask==1 && selectCheckTyperadio!=1 && !service.appointmentTime" @click="sendSpecialistWeixinMessage(7)">提醒患者</button>
						<button class="btn btn-12b7f5" v-if="service.type==7 && service.status!=1 && service.isMyTask==1 && selectCheckTyperadio==0 && !service.appointmentTime" @click="rehabilitationReservation()">代预约</button>
						<button class="btn btn-12b7f5" v-if="selectCheckTyperadio==1 && showAppointHelpCheckBtn" @click="$refs.datePicker.pickerVisible = true">预约协诊</button>
						<div class="setPicker" style="visibility: hidden;">
							<el-date-picker
								v-model="appointDate"
								type="date"
								ref="datePicker"
								@change="$refs.timePicker.pickerVisible = true"
								value-format="yyyy-MM-dd"
								:picker-options="pickerOptions"
							>
							</el-date-picker>
						</div>		
						<div class="setPicker" style="visibility: hidden;">
								<el-time-select
								v-model="appointHour"
								:picker-options="{
  <head>
    <meta charset="UTF-8" />
    <title>完成项目服务</title>
    <link rel="stylesheet" href="../../../css/bootstrap.min.css" />
    <link rel="stylesheet" type="text/css" href="../../../css/style.min.css" />
    <link rel="stylesheet" type="text/css" href="../../../css/cross.css" />
    <link href="../../../plugins/toastr/toastr.min.css" rel="stylesheet" />
    <link rel="stylesheet" type="text/css" href="../../../css/element-ui.css" />
    <link rel="stylesheet" href="../css/guide_the_message.css" />
  </head>
  <body>
    <div id="app" v-cloak role="tablist" aria-multiselectable="true">
      <div class="panelcurPage">
        <div class="panel-heading" style="border-bottom: 1px solid #d7dce6" role="tab">
          <h4 class="panel-title">
            <a role="button" class="flex-box">
              <div class="flex-box-item service-top">
                <p class="service-name">
                  <!--<span class="service-index">1</span>-->
                  <span>{{service.title}}</span>
                </p>
                <div v-if="islimit" class="label-group">
                  <span class="pull-right mt5" v-if="service.statusName=='已完成'">
                    <i class="icon icon-gouxuan icon-18 mr5"></i>
                    {{service.statusName}}
                  </span>
                  <span class="label-blue" v-if="service.shortExecuteTime">{{service.shortExecuteTime}}</span>
                  <span class="label-blue" v-for="doctor in service.executeDoctorList">{{doctor}}</span>
                </div>
                <div v-else class="label-group">
                  <span class="pull-right mt5" v-if="service.recordStatus==1">
                    <i class="icon icon-gouxuan icon-18 mr5"></i>
                    {{service.recordStatus==1?'已完成':'未完成'}}
                  </span>
                  <span class="label-blue" v-if="service.shortCompleteTime">{{service.shortCompleteTime}}</span>
                  <span class="label-blue" v-for="doctor in service.executeDoctorList">{{doctor}}</span>
                </div>
              </div>
              <!--<span class="icon icon-arrow-down ml50"></span>-->
            </a>
          </h4>
        </div>
        <div v-if="islimit && service.type==7" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
          <div class="panel-body">
            <div class="pb20 c-border-b">为居民提供康复后的复诊提醒或代预约服务</div>
          </div>
        </div>
        <div class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
          <div class="panel-body" style="padding-top: 0">
            <div v-if="service.type!=7" class="service-content pt20">{{service.content}}</div>
            <div class="service-address ptb20">
              <div class="flex-box">
                <div class="flex-box-item">
                  <p class="m0">服务地点:{{service.hospitalName}}</p>
                  <p class="m0">服务时间:{{service.executeTime | formatDate}}</p>
                </div>
                <div class="flex-box-item">
                  <p class="m0 yslb">
                    执行人:
                    <span v-for="(doctor,index) in service.executeDoctorList">{{doctor}}</span>
                  </p>
                  <p class="m0">服务收费:{{service.expense}}元</p>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      <div class="panel-body">
        <div class="service-operation">
          <div style="border-bottom: 1px solid #d7d4f0">
            <div class="pb10">
              指导与汇报记录&emsp;
              <span class="view-detail" v-if="service.messageList && service.messageList.length" :class="{active:isCollapse}" @click="chakan">
                <i class="icon icon-check mr5 icon-16"></i>
                {{isCollapse?'收起详情':'查看详情'}}
              </span>
              <div class="pull-right" v-if="(service.isMyTask==1 || service.isCreate || service.isCK) && service.planStatus!=0">
                <span
                  class="view-detail"
                  @click="zdly(service)"
                  v-if="service.isCreate && (service.isMyTask!=1) && ((islimit&&service.status!=1)||(!islimit&&service.recordStatus!=1))">
                  指导留言
                </span>
                <span class="view-detail" @click="zdly(service)" v-if="service.isCK && service.isMyTask==1">查看留言</span>
              </div>
            </div>
            <div class="record-list mb10" :class="{active:isCollapse}">
              <div class="record-item" v-for="item in service.messageList">
                <div class="flex-box c-999 f14">
                  <div class="flex-box-item">{{item.adminTeamName}}</div>
                  <div class="flex-box-item">{{item.createTime}}</div>
                </div>
                <div class="f14 c-333" v-html="getContent(item.content,item.contentType)"></div>
              </div>
            </div>
            <p class="c-999" style="margin-top: -10px" v-if="service.messageList && !service.messageList.length">暂无记录</p>
          </div>
          <!-- 协诊信息 -->
          <div>
            <div class="setRadio mt40" v-if="showAppointHelpCheckBtn && !service.appointmentTime && service.type==7 && service.status!=1 && service.isMyTask==1">
              <el-radio-group v-model="selectCheckTyperadio">
                <el-radio :label="0">线下复诊--预约至专家医院进行复诊</el-radio>
                <el-radio :label="1">远程协诊--家庭医生与专科医生协同会诊</el-radio>
                <el-radio :label="2">线上复诊--入驻互联网医院提供线上复诊开方咨询</el-radio>
              </el-radio-group>
            </div>
            <div v-if="(selectCheckTyperadio==1 &&!showAppointHelpCheckBtn) || service.appointmentTime" class="ptb10">
              <div class="pb10 c-f14 c-333">协诊信息</div>
              <div class="flex-box-item">
                <p class="m0">预约时间:{{service.appointmentTime || appointTime}}</p>
                <p class="m0">预约医生:{{service.appointmentDoctorName || service.specialistDoctorName}}</p>
                <p class="m0">预约项目:远程协诊</p>
              </div>
            </div>
          </div>
          <div
            class="note-info pt10"
            v-if="(service.type==7 && (islimit&&service.status==1) && service.reservationType!=1 && service.reservationType!=2) ||((islimit&&service.status!=1) && service.isMyTask==1 && showRecordFinished)">
            <p class="f14 c-333">服务完成笔记</p>
            <textarea
              v-if="(islimit&&service.status!=1) && service.isMyTask==1 && showRecordFinished"
              class="form-control"
              style="resize: none"
              rows="4"
              placeholder="可备注您的服务记录"
              v-model="service.node"></textarea>
            <div v-if="service.type==7 && (islimit && service.status==1) && service.reservationType!=1 && service.reservationType!=2">{{service.node || '暂无服务记录'}}</div>
          </div>
          <div class="note-info ptb10" v-if="service.type==7 && (islimit&&service.status!=1) && service.isMyTask==1 && showRecordFinished">
            <p class="f14 c-333">相关记录</p>
            <ul class="upload-box">
              <li class="flex-box" v-for="(img,index) in upImgs">
                <div class="upload-img-box">
                  <img :src="img.baseUrl" />
                </div>
                <a class="delete-img" @click="deleteImg(index)">&times;</a>
              </li>
              <li class="flex-box" v-if="upImgs.length<5">
                <span class="add-img">+</span>
                <input type="file" @change="upLoadImgToBase64" class="upload-img" />
              </li>
            </ul>
          </div>
          <div class="note-info ptb10" v-if="service.type==7 && (islimit&&service.status==1) && service.reservationType!=1 && service.reservationType!=2">
            <p class="f14 c-333">相关记录</p>
            <ul class="upload-box" v-if="service.relationRecordImg && service.relationRecordImg.length">
              <li class="flex-box" v-for="img in service.relationRecordImg">
                <div class="upload-img-box">
                  <img :src="img | getImgUrl" />
                </div>
              </li>
            </ul>
            <div class="upload-box" v-else>
              <p>暂无相关记录</p>
            </div>
          </div>
          <!-- operate: 是否完成任务 0 未完成 1 已完成 isMyTask: 0 不是自己的任务 1是自己的任务 status: 0 未完成 1已完成 2已预约-->
          <!-- planStatus:计划的状态 0 已终止 1进行中 2已完成 -->
          <!-- type: 服务项code 1 电话/短信关怀 2康复咨询 3远程健康监测 4 上门服务 5康复指导 6 康复随访 7 复诊-->
          <!-- selectCheckTyperadio 0 线下复诊 1远程协诊 2线上复诊 -->
          <div v-if="islimit&&service.planStatus!=0" class="flex-box btns-group clearfix" style="position: relative">
            <!-- 限制频次 -->
            <button class="btn btn-yuyue" v-if="service.type==4 && service.status!=1 && service.isMyTask==1" @click="sendSpecialistWeixinMessage(4)">提醒患者</button>
            <button class="btn btn-12b7f5" v-if="service.type==4 && service.status!=1 && service.isMyTask==1" @click="toDoorDialog">代预约</button>
            <button class="btn btn-yuyue" v-if="service.type==5 && service.status!=1 && service.isMyTask==1" @click="kfzd()">发送指导</button>
            <button class="btn btn-yuyue" v-if="service.type==6 && service.status!=1 && service.isMyTask==1 && service.operate==0" @click="sfjh()" style="width: auto">
              创建随访计划
            </button>
            <button
              class="btn btn-12b7f5"
              v-if="service.type==6 && service.status!=1 && service.isMyTask==1 && service.operate==1"
              @click="openFollowRecordForm"
              style="width: auto">
              记录随访表单
            </button>
            <button class="btn btn-12b7f5" v-if="service.type==6 && service.status==1" @click="openFollowRecordForm" style="width: auto">查看随访结果</button>
            <button
              class="btn btn-yuyue"
              v-if="service.type==7 && service.status!=1 && service.isMyTask==1 && selectCheckTyperadio!=1 && !service.appointmentTime"
              @click="sendSpecialistWeixinMessage(7)">
              提醒患者
            </button>
            <button
              class="btn btn-12b7f5"
              v-if="service.type==7 && service.status!=1 && service.isMyTask==1 && selectCheckTyperadio==0 && !service.appointmentTime"
              @click="rehabilitationReservation()">
              代预约
            </button>
            <button class="btn btn-12b7f5" v-if="selectCheckTyperadio==1 && showAppointHelpCheckBtn" @click="$refs.datePicker.pickerVisible = true">预约协诊</button>
            <div class="setPicker" style="visibility: hidden">
              <el-date-picker
                v-model="appointDate"
                type="date"
                ref="datePicker"
                @change="$refs.timePicker.pickerVisible = true"
                value-format="yyyy-MM-dd"
                :picker-options="pickerOptions"></el-date-picker>
            </div>
            <div class="setPicker" style="visibility: hidden">
              <el-time-select
                v-model="appointHour"
                :picker-options="{
									step: '00:05',
									minTime:startTime,
									start:'08:00',

+ 7 - 7
app/rehabilitation/html/healthFoodDetail.html

@ -21,7 +21,7 @@
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      }
      .food-info img{
      .food-info img {
        max-width: 280px;
      }
      .tip {
@ -35,7 +35,7 @@
      .food-item {
        margin-bottom: 20px;
      }
      .food-item img{
      .food-item img {
        width: 100px;
      }
      .pl8 {
@ -73,7 +73,7 @@
          </div>
          <div class="food-component" v-for="(val,key) in item.component">
            <div>{{key}}</div>
            <div>{{val}} 克</div>
            <div>{{val}}</div>
          </div>
        </div>
      </div>
@ -95,17 +95,17 @@
        data() {
          return {
            id: '',
            dietDetail:{},
            dietDetail: {},
            foodList: []
          }
        },
        methods: {
          getFoodDetail() {
            const vm  = this
            const vm = this
            httpRequest.get('doctor/health_record/dietDetail', { data: { id: this.id } }).then(function (res) {
              vm.dietDetail = res.data.dietDetail
              vm.dietDetail.time = vm.dietDetail.recordDate.substring(0,10)
              vm.foodList = (res.data.foodCompList??[]).map(function(item){
              vm.dietDetail.time = vm.dietDetail.recordDate.substring(0, 10)
              vm.foodList = (res.data.foodCompList ?? []).map(function (item) {
                return {
                  ...item,
                  component: JSON.parse(item.component)

+ 360 - 358
app/rehabilitation/js/guide_the_message.js

@ -257,8 +257,8 @@ top.rehabilitationGuideVue = new Vue({
    //   })
    // },
    rehabilitationReservation() {
		// 如果是康复复诊过去预约挂号,在就诊信息页面少一个字段显示,1隐藏字段,0正常显示
		sessionStorage.setItem("isFuzhen",1)
      // 如果是康复复诊过去预约挂号,在就诊信息页面少一个字段显示,1隐藏字段,0正常显示
      sessionStorage.setItem('isFuzhen', 1)
      top.layer.open({
        type: 2,
        closeBtn: 1, // 显示关闭按钮
@ -266,13 +266,13 @@ top.rehabilitationGuideVue = new Vue({
        title: '预约挂号',
        content: '../../jbsc/html/appointment/appoint-select.html?patient=' + this.patient
      })
		},
    },
    openFollowRecordForm() {
		var vm=this
		if(vm.service.disease!='3'){
			top.layer.msg('请到app上操作!')
			return false
		}
      var vm = this
      if (vm.service.disease != '3') {
        top.layer.msg('请到app上操作!')
        return false
      }
      top.layer.open({
        type: 2,
        area: ['600px', '700px'],
@ -284,359 +284,361 @@ top.rehabilitationGuideVue = new Vue({
        // shift: 5,
        shadeClose: false, //点击遮罩关闭层
        content: '../../rehabilitation/html/followRecord.html?serviceInfo=' + encodeURIComponent(JSON.stringify(this.service)) + '&planDetailId=' + this.planid,
		end: function () {
			// 未点击确定按钮,点击关闭按钮
			vm.getServiceItem()
		  }
        end: function () {
          // 未点击确定按钮,点击关闭按钮
          vm.getServiceItem()
        }
      })
    },
    qwapp: function () {
      top.layer.msg('请前往app处理', {
        icon: 5
      })
    },
		qwapp: function() {
			top.layer.msg('请前往app处理', {
				icon: 5
			});
		},
		toDoorDialog(){
			// console.log("guide_the_message");
			
			top.layer.open({
				type: 2,
				area: ['850px', '700px'],
				shade: 0.5,
				title: '代预约',
				fixed: true, //不固定
				maxmin: true,
				closeBtn: 1,
				// shift: 5,
				shadeClose: false, //点击遮罩关闭层
				content: `/app/rehabilitation/html/toDoorService.html?patient=${this.patient}&detailId=${this.planid}&relationCode=${this.planid}`,
				end: function(){
    				this.getServiceItem()
				}
			})
		},
		viewGuidance: function(o){
			var vm = this
			previewLayerIndex = layer.open({
				type: 2,
				area: ['380px', '600px'],
				shade: 0.5,
				title: '预览',
				fixed: true, //不固定
				maxmin: true,
				closeBtn:1,
				shift: 5,
				shadeClose: false, //点击遮罩关闭层
				content: '../../rehabilitation/html/rehabilitation_guidance_preview.html?modelCode='+o.article
			});
		}, 
		getServiceItem: function() {
			var vm = this;
			var loginDoctor = JSON.parse(window.localStorage.getItem('wlyyAgent'));
			var loadding = top.layer.load(0, {
				shade: false
			}); //0代表加载的风格,支持0-2
			var params = {
				planDetailId: vm.planid,
			}
			if(vm.recordId){
				params['recordId'] = vm.recordId
			}
			rehaAPI.serviceItem(params).then(function(res) {
				top.layer.close(loadding);
				if(res.status == 200) {
					vm.service = res.data;
					var isZK=loginDoctor.doctorType==1?true:false;
					vm.service.isZK=isZK;
					if(vm.service.completeTime){
						var l = vm.service.completeTime.length
						vm.service.shortCompleteTime = vm.service.completeTime.substr(l-5, l-1)
					}
					if(vm.service.isMyTask==1){//执行者										
						vm.service.isCK=true;//无法显示按钮
						if(loginDoctor.uid==vm.service.specialistDoctorCode){//说明我自己是创建者
							vm.service.isCK=false;
							vm.service.isCreate=true;
						}
					}else{
						if(loginDoctor.uid==vm.service.specialistDoctorCode){//说明我自己是创建者
							vm.service.isCreate=true;
						}
					}
					if(vm.service.type == 4 || vm.service.type == 5 || vm.service.type == 7){
						vm.getRelationRecord(vm.service.type, vm.planid).then(function(result){
							if(result.status == 200){
								vm.service.relationList = result.data&&result.data.length>0?result.data:undefined
								vm.$forceUpdate()
							}
						})
    toDoorDialog() {
      // console.log("guide_the_message");
					}
					if(vm.service.frequencyCode){
						vm.islimit = true
					} else {
						vm.islimit = false
					}
				} else {
					top.layer.msg(res.msg, {
						icon: 5
					});
				}
				if(vm.service.status==1){
					var index = top.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
					top.layer.title('服务记录详情', index)  //再改变当前层的标题						
				}		
			})
		},
		getRelationRecord: function(type, planDetaiId){
			// 1.电话短信 2.康复咨询 3.远程监控检测 4.上门服务 5.康复指导  6 康复随访  7.复诊)
			var vm = this
			var url=''
			if(type==5){
				url='doctor/specialist/rehabilitation/selectByRelationCode'
			}else if(type==7){
				url='third/guahao/selectByRelationCode'
			}else if(type==4){
				url="/doctor/specialist/rehabilitation/selectRelationCode"
			}
			var vm = this
			var params = {
				relationCode: vm.recordId?vm.recordId:planDetaiId
			}
			return httpRequest.get(url, {data: params})
		},
		zdly: function(data) {
			var vm = this
			var loginDoctor = JSON.parse(window.localStorage.getItem('wlyyAgent'));
			var otherCode, otherName;
			if(loginDoctor.doctorType == 1) {
				otherCode = data.familyDoctorCode;
				otherName = data.familyDoctorName;
			} else {
				otherCode = data.specialistDoctorCode;
				otherName = data.specialistDoctorName;
			}
			top.layer.open({
				type: 2,
				//				  offset: ['100px'], //右下角弹出
				area: ['660px', '600px'],
				shade: 0.5,
				title: '指导留言',
				fixed: true, //不固定
				maxmin: true,
				closeBtn: 1,
				shift: 5,
				shadeClose: false, //点击遮罩关闭层
				content: '../../consulting/html/consulting.html?otherCode=' + otherCode + '&otherName=' + encodeURI(otherName) + '&planDetailId=' + vm.planid,
				end: function() { // 未点击确定按钮,点击关闭按钮  
					      
					vm.getServiceItem();    
				}
			});
		},
		deleteImg: function(idx) {
			console.log(idx)
			this.upImgs.splice(idx, 1)
		},
		chakan: function() {
			this.isCollapse = !this.isCollapse;
		},
		upLoadImgToBase64: function() {
			var vm = this;
			var img1 = event.target.files[0];
			var reader = new FileReader();
			var type = img1.type; //文件的类型,判断是否是图片  
			var size = img1.size; //文件的大小,判断图片的大小  
			if(this.imgData.accept.indexOf(type) == -1) {
				alert('请选择我们支持的图片格式!');
				return false;
			}
			if(size > 3145728) {
				alert('请选择3M以内的图片!');
				return false;
			}
			reader.readAsDataURL(img1);
			reader.onload = function(e) {
				vm.upImgs.push({
					baseUrl: e.target.result
				});
				vm.upImgArr.push(img1);
				console.log('e', e, 'vm.upImgs', vm.upImgs, 'vm.upImgArr', vm.upImgArr)
				//vm.uploadImg(vm.upImgArr);
			}
		},
		qrwc: function(patient,type) {
			var vm = this;
			if(!vm.service.node){
				showErrorMessage('请填写服务记录')
				return
			}
			if(!vm.upImgs.length){
				showErrorMessage('请上传相关记录')
				return
			}
			vm.saveRehabilitationOperateRecord(vm.planid,type);
		},
		saveRehabilitationOperateRecord:function(planDetailId, type, relationCode, flag){
			var vm=this;
			var params={
				rehabilitationDetailId: planDetailId,
				node: null,
				patientCode: vm.patient,
				doctorCode: docInfo.uid,
				relationRecordType: type,
				relationRecordCode: '',
				relationRecordImg: null,
				status: 0
			}
			rehaAPI.saveRehabilitationOperateRecord({dataJson:JSON.stringify(params)}).then(function(res){
				if(res.status==200){
					if(type==1 || type==7){
						vm.uploadImg(vm.upImgArr);
					}else if(type==6){
						vm.updateRelationCodeByDetailId(planDetailId, relationCode)
					} else {
						vm.updateNoteAndImageRehabilitationOperate(planDetailId)
					}
				} else {
					layer.msg(res.msg, {
						icon: 5
					});
				}
			})
			
		},
		//上传图片
		uploadImg: function(data) {
			var vm = this;
			var len = data.length;
			if(len==0) {
				vm.updateNoteAndImageRehabilitationOperate(vm.planid)
			} else {
				var file = data[len - 1];
				var formData = new FormData();
				formData.append('file', file);
				rehaAPI.upload(formData).then(function(res) {
					if(res.status == 200) {
						vm.upImgs[len - 1].img = res.data;
						data.pop();
						vm.$forceUpdate()
						vm.uploadImg(data);
					} else {
						layer.msg(res.msg, {
							icon: 5
						});
					}
				})
			}
		},
		updateNoteAndImageRehabilitationOperate: function(planDetailId, relationCode) {
			var vm = this;
			var _image = [];
			$.each(vm.upImgs, function(index, obj){
				_image.push(obj.img);
			})
			var params = {
				planDetailId: planDetailId,
				node: vm.service&&vm.service.node?vm.service.node:null,
				image:JSON.stringify(_image)||''
			}
			if(relationCode){
				params['relationCode'] = relationCode
			}
			var loadding = top.layer.load(0, {
				shade: false
			}); //0代表加载的风格,支持0-2
			rehaAPI.updateNoteAndImageRehabilitationOperate(params).then(function(res) {
				top.layer.close(loadding);
				if(res.status == 200) {
					vm.getServiceItem();
					top.rehabilitationVue.refresh()
				}
			})
		},
		updateRelationCodeByDetailId: function(planDetailId, relationCode){
			var vm = this
			var params = {
				planDetailId: planDetailId,
				relationCode: relationCode,
			}
			rehaAPI.updateRelationCodeByDetailId(params).then(function(res) {
				if(res.status == 200) {
					vm.getServiceItem();
					top.rehabilitationVue.refresh()
				} else {
					showErrorMessage(res.msg)
				}
			})
		},
		viewDetial:function(type,code){
			var vm=this;
			if(type == 3) {
				top.layer.msg('客户端暂不支持查询健康指导记录');
			} else if(type==4){
				top.layer.msg('客户端暂不支持查询随访记录');
			}else{
				top.layer.open({
					type: 2,
					//				  offset: ['100px'], //右下角弹出
					area: ['80%', '600px'],
					shade: 0.5,
					title: '指导教育',
					fixed: true, //不固定
					maxmin: true,
					closeBtn: 1,
					shift: 5,
					shadeClose: false, //点击遮罩关闭层
					content: '../../article/html/article-info.html?articleId=' + code,
					end: function() { // 未点击确定按钮,点击关闭按钮  
						vm.getServiceItem();    
					}
				});
				
			}
		},
		getContent: function(value,type) {
			var res=value;
			if(type==2 || type==9){
				res = "<img src='"+httpRequest.getImgUrl(res)+"'>";
			}else if(type==3){
				res = '【语音】';
			}else if(type==19){
				res = '【聊天记录】';
			}else if(type==12){
				res = '【视频】';
			}
			return res;
		}
	},
	filters: {
		formatDate: function(value, format) {
			if(!value) return;
			var fmt = format || "yyyy-MM-dd hh:mm";
			var date = new Date(value);
			if(/(y+)/.test(fmt)) {
				fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length));
			}
			let o = {
				'M+': date.getMonth() + 1,
				'd+': date.getDate(),
				'h+': date.getHours(),
				'm+': date.getMinutes(),
				's+': date.getSeconds()
			};
			for(let k in o) {
				if(new RegExp(`(${k})`).test(fmt)) {
					let str = o[k] + '';
					fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? str : ('00' + str).substr(str.length));
				}
			}
			return fmt;
		},
		getImgUrl: function(value) {
			var url = httpRequest.getImgUrl(value);
			return url;
		}
	}
      top.layer.open({
        type: 2,
        area: ['850px', '700px'],
        shade: 0.5,
        title: '代预约',
        fixed: true, //不固定
        maxmin: true,
        closeBtn: 1,
        // shift: 5,
        shadeClose: false, //点击遮罩关闭层
        // content: `/app/rehabilitation/html/toDoorService.html?patient=${this.patient}&detailId=${this.planid}&relationCode=${this.planid}`,
        content: `../../rehabilitation/html/toDoorService.html?patient=${this.patient}&detailId=${this.planid}&relationCode=${this.planid}`,
        end: function () {
          this.getServiceItem()
        }
      })
    },
    viewGuidance: function (o) {
      var vm = this
      previewLayerIndex = layer.open({
        type: 2,
        area: ['380px', '600px'],
        shade: 0.5,
        title: '预览',
        fixed: true, //不固定
        maxmin: true,
        closeBtn: 1,
        shift: 5,
        shadeClose: false, //点击遮罩关闭层
        content: '../../rehabilitation/html/rehabilitation_guidance_preview.html?modelCode=' + o.article
      })
    },
    getServiceItem: function () {
      var vm = this
      var loginDoctor = JSON.parse(window.localStorage.getItem('wlyyAgent'))
      var loadding = top.layer.load(0, {
        shade: false
      }) //0代表加载的风格,支持0-2
      var params = {
        planDetailId: vm.planid
      }
      if (vm.recordId) {
        params['recordId'] = vm.recordId
      }
      rehaAPI.serviceItem(params).then(function (res) {
        top.layer.close(loadding)
        if (res.status == 200) {
          vm.service = res.data
          var isZK = loginDoctor.doctorType == 1 ? true : false
          vm.service.isZK = isZK
          if (vm.service.completeTime) {
            var l = vm.service.completeTime.length
            vm.service.shortCompleteTime = vm.service.completeTime.substr(l - 5, l - 1)
          }
          if (vm.service.isMyTask == 1) {
            //执行者
            vm.service.isCK = true //无法显示按钮
            if (loginDoctor.uid == vm.service.specialistDoctorCode) {
              //说明我自己是创建者
              vm.service.isCK = false
              vm.service.isCreate = true
            }
          } else {
            if (loginDoctor.uid == vm.service.specialistDoctorCode) {
              //说明我自己是创建者
              vm.service.isCreate = true
            }
          }
          if (vm.service.type == 4 || vm.service.type == 5 || vm.service.type == 7) {
            vm.getRelationRecord(vm.service.type, vm.planid).then(function (result) {
              if (result.status == 200) {
                vm.service.relationList = result.data && result.data.length > 0 ? result.data : undefined
                vm.$forceUpdate()
              }
            })
          }
          if (vm.service.frequencyCode) {
            vm.islimit = true
          } else {
            vm.islimit = false
          }
        } else {
          top.layer.msg(res.msg, {
            icon: 5
          })
        }
        if (vm.service.status == 1) {
          var index = top.layer.getFrameIndex(window.name) //先得到当前iframe层的索引
          top.layer.title('服务记录详情', index) //再改变当前层的标题
        }
      })
    },
    getRelationRecord: function (type, planDetaiId) {
      // 1.电话短信 2.康复咨询 3.远程监控检测 4.上门服务 5.康复指导  6 康复随访  7.复诊)
      var vm = this
      var url = ''
      if (type == 5) {
        url = 'doctor/specialist/rehabilitation/selectByRelationCode'
      } else if (type == 7) {
        url = 'third/guahao/selectByRelationCode'
      } else if (type == 4) {
        url = '/doctor/specialist/rehabilitation/selectRelationCode'
      }
      var vm = this
      var params = {
        relationCode: vm.recordId ? vm.recordId : planDetaiId
      }
      return httpRequest.get(url, { data: params })
    },
    zdly: function (data) {
      var vm = this
      var loginDoctor = JSON.parse(window.localStorage.getItem('wlyyAgent'))
      var otherCode, otherName
      if (loginDoctor.doctorType == 1) {
        otherCode = data.familyDoctorCode
        otherName = data.familyDoctorName
      } else {
        otherCode = data.specialistDoctorCode
        otherName = data.specialistDoctorName
      }
      top.layer.open({
        type: 2,
        //				  offset: ['100px'], //右下角弹出
        area: ['660px', '600px'],
        shade: 0.5,
        title: '指导留言',
        fixed: true, //不固定
        maxmin: true,
        closeBtn: 1,
        shift: 5,
        shadeClose: false, //点击遮罩关闭层
        content: '../../consulting/html/consulting.html?otherCode=' + otherCode + '&otherName=' + encodeURI(otherName) + '&planDetailId=' + vm.planid,
        end: function () {
          // 未点击确定按钮,点击关闭按钮
          vm.getServiceItem()
        }
      })
    },
    deleteImg: function (idx) {
      console.log(idx)
      this.upImgs.splice(idx, 1)
    },
    chakan: function () {
      this.isCollapse = !this.isCollapse
    },
    upLoadImgToBase64: function () {
      var vm = this
      var img1 = event.target.files[0]
      var reader = new FileReader()
      var type = img1.type //文件的类型,判断是否是图片
      var size = img1.size //文件的大小,判断图片的大小
      if (this.imgData.accept.indexOf(type) == -1) {
        alert('请选择我们支持的图片格式!')
        return false
      }
      if (size > 3145728) {
        alert('请选择3M以内的图片!')
        return false
      }
      reader.readAsDataURL(img1)
      reader.onload = function (e) {
        vm.upImgs.push({
          baseUrl: e.target.result
        })
        vm.upImgArr.push(img1)
        console.log('e', e, 'vm.upImgs', vm.upImgs, 'vm.upImgArr', vm.upImgArr)
        //vm.uploadImg(vm.upImgArr);
      }
    },
    qrwc: function (patient, type) {
      var vm = this
      if (!vm.service.node) {
        showErrorMessage('请填写服务记录')
        return
      }
      if (!vm.upImgs.length) {
        showErrorMessage('请上传相关记录')
        return
      }
      vm.saveRehabilitationOperateRecord(vm.planid, type)
    },
    saveRehabilitationOperateRecord: function (planDetailId, type, relationCode, flag) {
      var vm = this
      var params = {
        rehabilitationDetailId: planDetailId,
        node: null,
        patientCode: vm.patient,
        doctorCode: docInfo.uid,
        relationRecordType: type,
        relationRecordCode: '',
        relationRecordImg: null,
        status: 0
      }
      rehaAPI.saveRehabilitationOperateRecord({ dataJson: JSON.stringify(params) }).then(function (res) {
        if (res.status == 200) {
          if (type == 1 || type == 7) {
            vm.uploadImg(vm.upImgArr)
          } else if (type == 6) {
            vm.updateRelationCodeByDetailId(planDetailId, relationCode)
          } else {
            vm.updateNoteAndImageRehabilitationOperate(planDetailId)
          }
        } else {
          layer.msg(res.msg, {
            icon: 5
          })
        }
      })
    },
    //上传图片
    uploadImg: function (data) {
      var vm = this
      var len = data.length
      if (len == 0) {
        vm.updateNoteAndImageRehabilitationOperate(vm.planid)
      } else {
        var file = data[len - 1]
        var formData = new FormData()
        formData.append('file', file)
        rehaAPI.upload(formData).then(function (res) {
          if (res.status == 200) {
            vm.upImgs[len - 1].img = res.data
            data.pop()
            vm.$forceUpdate()
            vm.uploadImg(data)
          } else {
            layer.msg(res.msg, {
              icon: 5
            })
          }
        })
      }
    },
    updateNoteAndImageRehabilitationOperate: function (planDetailId, relationCode) {
      var vm = this
      var _image = []
      $.each(vm.upImgs, function (index, obj) {
        _image.push(obj.img)
      })
      var params = {
        planDetailId: planDetailId,
        node: vm.service && vm.service.node ? vm.service.node : null,
        image: JSON.stringify(_image) || ''
      }
      if (relationCode) {
        params['relationCode'] = relationCode
      }
      var loadding = top.layer.load(0, {
        shade: false
      }) //0代表加载的风格,支持0-2
      rehaAPI.updateNoteAndImageRehabilitationOperate(params).then(function (res) {
        top.layer.close(loadding)
        if (res.status == 200) {
          vm.getServiceItem()
          top.rehabilitationVue.refresh()
        }
      })
    },
    updateRelationCodeByDetailId: function (planDetailId, relationCode) {
      var vm = this
      var params = {
        planDetailId: planDetailId,
        relationCode: relationCode
      }
      rehaAPI.updateRelationCodeByDetailId(params).then(function (res) {
        if (res.status == 200) {
          vm.getServiceItem()
          top.rehabilitationVue.refresh()
        } else {
          showErrorMessage(res.msg)
        }
      })
    },
    viewDetial: function (type, code) {
      var vm = this
      if (type == 3) {
        top.layer.msg('客户端暂不支持查询健康指导记录')
      } else if (type == 4) {
        top.layer.msg('客户端暂不支持查询随访记录')
      } else {
        top.layer.open({
          type: 2,
          //				  offset: ['100px'], //右下角弹出
          area: ['80%', '600px'],
          shade: 0.5,
          title: '指导教育',
          fixed: true, //不固定
          maxmin: true,
          closeBtn: 1,
          shift: 5,
          shadeClose: false, //点击遮罩关闭层
          content: '../../article/html/article-info.html?articleId=' + code,
          end: function () {
            // 未点击确定按钮,点击关闭按钮
            vm.getServiceItem()
          }
        })
      }
    },
    getContent: function (value, type) {
      var res = value
      if (type == 2 || type == 9) {
        res = "<img src='" + httpRequest.getImgUrl(res) + "'>"
      } else if (type == 3) {
        res = '【语音】'
      } else if (type == 19) {
        res = '【聊天记录】'
      } else if (type == 12) {
        res = '【视频】'
      }
      return res
    }
  },
  filters: {
    formatDate: function (value, format) {
      if (!value) return
      var fmt = format || 'yyyy-MM-dd hh:mm'
      var date = new Date(value)
      if (/(y+)/.test(fmt)) {
        fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
      }
      let o = {
        'M+': date.getMonth() + 1,
        'd+': date.getDate(),
        'h+': date.getHours(),
        'm+': date.getMinutes(),
        's+': date.getSeconds()
      }
      for (let k in o) {
        if (new RegExp(`(${k})`).test(fmt)) {
          let str = o[k] + ''
          fmt = fmt.replace(RegExp.$1, RegExp.$1.length === 1 ? str : ('00' + str).substr(str.length))
        }
      }
      return fmt
    },
    getImgUrl: function (value) {
      var url = httpRequest.getImgUrl(value)
      return url
    }
  }
})
$('body').on('click', 'img', function () {

+ 926 - 881
app/rehabilitation/js/rehabilitation_management.js

@ -1,887 +1,932 @@
!function(){
	var httpData=GetRequest();
	var currentGMT=new Date();//当前时间GMT
	var xuetangDuring = ['', '早餐前', '早餐后', '午餐前', '午餐后', '晚餐前', '晚餐后', '睡前'];
	var normalLevel = [
		[],
		[7, 4],
		[11.1, 4],
		[7, 4],
		[11.1, 4],
		[7, 4],
		[11.1, 4],
		[7, 4]
	];
	var docInfo = JSON.parse(localStorage.docInfo);
	function showSuccessMessage(msg) {
		layer.msg(msg, {
			icon: 1
		})
	}
	
	function showErrorMessage(msg) {
		layer.msg(msg, {
			icon: 5
		})
	}
	
	function showWarningMessage(msg) {
		layer.msg(msg, {
			icon: 2
		})
	}
	
	function showInfoMessage(msg) {
		layer.msg(msg, {
			icon: 6
		})
	}
	top.rehabilitationVue = new Vue({
		el:"#app",
		data:{
			ynow: currentGMT.getFullYear(),//年份
			mnow: currentGMT.getMonth(),//月份(比实际少一个月---0开始至11)
			dnow: currentGMT.getDate(),//当前日
			currentDay:null,//带中文格式的当前年月
			currentDayForEn:null,//不带中文格式年月日2018/10/01如果写成/的话  转换成时间戳会变成北京时间8点
			calendarData:[],//日历数据
			loginDoctor:JSON.parse(localStorage.getItem('wlyyAgent')),
			timeAxisData:[],//时间轴数据
			__Data:[],//当前的年月(日历)
			__xData:[],//当前的年月(时间轴)
			isFastSearch: false, // 是否是快速查找任务
			status: '',//任务状态(0未完成,1已完成,2已预约)
			searchTask: '',//快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访,5、复诊)
			searchTaskName: '全部',//快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访,5、复诊)
			planId: httpData['planId'],
			patientCode: httpData['patientCode'],
			taskArr:[{code:"",name:"全部"},{code:2,name:"康复咨询"},{code:4,name:"上门服务"},{code:1,name:"电话/短信关怀"},{code:3,name:"健康监测"},{code:5,name:"康复指导"},
        		{code:6,name:"康复随访"},{code:7,name:"康复复诊"}],        
        	statusArr:[{code:"",name:"全部"},{code:0,name:"未完成"},{code:1,name:"已完成"},{code:2,name:"已预约"}],
			curTask:'',//快速查找是否点击了搜索按钮
			curTaskName:'',//快速查找是否点击了搜索按钮
			tabStatus:null,
			planInfo:{},
			docList:[],
			diagnosisInformation: null,
			searchData: [], // 搜索计划安排(去年、今年、明年)
			medicalRecordsList: [], //病历列表
			limitlessItems: [],
			showServerItemDetail: false,
			serverItemInfo: undefined,
			islimit: false,
			scList:[]
		},
		mounted:function(){
!(function () {
  var httpData = GetRequest()
  var currentGMT = new Date() //当前时间GMT
  var xuetangDuring = ['', '早餐前', '早餐后', '午餐前', '午餐后', '晚餐前', '晚餐后', '睡前']
  var normalLevel = [[], [7, 4], [11.1, 4], [7, 4], [11.1, 4], [7, 4], [11.1, 4], [7, 4]]
  var docInfo = JSON.parse(localStorage.docInfo)
  function showSuccessMessage(msg) {
    layer.msg(msg, {
      icon: 1
    })
  }
			if(!this.planId){
				layer.msg('未传入计划id(planId)',{icon:2})
			}else{							
				this.tabStatus=1;
			}
			this.planSchedule();
			
  function showErrorMessage(msg) {
    layer.msg(msg, {
      icon: 5
    })
  }
			// this.serviceDoctorList();//获取服务医生列表
			this.selectPlanServerDoctor();//获取服务医生列表
			this.bindEvents();
			// 获取最新的诊疗信息1条
			this.findDiagnosisInformationByPlanId()
		},
		methods:{
			gotoCheck:function(){
				var obj= {
					patientName:this.planInfo.patientName,
					patientCode:this.planInfo.patientCode
				}
      window.location.href='../../jbsc/html/statistics.html?scListItem='+encodeURIComponent(JSON.stringify(obj))
			},
			view: function (code) {
				var vm = this
					layer.open({
						type: 2,
						//				  offset: ['100px'], //右下角弹出
						area: ['568px', '100%'],
						shade: 0.5,
						title: '查看筛选结果',
						fixed: true, //不固定
						maxmin: true,
						closeBtn: 1,
						shift: 5,
						shadeClose: false, //点击遮罩关闭层
						content: '../../jbsc/html/view_screening_results.html?isView=true&resultCode=' +code
					})
				},
			gotoSc:function(){
				console.log(this.planInfo,'sadddddddddddddddddd')
				top.layer.open({
					type: 2,
					area: ['820px', '648px'],
					shade: 0.5,
					title: 'ASCVD风险评估',
					fixed: true, //不固定
					maxmin: true,
					closeBtn:1,
					shift: 5,
					shadeClose: false, //点击遮罩关闭层
					content: '../../jbsc/html/questionnaire.html?fliter_code=6bcd306aaafb4e4381071346d86fadbb1'+'&fliter_title=ASCVD风险评估'+'&resident_code='+this.planInfo.patientCode+'&resident_name='+this.planInfo.patientName+'&sex='+this.planInfo.sex+'&age='+this.planInfo.age+'&idcard='+this.planInfo.idcard+'&mobile='+this.planInfo.mobile+"&surveyStatus=2"
				});
			},
			getList:function(){
				var vm=this
				console.log('211111111111111111111111',vm.planInfo)
				rehaAPI.getList({
					doctor: docInfo.code,
					diseaseType: vm.planInfo.disease,
					type: '',
					patientName: '',
					patientCode:  this.patientCode,
					isDanger: '',
					pageNo: 1,
					pageSize: 1,
					filterType: 1,
					isAscvd: vm.planInfo.disease=='3'? 1:''
				}).then(function(res){
          vm.scList= res.data
					console.log(res,'dasssssssssssssssssss')
				})
			},
			// 刷新
			refresh: function(){
				this.planSchedule();
				this.timeAxis();
			},
			// 获取服务医生列表
			selectPlanServerDoctor: function(){
				var vm = this,
				params = {
					planId: vm.planId
				}
				rehaAPI.selectPlanServerDoctor(params).then(function(res){
					if(res.status==200){
						vm.docList = res.data
					}else{
			        	layer.msg(res.msg,{icon:5});
			        }
				})
			},
			//获取计划表
			planSchedule:function(){
				var vm = this;
				var  params = {
		            planId: this.planId,
		            patientCode: this.patientCode
		        };
				rehaAPI.planSchedule(params).then(function(res){
					 if(res.status == 200){
			            vm.planInfo = res.data;
									vm.getList()
			            vm.planInfo.tagClass = "tag-"+res.data.healthyConditionType;
			            //patientImg:居民签名照/证件照,如果不为null的话说明居民已确认,显示康复完成明细
			            if(vm.planInfo.status==2 && !vm.planInfo.patientImg){//任务全部完成时,显示完成提示框
							vm.showCompleteDailog();
			            }else if(vm.planInfo.status==2 && vm.planInfo.patientImg){//居民已确认计划完成
			            	vm.tabStatus=3;
							$("#framePage").attr("src","stop_special_service.html?planids="+vm.planId+"&planStatus="+vm.planInfo.status)
						}
						vm.selectByMedicalCode(res.data.medicalRecordsCode)
			        }else{
			        	layer.msg(res.msg,{icon:5});
			        }
				})
			},
			// 获取住院病历
			selectByMedicalCode: function(medicalRecordsCode){
				var vm = this;
				var  params = {
		            medical: medicalRecordsCode
		        };
				rehaAPI.selectByMedicalCode(params).then(function(res){
					if(res.status==200){
						vm.medicalRecordsList = res.data
					}else {
						showErrorMessage(res.msg);
					}
				})
			},
			// 查看住院病历详情
			viewMedicalDetail: function(o){
				var vm=this
				if(o.event){
					var loading = layer.load(0, {shade: false})
					recoverAPI.getPatientAccetokenByIdcard({idcard:vm.planInfo.idcard}).then(function(res){
						layer.close(loading)
						if(res.status==200){
							layer.open({
								type: 2,
								area: ['75%', '650px'],
								shade: 0.5,
								title: '住院病历',
								closeBtn: 1,
								shift: 5,
								shadeClose: false, //点击遮罩关闭层
								content: httpRequest.server+"profileweb/#/zhuyuan?patientCode="+res.data.patientCode+"&hospital="+docInfo.hospital+"&event="+o.event,
							});
						}else{
							showErrorMessage(res.msg);
						}
					})
				}else{
					layer.open({
						type: 2,
						area: ['600px', '600px'],
						shade: 0.5,
						title: '住院病历详情',
						fixed: true, //不固定
						maxmin: true,
						closeBtn:1,
						shift: 5,
						shadeClose: false, //点击遮罩关闭层
						content: '../../rehabilitation/html/medical-records-detail.html?medicalRecordsCode='+ o.code,
					});
				}
			},
			formatter: function(time){
				return new Date(time).format('yyyy-MM-dd')
			},
			// 获取最新的诊疗消息
			findDiagnosisInformationByPlanId: function() {
				var vm = this,
					loading = layer.load(0, {shade: false}),
					params = {
						planId: vm.planId
					}
				recoverAPI.findDiagnosisInformationByPlanId(params).then(function(res) {
					layer.close(loading)
					if(res.status == 200) {
						vm.diagnosisInformation = res.data
					} else {
						showErrorMessage(res.msg);
					}
				})
			},
			serviceDoctorList:function(){
				var vm = this;
				rehaAPI.serviceDoctorList({patientCode: this.patientCode}).then(function(res){
					 if(res.status == 200){
					 	vm.docList = res.data;
					 }else{
			        	layer.msg(res.msg,{icon:5});
			        }
				})
			},
			weiXinConfirmClick:function(){
				var vm = this;
				rehaAPI.sendWxMsg({planId: this.planId}).then(function(res){
					 if(res.status == 200){
					 	layer.msg("发送成功,等待居民确认");
					 	setTimeout(function(){
					 		vm.tabStatus=3;
							$("#framePage").attr("src","stop_special_service.html?planids="+vm.planId+"&planStatus="+vm.planInfo.status)
					 	},1000)
					 }else{
			        	layer.msg(res.msg,{icon:5});
			        }
				})
			},
			setImgSrc: function (src) {
                var str = httpRequest.getImgUrl(src)
                return str
            },
			showCompleteDailog:function(){
				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>', { 
		    		btn: [],
		    		area: ["400px", "340px"],
		    		title: "完成提示"
		    	}, function (index) {
		    		
	//	            layer.close(index);
		        });
			},
			refreshPage:function(){
				if(!this.planId){
					layer.msg('未传入计划id(planId)',{icon:2})
					return ;
				}
				this.goToLoadData(true);
			},
			bindEvents:function(){
				var vm = this;
				$("body").on("click",".div-patient-comfirm",function(){
					layer.closeAll();
					vm.weiXinConfirmClick();
				}).on("click", ".div-patient-home", function() {
					location.href = "../../recover/html/personal-manage.html?patientCode=" + vm.patientCode+'&planId='+vm.planId
				})
			},
			viewDetail:function(planids,type,item){
				var vm=this;
				console.log(planids,type,item,'dsaaaaaaa')
				if(!planids){
					layer.msg('无服务项',{icon:5})
					return ;
				}
				if(vm.planInfo.disease=='3'&&vm.scList.length==0&&item&&item.code=='6'&&vm.loginDoctor.doctorType!='1'){
					this.$confirm('提示该居民近一年没有进行冠心病风险评估,请先进行评估,再进行随访登记', '提示', {
					  confirmButtonText: '确定',
					  cancelButtonText: '取消',
					  type: 'warning'
					}).then(function(){
                         vm.gotoSc()
					})
					return false
  function showWarningMessage(msg) {
    layer.msg(msg, {
      icon: 2
    })
  }
				}
				if(type==1){ // 单个服务项
					layer.open({
						type: 2,
						area: ['800px', '700px'],
						shade: 0.5,
						title: '服务项目内容',
						fixed: true, //不固定
						maxmin: true,
						closeBtn:1,
						shift: 5,
						shadeClose: false, //点击遮罩关闭层
						content: '../../rehabilitation/html/guide_the_message.html?planid='+planids+'&pId='+httpData['planId']+'&patient='+vm.patientCode+'&patientName='+vm.planInfo.patientName,
						end:function(){
							vm.goToLoadData(true);	
						}
					});
					return ;
				}
				layer.open({ // 康复计划的所有服务项
					type: 2,
					area: ['800px', '700px'],
					shade: 0.5,
					title: '服务项目内容',
					fixed: true, //不固定
					maxmin: true,
					closeBtn:1,
					shift: 5,
					shadeClose: false, //点击遮罩关闭层
					content: '../../rehabilitation/html/service_item_content.html?planids='+planids+'&planId='+httpData['planId']+'&patient='+vm.patientCode+'&patientName='+vm.planInfo.patientName+'&disease='+vm.planInfo.disease+'&scLenght='+vm.scList.length,
					end:function(){
						vm.goToLoadData(true);	
					}
				});
			},
			changeStatus:function(val){
				this.status=val.code;
				console.log('this.status', this.status)
			},
			changeTask:function(val){
				this.searchTask=val.code;
				this.searchTaskName=val.name;
			},
			monDetail:function(){
			  this.currentDay = this.ynow + '年'+ (this.mnow + 1) +'月';
			  this.currentDayForEn=this.ynow+'/'+(this.mnow>=9?(this.mnow+1):"0"+(this.mnow+1))+'/'+(this.dnow>=9?this.dnow:"0"+this.dnow)
			},
			is_leap:function(year) {  //判断是否为闰年
			   return (year%100==0?res=(year%400==0?1:0):res=(year%4==0?1:0));
			},
			preMonth:function(){  //上一个月
			  if(this.mnow<=0){
			    this.mnow=11;
			    this.ynow=this.ynow-1;
			  }else{
			    this.mnow--;
			  }
			  this.monDetail();
			  this.goToLoadData(true);
			},
			getPreMouth:function(){
				var pMnow,pYnow;
				if(this.mnow<=0){
				    pMnow=11;
				    pYnow=this.ynow-1;
				  }else{
				    pMnow=this.mnow-1;
				    pYnow=this.ynow;
				  }
				var m_days=new Array(31,(28+this.is_leap(pYnow)),31,30,31,30,31,31,30,31,30,31);  //每个月的天数
				return {
						days:m_days[pMnow],
						date:pYnow+'-'+(++pMnow>=10?pMnow:"0"+pMnow)
					}
			},
			nextMonth:function(){   //下一个月
			  if(this.mnow>=11){
			    this.mnow=0;
			    this.ynow=this.ynow+1;
			  }else{
			     this.mnow++;
			  }
			  this.monDetail();
			  this.goToLoadData(true);			
			},
			getNextMouth:function(){
				var nMnow,nYnow;
				if(this.mnow>=11){
				    nMnow=0;
				    nYnow=this.ynow+1;
				  }else{
				     nMnow=this.mnow+1;
				     nYnow=this.ynow;
				  }
				var m_days=new Array(31,(28+this.is_leap(nYnow)),31,30,31,01,31,31,30,31,30,31);  //每个月的天数
				return {
						days:m_days[nMnow],
						date:nYnow+'-'+(++nMnow>=10?nMnow:"0"+nMnow)
					}
			},
			goToLoadData:function(flag){//flag是否更新数据
				this.tabStatus==1 && (!this.calendarData.length || flag) && this.calendar();
				this.tabStatus==2 && (!this.timeAxisData.length || flag) && this.timeAxis();
				// this.changeSearch(-1)
			},
			calendar:function(){
			  var nlstr = new Date(this.ynow,this.mnow,1);  //当月第一天
			  var firstday = nlstr.getDay()-1;//第一天星期几,默认是周日  我们改成周一
			  firstday=firstday==-1?6:firstday;//如果是-1,说明当月的第一天是周日
			  var m_days=new Array(31,(28+this.is_leap(this.ynow)),31,30,31,30,31,31,30,31,30,31);  //每个月的天数
			  var tr_str=Math.ceil((m_days[this.mnow] + firstday)/7);   //当前月天数+第一天是星期几的数值   获得 表格行数
			  var c_days=m_days[this.mnow];//当前月份的天数
			  var p_arr=this.getPreMouth();
			  var n_arr=this.getNextMouth();
			  var i,k,idx,date_str;
			  var dataArr=[];//天数/年月
			  for(i=0;i<tr_str;i++) { //表格的行
			     for(k=0;k<7;k++) { //表格每行的单元格
			        idx=i*7+k; //单元格自然序列号
			        date_str=idx-firstday+1; //计算日期
			        var __ym;
			        if(date_str<=0){//过滤无效日期(小于等于零的、大于月总天数的)
			        	date_str=date_str+p_arr['days'];//当前日期+上个月的天数就是上个月的日期
			        	__ym=p_arr['date'];
			        }else if(date_str>c_days){
			        	date_str=date_str-c_days;//下个月的日期就是这个月的天数-当月的天数
			        	__ym=n_arr['date'];
			        }else{
			        	__ym=this.ynow+'-'+(this.mnow>=9?"":"0")+(this.mnow+1);
			        }
			        dataArr.push({
			        	day:date_str,
			        	date:__ym
			        });
			     }
			  }
			  this.__Data=dataArr;
			  this.monDetail();
			  this.calenderPlanDetail();
			},
			daysSort: function(arr) {
				var getArr = JSON.parse(JSON.stringify(arr)),
					returnArr = []
				for(var i = 1; i < 31; i++) {
					for(var j = 0, len = getArr.length; j < len; j++) {
						var stri = i > 9 + '' ? i : '0'+i
						if(getArr[j].day == stri) {
							returnArr.push(getArr[j])
							getArr.splice(j,1)
							break;
						}
					}
				}
				return returnArr
			},
			// 日历有计划数据处理
			planHandleData: function(data, day, mounth) {
				var item = data;
				item.day = day;
				if(mounth) {item.mounth = mounth}
				var finishFlag=false
				var sFlag=false;
				var fFlag=false;
				if(item.specialist){
					if(item.specialist.all==item.specialist.finish){
						sFlag=true;
					}
				}else{
					sFlag = true;
				}
				if(item.family){
					if(item.family.all==item.family.finish){
						fFlag = true;
					}
				}else{
					fFlag = true;
				}
				finishFlag = sFlag && fFlag;
				item.finishFlag=finishFlag;
				return item
			},
//						日历请求
			calenderPlanDetail:function(){
				var vm=this;
				var __days=vm.__Data;
				var lastDay=(__days.concat()).pop().day;
				lastDay=lastDay>9?lastDay:'0'+lastDay;
				if(vm.searchTask != '' || vm.status != '') {
					vm.isFastSearch = true
				} else {
					vm.isFastSearch = false
				}
				var params={
					executeStartTime: vm.isFastSearch ? '' : __days[0].date+'-'+__days[0].day+' 00:00:00',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
					executeEndTime: vm.isFastSearch ? '' : (__days.concat()).pop().date+'-'+lastDay+' 23:59:59',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
					planId:vm.planId,//计划id
					searchTask:vm.searchTask,//快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访)
					status:vm.status,//任务状态(0未完成,1已完成,2已预约)
				}
				rehaAPI.calendarPlanDetail(params).then(function(res){
					vm.curTask=vm.searchTask;
					vm.curTaskName=vm.searchTaskName;
					vm.calendarData=[];
					var list = [];
					if(res.status==200){
						var data=res.data
						// 快速查找
						if(vm.isFastSearch) {
							vm.searchData = []
							var searchData0 = [],
								searchData1 = [],
								searchData2 = [];
							for(var setM = 1; setM <= 12; setM++) {
								var _setM = setM > 9 ? setM : '0' + setM,
									_setY = new Date().getFullYear();
								var data0 = [],
									data1 = [],
									data2 = [];
								for(var i in data) {
									var getY = i.split("-")[0],
										getM = i.split("-")[1],
										getD = i.split("-")[2];
									// 去年
									if(_setY - 1 == getY && _setM == getM) {
										var item = vm.planHandleData(data[i], getD, getM)
										data0.push(item)
										data.length && data.splice(i,1);
									} else if(_setY == getY && _setM == getM) { // 今年
										var item = vm.planHandleData(data[i], getD, getM)
										data1.push(item)
										data.length && data.splice(i,1);
									} else if(_setY + 1 == getY && _setM == getM) { // 明年
										var item = vm.planHandleData(data[i], getD, getM)
										data2.push(item)
										data.length && data.splice(i,1);
									}
								}
								if(data0.length) {
									var dataSort = vm.daysSort(data0)
									var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
									for(var i = 0; i < 7 - addlen; i++) {
										dataSort.push({
											noService:true
										})	
									}
									searchData0.push(dataSort)
								}
								if(data1.length) {
									var dataSort = vm.daysSort(data1)
									var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
									for(var i = 0; i < 7 - addlen; i++) {
										dataSort.push({
											noService:true
										})	
									}
									searchData1.push(dataSort)
								}
								if(data2.length) {
									var dataSort = vm.daysSort(data2)
									var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
									for(var i = 0; i < 7 - addlen; i++) {
										dataSort.push({
											noService:true
										})	
									}
									searchData2.push(dataSort)
								}
							}
							if(searchData0.length) {vm.searchData.push(searchData0)}
							if(searchData1.length) {vm.searchData.push(searchData1)}
							if(searchData2.length) {vm.searchData.push(searchData2)}
							return false;
						}
						// 正常日历
						var _currentTimeStamp=+new Date(new Date().setHours(0, 0, 0, 0));
						for(var i in __days){
							var _key=__days[i].date+'-'+(__days[i].day>9?__days[i].day:'0'+__days[i].day);
							var item={
									noService:true,
									day:__days[i].day
								};
							for(var j in data){
								if(_key==j){
									item = vm.planHandleData(data[j], __days[i].day)
									data.length && data.splice(j,1);
									break;
								}
							}
							var thatTime=+new Date(_key)-8*60*60*1000;
							var future=_currentTimeStamp>thatTime?0:(_currentTimeStamp==thatTime?1:2);
							item.future=future;
							list.push(item);
//							vm.calendarData.push(item);
						}
						vm.calendarData = _.chunk(list, 7)
					}
				})
			},
//						时间轴请求
			timeAxis:function(){
				var m_days=new Array(31,(28+this.is_leap(this.ynow)),31,30,31,30,31,31,30,31,30,31);  //每个月的天数
				var c_days=m_days[this.mnow];//当前月份的天数
				var __ym=this.ynow+'-'+(this.mnow>=9?"":"0")+(this.mnow+1);
				var dataArr=[];//天数/年月
				for(;c_days>0;c_days--){
					dataArr.push({
			        	day:c_days,
			        	date:__ym
			        });
				}
				this.__xData=dataArr;
				this.monDetail();
				this.calendarPlanDetailList();
				this.calendarPlanDetailItems();
			},
			//时间轴请求
			calendarPlanDetailList:function(){
				var vm=this;
				var __days=vm.__xData;
				var lastDay=(__days.concat()).pop().day;
				lastDay=lastDay>9?lastDay:'0'+lastDay;
				var params={
					executeEndTime:__days[0].date+'-'+__days[0].day+' 23:59:59',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
					executeStartTime:(__days.concat()).pop().date+'-'+lastDay+' 00:00:00',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
					planId:vm.planId,//计划id
					searchTask:vm.searchTask,//快速查找任务:(1、我的任务,2、随访,3、复诊,4、健康教育)
					status:vm.status,//任务状态(0未完成,1已完成,2已预约)
				}
				rehaAPI.calendarPlanDetailList(params).then(function(res){
					if(res.status==200){
						// var _currentTimeStamp=+new Date(new Date().setHours(0, 0, 0, 0))
						var list=_.map(res.data||{},function(o){
							// var _time=o.executeTime.split(' ');
							// var thatTime=+new Date(_time[0]);
							// var future=_currentTimeStamp>thatTime?0:(_currentTimeStamp==thatTime?1:2);
							// (o.status==0 && _currentTimeStamp>thatTime) && (future=-1)
							// var _html=o.status==2?'预':(future==-1?'逾':'');
							// _html=future==1?'今':_html;
							// if(_html=='预') future=3;
							var _time=o.executeTime.split(' ');
							var _html = ''
							var d = new Date(o.execute_time);
							if(d.format("yyyy-MM-dd") == new Date().format("yyyy-MM-dd")) {
								o.firstSort = '1'
								future = 1
								_html = '今'
								if(o.status) {
									o.secondSort = '2'
								} else {
									o.secondSort = '1'
								}
							} else if(d > new Date()) {
								o.firstSort = '3'
								future = 2
								if(o.status) {
									o.secondSort = '2'
								} else {
									o.secondSort = '1'
								}
							} else {
								o.firstSort = '2'
								future = 0
								if(o.status == 0) {
									future = -1
									_html = '逾'
									o.secondSort = '1'
								} else {
									o.secondSort = '2'
								}
							}
							o.html=_html
							o.date=_time[0];
							o.time=_time[1];
							o.future=future;
							o.doctorName = o.doctor_name
							o.hospitalName = o.hospital_name
							return o;
						})||[];
						var nowTime = new Date().getTime()
						vm.timeAxisData = _.sortBy(list, function(o) {
							return o.firstSort + o.secondSort + (nowTime/o.execute_time)
						});
					}
				})
			},
			viewServerItemsDetail: function(o){
				console.log("o",o);
				
				
				if(o.code=='2'){
					showInfoMessage('请从“消息-患者消息列表”中查看患者的康复咨询记录')
					return
				}
				if(o.code=='3'){
					layer.open({
						type: 2,
						area: ['700px', '700px'],
						shade: 0.5,
						title: '健康记录',
						fixed: true, //不固定
						maxmin: true,
						closeBtn: 1,
						// shift: 5,
						shadeClose: false, //点击遮罩关闭层
						content: '../html/healthMonitor.html?patient=' + this.patientCode
					})
					return
				}
				this.serverItemInfo = o
				this.showServerItemDetail = true
				this.islimit = o.frequency_code?true:false
			},
			calendarPlanDetailItems: function(){
				var vm=this;
				var __days=vm.__xData;
				var lastDay=(__days.concat()).pop().day;
				lastDay=lastDay>9?lastDay:'0'+lastDay;
				var params={
					executeEndTime:__days[0].date+'-'+__days[0].day+' 23:59:59',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
					executeStartTime:(__days.concat()).pop().date+'-'+lastDay+' 00:00:00',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
					planId:vm.planId,//计划id
					searchTask:vm.searchTask,//快速查找任务:(1、我的任务,2、随访,3、复诊,4、健康教育)
					status:vm.status,//任务状态(0未完成,1已完成,2已预约)
				}
				rehaAPI.calendarPlanDetailItems(params).then(function(res){
					if(res.status==200){
						var arr = []
						$.each(res.data, function(i, o){
							if(o.code=='3'&&o.type){
								if(o.type==2){
									o.levelClazz = vm.getLevelClazz(o.value1, 139, 90) || vm.getLevelClazz(o.value2, 89, 60)
									o.levelClazz1 = vm.getLevelClazz(o.value1, 139, 90)
									o.levelClazz2 = vm.getLevelClazz(o.value2, 89, 60)
									o.levelClazz3 = vm.getLevelClazz(o.value3, 100, 60)
								} else {
									var num = parseInt(o.value2)
									var max = normalLevel[num][0],
									min = normalLevel[num][1];
									o.levelClazz1 = vm.getLevelClazz(o.value1, max, min)
									o.levelName = xuetangDuring[o.value2]
								}
							}
							arr.push(o)
						})
						vm.limitlessItems = arr
					}
				})
			},
			getLevelClazz: function(value,max,min) {
				if(!value||(!max && !min)) {
					return '';
				}
				var value = parseFloat(value);
				if(value < min) {
					return 'low';
				} else if(value > max) {
					return 'high';
				} else {
					return ''
				}
			},
			getNormalLevel: function(index) {
				return [
					[],
					[7, 4],
					[11.1, 4],
					[7, 4],
					[11.1, 4],
					[7, 4],
					[11.1, 4],
					[7, 4]
				][index];
			},
			confirmSearch: function(){
				this.changeSearch(-1)
				this.goToLoadData(true)
			},
			changeSearch: function(status) {
				var i = status == 1 ? -400 : 0;
				var timer1 = setInterval(function() {
					i += (5 * status)
					$(".search-left").css("right", i + "px")
					if(status == 1 && i >= 0) {
						clearInterval(timer1)
					}
					if(status == -1 && i <= -400) {
						clearInterval(timer1)
					}
				}, 5)
			},
			//邀请视频聊天
			openVideoChat: function(otherDoc){
				var vm = this;
				var loading = layer.load(0);
  function showInfoMessage(msg) {
    layer.msg(msg, {
      icon: 6
    })
  }
  top.rehabilitationVue = new Vue({
    el: '#app',
    data: {
      ynow: currentGMT.getFullYear(), //年份
      mnow: currentGMT.getMonth(), //月份(比实际少一个月---0开始至11)
      dnow: currentGMT.getDate(), //当前日
      currentDay: null, //带中文格式的当前年月
      currentDayForEn: null, //不带中文格式年月日2018/10/01如果写成/的话  转换成时间戳会变成北京时间8点
      calendarData: [], //日历数据
      loginDoctor: JSON.parse(localStorage.getItem('wlyyAgent')),
      timeAxisData: [], //时间轴数据
      __Data: [], //当前的年月(日历)
      __xData: [], //当前的年月(时间轴)
      isFastSearch: false, // 是否是快速查找任务
      status: '', //任务状态(0未完成,1已完成,2已预约)
      searchTask: '', //快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访,5、复诊)
      searchTaskName: '全部', //快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访,5、复诊)
      planId: httpData['planId'],
      patientCode: httpData['patientCode'],
      taskArr: [
        { code: '', name: '全部' },
        { code: 2, name: '康复咨询' },
        { code: 4, name: '上门服务' },
        { code: 1, name: '电话/短信关怀' },
        { code: 3, name: '健康监测' },
        { code: 5, name: '康复指导' },
        { code: 6, name: '康复随访' },
        { code: 7, name: '康复复诊' }
      ],
      statusArr: [
        { code: '', name: '全部' },
        { code: 0, name: '未完成' },
        { code: 1, name: '已完成' },
        { code: 2, name: '已预约' }
      ],
      curTask: '', //快速查找是否点击了搜索按钮
      curTaskName: '', //快速查找是否点击了搜索按钮
      tabStatus: null,
      planInfo: {},
      docList: [],
      diagnosisInformation: null,
      searchData: [], // 搜索计划安排(去年、今年、明年)
      medicalRecordsList: [], //病历列表
      limitlessItems: [],
      showServerItemDetail: false,
      serverItemInfo: undefined,
      islimit: false,
      scList: []
    },
    mounted: function () {
      if (!this.planId) {
        layer.msg('未传入计划id(planId)', { icon: 2 })
      } else {
        this.tabStatus = 1
      }
      this.planSchedule()
				var participants = []
				var participantsMobile = {}
      // this.serviceDoctorList();//获取服务医生列表
      this.selectPlanServerDoctor() //获取服务医生列表
      this.bindEvents()
      // 获取最新的诊疗信息1条
      this.findDiagnosisInformationByPlanId()
    },
    methods: {
      gotoCheck: function () {
        var obj = {
          patientName: this.planInfo.patientName,
          patientCode: this.planInfo.patientCode
        }
        window.location.href = '../../jbsc/html/statistics.html?scListItem=' + encodeURIComponent(JSON.stringify(obj))
      },
      view: function (code) {
        var vm = this
        layer.open({
          type: 2,
          //				  offset: ['100px'], //右下角弹出
          area: ['568px', '100%'],
          shade: 0.5,
          title: '查看筛选结果',
          fixed: true, //不固定
          maxmin: true,
          closeBtn: 1,
          shift: 5,
          shadeClose: false, //点击遮罩关闭层
          content: '../../jbsc/html/view_screening_results.html?isView=true&resultCode=' + code
        })
      },
      gotoSc: function () {
        console.log(this.planInfo, 'sadddddddddddddddddd')
        top.layer.open({
          type: 2,
          area: ['820px', '648px'],
          shade: 0.5,
          title: 'ASCVD风险评估',
          fixed: true, //不固定
          maxmin: true,
          closeBtn: 1,
          shift: 5,
          shadeClose: false, //点击遮罩关闭层
          content: `../../jbsc/html/questionnaire.html?fliter_code=6bcd306aaafb4e4381071346d86fadbb1&fliter_title=ASCVD风险评估&resident_code=${this.planInfo.patientCode}&resident_name=${this.planInfo.patientName}&sex=${this.planInfo.sex}&age=${this.planInfo.age}&idcard=${this.planInfo.idcard}&mobile=${this.planInfo.mobile}&surveyStatus=2&noswitch=1`
        })
      },
      getList: function () {
        var vm = this
        console.log('211111111111111111111111', vm.planInfo)
        rehaAPI
          .getList({
            doctor: docInfo.code,
            diseaseType: vm.planInfo.disease,
            type: '',
            patientName: '',
            patientCode: this.patientCode,
            isDanger: '',
            pageNo: 1,
            pageSize: 1,
            filterType: 1,
            isAscvd: vm.planInfo.disease == '3' ? 1 : ''
          })
          .then(function (res) {
            vm.scList = res.data
            console.log(res, 'dasssssssssssssssssss')
          })
      },
      // 刷新
      refresh: function () {
        this.planSchedule()
        this.timeAxis()
      },
      // 获取服务医生列表
      selectPlanServerDoctor: function () {
        var vm = this,
          params = {
            planId: vm.planId
          }
        rehaAPI.selectPlanServerDoctor(params).then(function (res) {
          if (res.status == 200) {
            vm.docList = res.data
          } else {
            layer.msg(res.msg, { icon: 5 })
          }
        })
      },
      //获取计划表
      planSchedule: function () {
        var vm = this
        var params = {
          planId: this.planId,
          patientCode: this.patientCode
        }
        rehaAPI.planSchedule(params).then(function (res) {
          if (res.status == 200) {
            vm.planInfo = res.data
            vm.getList()
            vm.planInfo.tagClass = 'tag-' + res.data.healthyConditionType
            //patientImg:居民签名照/证件照,如果不为null的话说明居民已确认,显示康复完成明细
            if (vm.planInfo.status == 2 && !vm.planInfo.patientImg) {
              //任务全部完成时,显示完成提示框
              vm.showCompleteDailog()
            } else if (vm.planInfo.status == 2 && vm.planInfo.patientImg) {
              //居民已确认计划完成
              vm.tabStatus = 3
              $('#framePage').attr('src', 'stop_special_service.html?planids=' + vm.planId + '&planStatus=' + vm.planInfo.status)
            }
            vm.selectByMedicalCode(res.data.medicalRecordsCode)
          } else {
            layer.msg(res.msg, { icon: 5 })
          }
        })
      },
      // 获取住院病历
      selectByMedicalCode: function (medicalRecordsCode) {
        var vm = this
        var params = {
          medical: medicalRecordsCode
        }
        rehaAPI.selectByMedicalCode(params).then(function (res) {
          if (res.status == 200) {
            vm.medicalRecordsList = res.data
          } else {
            showErrorMessage(res.msg)
          }
        })
      },
      // 查看住院病历详情
      viewMedicalDetail: function (o) {
        var vm = this
        if (o.event) {
          var loading = layer.load(0, { shade: false })
          recoverAPI.getPatientAccetokenByIdcard({ idcard: vm.planInfo.idcard }).then(function (res) {
            layer.close(loading)
            if (res.status == 200) {
              layer.open({
                type: 2,
                area: ['75%', '650px'],
                shade: 0.5,
                title: '住院病历',
                closeBtn: 1,
                shift: 5,
                shadeClose: false, //点击遮罩关闭层
                content: httpRequest.server + 'profileweb/#/zhuyuan?patientCode=' + res.data.patientCode + '&hospital=' + docInfo.hospital + '&event=' + o.event
              })
            } else {
              showErrorMessage(res.msg)
            }
          })
        } else {
          layer.open({
            type: 2,
            area: ['600px', '600px'],
            shade: 0.5,
            title: '住院病历详情',
            fixed: true, //不固定
            maxmin: true,
            closeBtn: 1,
            shift: 5,
            shadeClose: false, //点击遮罩关闭层
            content: '../../rehabilitation/html/medical-records-detail.html?medicalRecordsCode=' + o.code
          })
        }
      },
      formatter: function (time) {
        return new Date(time).format('yyyy-MM-dd')
      },
      // 获取最新的诊疗消息
      findDiagnosisInformationByPlanId: function () {
        var vm = this,
          loading = layer.load(0, { shade: false }),
          params = {
            planId: vm.planId
          }
        recoverAPI.findDiagnosisInformationByPlanId(params).then(function (res) {
          layer.close(loading)
          if (res.status == 200) {
            vm.diagnosisInformation = res.data
          } else {
            showErrorMessage(res.msg)
          }
        })
      },
      serviceDoctorList: function () {
        var vm = this
        rehaAPI.serviceDoctorList({ patientCode: this.patientCode }).then(function (res) {
          if (res.status == 200) {
            vm.docList = res.data
          } else {
            layer.msg(res.msg, { icon: 5 })
          }
        })
      },
      weiXinConfirmClick: function () {
        var vm = this
        rehaAPI.sendWxMsg({ planId: this.planId }).then(function (res) {
          if (res.status == 200) {
            layer.msg('发送成功,等待居民确认')
            setTimeout(function () {
              vm.tabStatus = 3
              $('#framePage').attr('src', 'stop_special_service.html?planids=' + vm.planId + '&planStatus=' + vm.planInfo.status)
            }, 1000)
          } else {
            layer.msg(res.msg, { icon: 5 })
          }
        })
      },
      setImgSrc: function (src) {
        var str = httpRequest.getImgUrl(src)
        return str
      },
      showCompleteDailog: function () {
        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>',
          {
            btn: [],
            area: ['400px', '340px'],
            title: '完成提示'
          },
          function (index) {
            //	            layer.close(index);
          }
        )
      },
      refreshPage: function () {
        if (!this.planId) {
          layer.msg('未传入计划id(planId)', { icon: 2 })
          return
        }
        this.goToLoadData(true)
      },
      bindEvents: function () {
        var vm = this
        $('body')
          .on('click', '.div-patient-comfirm', function () {
            layer.closeAll()
            vm.weiXinConfirmClick()
          })
          .on('click', '.div-patient-home', function () {
            location.href = '../../recover/html/personal-manage.html?patientCode=' + vm.patientCode + '&planId=' + vm.planId
          })
      },
      viewDetail: function (planids, type, item) {
        var vm = this
        console.log(planids, type, item, 'dsaaaaaaa')
        if (!planids) {
          layer.msg('无服务项', { icon: 5 })
          return
        }
        if (vm.planInfo.disease == '3' && vm.scList.length == 0 && item && item.code == '6' && vm.loginDoctor.doctorType != '1') {
          this.$confirm('提示该居民近一年没有进行冠心病风险评估,请先进行评估,再进行随访登记', '提示', {
            confirmButtonText: '确定',
            cancelButtonText: '取消',
            type: 'warning'
          }).then(function () {
            vm.gotoSc()
          })
          return false
        }
        if (type == 1) {
          // 单个服务项
          layer.open({
            type: 2,
            area: ['800px', '700px'],
            shade: 0.5,
            title: '服务项目内容',
            fixed: true, //不固定
            maxmin: true,
            closeBtn: 1,
            shift: 5,
            shadeClose: false, //点击遮罩关闭层
            content:
              '../../rehabilitation/html/guide_the_message.html?planid=' +
              planids +
              '&pId=' +
              httpData['planId'] +
              '&patient=' +
              vm.patientCode +
              '&patientName=' +
              vm.planInfo.patientName,
            end: function () {
              vm.goToLoadData(true)
            }
          })
          return
        }
        layer.open({
          // 康复计划的所有服务项
          type: 2,
          area: ['800px', '700px'],
          shade: 0.5,
          title: '服务项目内容',
          fixed: true, //不固定
          maxmin: true,
          closeBtn: 1,
          shift: 5,
          shadeClose: false, //点击遮罩关闭层
          content:
            '../../rehabilitation/html/service_item_content.html?planids=' +
            planids +
            '&planId=' +
            httpData['planId'] +
            '&patient=' +
            vm.patientCode +
            '&patientName=' +
            vm.planInfo.patientName +
            '&disease=' +
            vm.planInfo.disease +
            '&scLenght=' +
            vm.scList.length,
          end: function () {
            vm.goToLoadData(true)
          }
        })
      },
      changeStatus: function (val) {
        this.status = val.code
        console.log('this.status', this.status)
      },
      changeTask: function (val) {
        this.searchTask = val.code
        this.searchTaskName = val.name
      },
      monDetail: function () {
        this.currentDay = this.ynow + '年' + (this.mnow + 1) + '月'
        this.currentDayForEn = this.ynow + '/' + (this.mnow >= 9 ? this.mnow + 1 : '0' + (this.mnow + 1)) + '/' + (this.dnow >= 9 ? this.dnow : '0' + this.dnow)
      },
      is_leap: function (year) {
        //判断是否为闰年
        return year % 100 == 0 ? (res = year % 400 == 0 ? 1 : 0) : (res = year % 4 == 0 ? 1 : 0)
      },
      preMonth: function () {
        //上一个月
        if (this.mnow <= 0) {
          this.mnow = 11
          this.ynow = this.ynow - 1
        } else {
          this.mnow--
        }
        this.monDetail()
        this.goToLoadData(true)
      },
      getPreMouth: function () {
        var pMnow, pYnow
        if (this.mnow <= 0) {
          pMnow = 11
          pYnow = this.ynow - 1
        } else {
          pMnow = this.mnow - 1
          pYnow = this.ynow
        }
        var m_days = new Array(31, 28 + this.is_leap(pYnow), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31) //每个月的天数
        return {
          days: m_days[pMnow],
          date: pYnow + '-' + (++pMnow >= 10 ? pMnow : '0' + pMnow)
        }
      },
      nextMonth: function () {
        //下一个月
        if (this.mnow >= 11) {
          this.mnow = 0
          this.ynow = this.ynow + 1
        } else {
          this.mnow++
        }
        this.monDetail()
        this.goToLoadData(true)
      },
      getNextMouth: function () {
        var nMnow, nYnow
        if (this.mnow >= 11) {
          nMnow = 0
          nYnow = this.ynow + 1
        } else {
          nMnow = this.mnow + 1
          nYnow = this.ynow
        }
        var m_days = new Array(31, 28 + this.is_leap(nYnow), 31, 30, 31, 01, 31, 31, 30, 31, 30, 31) //每个月的天数
        return {
          days: m_days[nMnow],
          date: nYnow + '-' + (++nMnow >= 10 ? nMnow : '0' + nMnow)
        }
      },
      goToLoadData: function (flag) {
        //flag是否更新数据
        this.tabStatus == 1 && (!this.calendarData.length || flag) && this.calendar()
        this.tabStatus == 2 && (!this.timeAxisData.length || flag) && this.timeAxis()
        // this.changeSearch(-1)
      },
      calendar: function () {
        var nlstr = new Date(this.ynow, this.mnow, 1) //当月第一天
        var firstday = nlstr.getDay() - 1 //第一天星期几,默认是周日  我们改成周一
        firstday = firstday == -1 ? 6 : firstday //如果是-1,说明当月的第一天是周日
        var m_days = new Array(31, 28 + this.is_leap(this.ynow), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31) //每个月的天数
        var tr_str = Math.ceil((m_days[this.mnow] + firstday) / 7) //当前月天数+第一天是星期几的数值   获得 表格行数
        var c_days = m_days[this.mnow] //当前月份的天数
        var p_arr = this.getPreMouth()
        var n_arr = this.getNextMouth()
        var i, k, idx, date_str
        var dataArr = [] //天数/年月
        for (i = 0; i < tr_str; i++) {
          //表格的行
          for (k = 0; k < 7; k++) {
            //表格每行的单元格
            idx = i * 7 + k //单元格自然序列号
            date_str = idx - firstday + 1 //计算日期
            var __ym
            if (date_str <= 0) {
              //过滤无效日期(小于等于零的、大于月总天数的)
              date_str = date_str + p_arr['days'] //当前日期+上个月的天数就是上个月的日期
              __ym = p_arr['date']
            } else if (date_str > c_days) {
              date_str = date_str - c_days //下个月的日期就是这个月的天数-当月的天数
              __ym = n_arr['date']
            } else {
              __ym = this.ynow + '-' + (this.mnow >= 9 ? '' : '0') + (this.mnow + 1)
            }
            dataArr.push({
              day: date_str,
              date: __ym
            })
          }
        }
        this.__Data = dataArr
        this.monDetail()
        this.calenderPlanDetail()
      },
      daysSort: function (arr) {
        var getArr = JSON.parse(JSON.stringify(arr)),
          returnArr = []
        for (var i = 1; i < 31; i++) {
          for (var j = 0, len = getArr.length; j < len; j++) {
            var stri = i > 9 + '' ? i : '0' + i
            if (getArr[j].day == stri) {
              returnArr.push(getArr[j])
              getArr.splice(j, 1)
              break
            }
          }
        }
        return returnArr
      },
      // 日历有计划数据处理
      planHandleData: function (data, day, mounth) {
        var item = data
        item.day = day
        if (mounth) {
          item.mounth = mounth
        }
        var finishFlag = false
        var sFlag = false
        var fFlag = false
        if (item.specialist) {
          if (item.specialist.all == item.specialist.finish) {
            sFlag = true
          }
        } else {
          sFlag = true
        }
        if (item.family) {
          if (item.family.all == item.family.finish) {
            fFlag = true
          }
        } else {
          fFlag = true
        }
        finishFlag = sFlag && fFlag
        item.finishFlag = finishFlag
        return item
      },
      //						日历请求
      calenderPlanDetail: function () {
        var vm = this
        var __days = vm.__Data
        var lastDay = __days.concat().pop().day
        lastDay = lastDay > 9 ? lastDay : '0' + lastDay
        if (vm.searchTask != '' || vm.status != '') {
          vm.isFastSearch = true
        } else {
          vm.isFastSearch = false
        }
        var params = {
          executeStartTime: vm.isFastSearch ? '' : __days[0].date + '-' + __days[0].day + ' 00:00:00', //日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
          executeEndTime: vm.isFastSearch ? '' : __days.concat().pop().date + '-' + lastDay + ' 23:59:59', //日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
          planId: vm.planId, //计划id
          searchTask: vm.searchTask, //快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访)
          status: vm.status //任务状态(0未完成,1已完成,2已预约)
        }
        rehaAPI.calendarPlanDetail(params).then(function (res) {
          vm.curTask = vm.searchTask
          vm.curTaskName = vm.searchTaskName
          vm.calendarData = []
          var list = []
          if (res.status == 200) {
            var data = res.data
            // 快速查找
            if (vm.isFastSearch) {
              vm.searchData = []
              var searchData0 = [],
                searchData1 = [],
                searchData2 = []
              for (var setM = 1; setM <= 12; setM++) {
                var _setM = setM > 9 ? setM : '0' + setM,
                  _setY = new Date().getFullYear()
                var data0 = [],
                  data1 = [],
                  data2 = []
                for (var i in data) {
                  var getY = i.split('-')[0],
                    getM = i.split('-')[1],
                    getD = i.split('-')[2]
                  // 去年
                  if (_setY - 1 == getY && _setM == getM) {
                    var item = vm.planHandleData(data[i], getD, getM)
                    data0.push(item)
                    data.length && data.splice(i, 1)
                  } else if (_setY == getY && _setM == getM) {
                    // 今年
                    var item = vm.planHandleData(data[i], getD, getM)
                    data1.push(item)
                    data.length && data.splice(i, 1)
                  } else if (_setY + 1 == getY && _setM == getM) {
                    // 明年
                    var item = vm.planHandleData(data[i], getD, getM)
                    data2.push(item)
                    data.length && data.splice(i, 1)
                  }
                }
                if (data0.length) {
                  var dataSort = vm.daysSort(data0)
                  var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
                  for (var i = 0; i < 7 - addlen; i++) {
                    dataSort.push({
                      noService: true
                    })
                  }
                  searchData0.push(dataSort)
                }
                if (data1.length) {
                  var dataSort = vm.daysSort(data1)
                  var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
                  for (var i = 0; i < 7 - addlen; i++) {
                    dataSort.push({
                      noService: true
                    })
                  }
                  searchData1.push(dataSort)
                }
                if (data2.length) {
                  var dataSort = vm.daysSort(data2)
                  var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
                  for (var i = 0; i < 7 - addlen; i++) {
                    dataSort.push({
                      noService: true
                    })
                  }
                  searchData2.push(dataSort)
                }
              }
              if (searchData0.length) {
                vm.searchData.push(searchData0)
              }
              if (searchData1.length) {
                vm.searchData.push(searchData1)
              }
              if (searchData2.length) {
                vm.searchData.push(searchData2)
              }
              return false
            }
            // 正常日历
            var _currentTimeStamp = +new Date(new Date().setHours(0, 0, 0, 0))
            for (var i in __days) {
              var _key = __days[i].date + '-' + (__days[i].day > 9 ? __days[i].day : '0' + __days[i].day)
              var item = {
                noService: true,
                day: __days[i].day
              }
              for (var j in data) {
                if (_key == j) {
                  item = vm.planHandleData(data[j], __days[i].day)
                  data.length && data.splice(j, 1)
                  break
                }
              }
              var thatTime = +new Date(_key) - 8 * 60 * 60 * 1000
              var future = _currentTimeStamp > thatTime ? 0 : _currentTimeStamp == thatTime ? 1 : 2
              item.future = future
              list.push(item)
              //							vm.calendarData.push(item);
            }
            vm.calendarData = _.chunk(list, 7)
          }
        })
      },
      //						时间轴请求
      timeAxis: function () {
        var m_days = new Array(31, 28 + this.is_leap(this.ynow), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31) //每个月的天数
        var c_days = m_days[this.mnow] //当前月份的天数
        var __ym = this.ynow + '-' + (this.mnow >= 9 ? '' : '0') + (this.mnow + 1)
        var dataArr = [] //天数/年月
        for (; c_days > 0; c_days--) {
          dataArr.push({
            day: c_days,
            date: __ym
          })
        }
        this.__xData = dataArr
        this.monDetail()
        this.calendarPlanDetailList()
        this.calendarPlanDetailItems()
      },
      //时间轴请求
      calendarPlanDetailList: function () {
        var vm = this
        var __days = vm.__xData
        var lastDay = __days.concat().pop().day
        lastDay = lastDay > 9 ? lastDay : '0' + lastDay
        var params = {
          executeEndTime: __days[0].date + '-' + __days[0].day + ' 23:59:59', //日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
          executeStartTime: __days.concat().pop().date + '-' + lastDay + ' 00:00:00', //日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
          planId: vm.planId, //计划id
          searchTask: vm.searchTask, //快速查找任务:(1、我的任务,2、随访,3、复诊,4、健康教育)
          status: vm.status //任务状态(0未完成,1已完成,2已预约)
        }
        rehaAPI.calendarPlanDetailList(params).then(function (res) {
          if (res.status == 200) {
            // var _currentTimeStamp=+new Date(new Date().setHours(0, 0, 0, 0))
            var list =
              _.map(res.data || {}, function (o) {
                // var _time=o.executeTime.split(' ');
                // var thatTime=+new Date(_time[0]);
                // var future=_currentTimeStamp>thatTime?0:(_currentTimeStamp==thatTime?1:2);
                // (o.status==0 && _currentTimeStamp>thatTime) && (future=-1)
                // var _html=o.status==2?'预':(future==-1?'逾':'');
                // _html=future==1?'今':_html;
                // if(_html=='预') future=3;
                var _time = o.executeTime.split(' ')
                var _html = ''
                var d = new Date(o.execute_time)
                if (d.format('yyyy-MM-dd') == new Date().format('yyyy-MM-dd')) {
                  o.firstSort = '1'
                  future = 1
                  _html = '今'
                  if (o.status) {
                    o.secondSort = '2'
                  } else {
                    o.secondSort = '1'
                  }
                } else if (d > new Date()) {
                  o.firstSort = '3'
                  future = 2
                  if (o.status) {
                    o.secondSort = '2'
                  } else {
                    o.secondSort = '1'
                  }
                } else {
                  o.firstSort = '2'
                  future = 0
                  if (o.status == 0) {
                    future = -1
                    _html = '逾'
                    o.secondSort = '1'
                  } else {
                    o.secondSort = '2'
                  }
                }
                o.html = _html
                o.date = _time[0]
                o.time = _time[1]
                o.future = future
                o.doctorName = o.doctor_name
                o.hospitalName = o.hospital_name
                return o
              }) || []
            var nowTime = new Date().getTime()
            vm.timeAxisData = _.sortBy(list, function (o) {
              return o.firstSort + o.secondSort + nowTime / o.execute_time
            })
          }
        })
      },
      viewServerItemsDetail: function (o) {
        console.log('o', o)
				//发起人
				participants.push({mobile: docInfo.mobile, name: docInfo.name, sex: docInfo.sex==1? 1 : 2, birthdate: "", level: 3, hospital_name: docInfo.hospitalName, idcard: ""});
				participantsMobile[docInfo.mobile] = 1;
				
				if(otherDoc){
					//被邀请人
					participants.push({
						mobile: otherDoc.doctorMobile, 
						name: otherDoc.doctorName, 
						sex: otherDoc.doctorSex==1? 1 : 2,
						birthdate: "", 
						level: 3, 
						hospital_name: otherDoc.doctorHospitalName, 
						idcard: otherDoc.doctorIdcard})
					participantsMobile[otherDoc.doctorMobile] = 0;
				}
				
				videoChatAPI.addDoctor({participants : JSON.stringify(participants)}).then(function(res){
				 	if(res.status == 200){
			            videoChatAPI.sessions({
			            	sessionId: httpRequest.uuid(24, 16),
			            	sessionType: 4,
			            	sessionName: vm.planInfo.patientName +"的远程门诊",
			            	participants: JSON.stringify(participantsMobile),
			            	videoconferencing: 1,
			            	idcard: vm.planInfo.idcard
			            }).then(function(res1){
			            	layer.close(loading)
			            	if(res1.status == 200){
			            		layer.msg("发起会话成功",{icon:6});
			            	} else{
			            		layer.msg("发起会话失败",{icon:5});
			            	}
			            }).catch(function(){
							layer.close(loading)
							layer.msg("系统繁忙",{icon:5});
						})
			        }else{
			        	layer.close(loading)
			        	layer.msg(res.msg,{icon:5});
			        }
				}).catch(function(){
					layer.close(loading)
					layer.msg("系统繁忙",{icon:5});
				})
        if (o.code == '2') {
          showInfoMessage('请从“消息-患者消息列表”中查看患者的康复咨询记录')
          return
        }
        if (o.code == '3') {
          layer.open({
            type: 2,
            area: ['700px', '700px'],
            shade: 0.5,
            title: '健康记录',
            fixed: true, //不固定
            maxmin: true,
            closeBtn: 1,
            // shift: 5,
            shadeClose: false, //点击遮罩关闭层
            content: '../html/healthMonitor.html?patient=' + this.patientCode
          })
          return
        }
        this.serverItemInfo = o
        this.showServerItemDetail = true
        this.islimit = o.frequency_code ? true : false
      },
      calendarPlanDetailItems: function () {
        var vm = this
        var __days = vm.__xData
        var lastDay = __days.concat().pop().day
        lastDay = lastDay > 9 ? lastDay : '0' + lastDay
        var params = {
          executeEndTime: __days[0].date + '-' + __days[0].day + ' 23:59:59', //日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
          executeStartTime: __days.concat().pop().date + '-' + lastDay + ' 00:00:00', //日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
          planId: vm.planId, //计划id
          searchTask: vm.searchTask, //快速查找任务:(1、我的任务,2、随访,3、复诊,4、健康教育)
          status: vm.status //任务状态(0未完成,1已完成,2已预约)
        }
        rehaAPI.calendarPlanDetailItems(params).then(function (res) {
          if (res.status == 200) {
            var arr = []
            $.each(res.data, function (i, o) {
              if (o.code == '3' && o.type) {
                if (o.type == 2) {
                  o.levelClazz = vm.getLevelClazz(o.value1, 139, 90) || vm.getLevelClazz(o.value2, 89, 60)
                  o.levelClazz1 = vm.getLevelClazz(o.value1, 139, 90)
                  o.levelClazz2 = vm.getLevelClazz(o.value2, 89, 60)
                  o.levelClazz3 = vm.getLevelClazz(o.value3, 100, 60)
                } else {
                  var num = parseInt(o.value2)
                  var max = normalLevel[num][0],
                    min = normalLevel[num][1]
                  o.levelClazz1 = vm.getLevelClazz(o.value1, max, min)
                  o.levelName = xuetangDuring[o.value2]
                }
              }
              arr.push(o)
            })
            vm.limitlessItems = arr
          }
        })
      },
      getLevelClazz: function (value, max, min) {
        if (!value || (!max && !min)) {
          return ''
        }
        var value = parseFloat(value)
        if (value < min) {
          return 'low'
        } else if (value > max) {
          return 'high'
        } else {
          return ''
        }
      },
      getNormalLevel: function (index) {
        return [[], [7, 4], [11.1, 4], [7, 4], [11.1, 4], [7, 4], [11.1, 4], [7, 4]][index]
      },
      confirmSearch: function () {
        this.changeSearch(-1)
        this.goToLoadData(true)
      },
      changeSearch: function (status) {
        var i = status == 1 ? -400 : 0
        var timer1 = setInterval(function () {
          i += 5 * status
          $('.search-left').css('right', i + 'px')
          if (status == 1 && i >= 0) {
            clearInterval(timer1)
          }
          if (status == -1 && i <= -400) {
            clearInterval(timer1)
          }
        }, 5)
      },
      //邀请视频聊天
      openVideoChat: function (otherDoc) {
        var vm = this
        var loading = layer.load(0)
			}
		
		},
		watch:{
			tabStatus:function(){
				this.goToLoadData();
			}
		}
	})
}();
        var participants = []
        var participantsMobile = {}
        //发起人
        participants.push({ mobile: docInfo.mobile, name: docInfo.name, sex: docInfo.sex == 1 ? 1 : 2, birthdate: '', level: 3, hospital_name: docInfo.hospitalName, idcard: '' })
        participantsMobile[docInfo.mobile] = 1
        if (otherDoc) {
          //被邀请人
          participants.push({
            mobile: otherDoc.doctorMobile,
            name: otherDoc.doctorName,
            sex: otherDoc.doctorSex == 1 ? 1 : 2,
            birthdate: '',
            level: 3,
            hospital_name: otherDoc.doctorHospitalName,
            idcard: otherDoc.doctorIdcard
          })
          participantsMobile[otherDoc.doctorMobile] = 0
        }
        videoChatAPI
          .addDoctor({ participants: JSON.stringify(participants) })
          .then(function (res) {
            if (res.status == 200) {
              videoChatAPI
                .sessions({
                  sessionId: httpRequest.uuid(24, 16),
                  sessionType: 4,
                  sessionName: vm.planInfo.patientName + '的远程门诊',
                  participants: JSON.stringify(participantsMobile),
                  videoconferencing: 1,
                  idcard: vm.planInfo.idcard
                })
                .then(function (res1) {
                  layer.close(loading)
                  if (res1.status == 200) {
                    layer.msg('发起会话成功', { icon: 6 })
                  } else {
                    layer.msg('发起会话失败', { icon: 5 })
                  }
                })
                .catch(function () {
                  layer.close(loading)
                  layer.msg('系统繁忙', { icon: 5 })
                })
            } else {
              layer.close(loading)
              layer.msg(res.msg, { icon: 5 })
            }
          })
          .catch(function () {
            layer.close(loading)
            layer.msg('系统繁忙', { icon: 5 })
          })
      }
    },
    watch: {
      tabStatus: function () {
        this.goToLoadData()
      }
    }
  })
})()

+ 963 - 918
component/rehabilitation/server-items-detail.js

@ -1,55 +1,55 @@
var currentGMT=new Date();//当前时间GMT
var currentGMT = new Date() //当前时间GMT
function showSuccessMessage(msg) {
	layer.msg(msg, {
		icon: 1
	})
  layer.msg(msg, {
    icon: 1
  })
}
function showSuccessMessage(msg) {
	layer.msg(msg, {
		icon: 1
	})
  layer.msg(msg, {
    icon: 1
  })
}
function showErrorMessage(msg) {
	layer.msg(msg, {
		icon: 5
	})
  layer.msg(msg, {
    icon: 5
  })
}
function showWarningMessage(msg) {
	layer.msg(msg, {
		icon: 2
	})
  layer.msg(msg, {
    icon: 2
  })
}
function showInfoMessage(msg) {
	layer.msg(msg, {
		icon: 6
	})
  layer.msg(msg, {
    icon: 6
  })
}
var previewLayerIndex, followupLayerIndex, KFZDlayerIndex;
function closeFollowUpLayer(planDetaiId, relationCode, flag){
	if($.isArray(relationCode)) {
		$.each(relationCode, function(index, item){
			_vm.saveRehabilitationOperateRecord(planDetaiId, 6, item, flag)
		})
	} else {
		_vm.saveRehabilitationOperateRecord(planDetaiId, 6, relationCode, flag)
	}
	layer.close(followupLayerIndex)
var previewLayerIndex, followupLayerIndex, KFZDlayerIndex
function closeFollowUpLayer(planDetaiId, relationCode, flag) {
  if ($.isArray(relationCode)) {
    $.each(relationCode, function (index, item) {
      _vm.saveRehabilitationOperateRecord(planDetaiId, 6, item, flag)
    })
  } else {
    _vm.saveRehabilitationOperateRecord(planDetaiId, 6, relationCode, flag)
  }
  layer.close(followupLayerIndex)
}
function closeKFZDlayer(planDetaiId, relationRecordId){
	layer.close(KFZDlayerIndex)
	_vm.saveRehabilitationOperateRecord(planDetaiId, 5)
function closeKFZDlayer(planDetaiId, relationRecordId) {
  layer.close(KFZDlayerIndex)
  _vm.saveRehabilitationOperateRecord(planDetaiId, 5)
}
function closeKFZD(){
	layer.close(KFZDlayerIndex)
	_vm.initData()
function closeKFZD() {
  layer.close(KFZDlayerIndex)
  _vm.initData()
}
var _vm 
var _vm
Vue.component('server-items-detail', {
    template: '<div class="p15 ui-grid ui-grid-vertical" style="height:calc(100%);position: relative;">\
  template:
    '<div class="p15 ui-grid ui-grid-vertical" style="height:calc(100%);position: relative;">\
					<div class="icon-group">\
						<i class="icon-edit el-icon-edit-outline mr15" @click="goToEditConfig"></i>\
						<i class="icon-close el-icon-close" @click="onClose"></i>\
@ -153,14 +153,14 @@ Vue.component('server-items-detail', {
						<button v-if="!islimit&&service.executeDoctorCode!=docInfo.uid" class="btn btn-12b7f5" @click="zdly(service)">指导留言</button>\
					</div>\
					<div v-else-if="!islimit" class="c-t-center mt15">\
						<button v-if="service.isMyTask" class="btn btn-12b7f5" @click="zdly(service)">查看留言</button>\
						<button v-if="service.isMyTask&&service.type==\'1\'" class="btn btn-yuyue" @click="addCompleteRecord()">添加完成记录</button>\
						<button v-if="service.isMyTask&&service.type==\'4\'" class="btn btn-yuyue" @click="sendSpecialistWeixinMessage(planDetaiId,4)">发送提醒</button>\
						<button v-if="service.isMyTask&&service.type==\'4\'" class="btn btn-12b7f5" @click="toDoorDialog">代预约</button>\
						<button v-if="service.isMyTask&&service.type==\'5\'" class="btn btn-yuyue" @click="kfzd()">发送康复指导</button>\
						<button v-if="service.isMyTask&&service.type==\'6\'" class="btn btn-yuyue" @click="sfjh()">创建随访计划</button>\
						<button v-if="service.isMyTask&&service.type==\'7\'" class="btn btn-yuyue" @click="sendSpecialistWeixinMessage(planDetaiId,7)">发送提醒</button>\
						<button v-if="service.isMyTask&&service.type==\'7\'" class="btn btn-12b7f5" @click="qwapp">代预约</button>\
						<button class="btn btn-12b7f5" @click="zdly(service)">查看留言</button>\
						<button v-if="service.type==\'1\'" class="btn btn-yuyue" @click="addCompleteRecord()">添加完成记录</button>\
						<button v-if="service.type==\'4\'" class="btn btn-yuyue" @click="sendSpecialistWeixinMessage(planDetaiId,4)">发送提醒</button>\
						<button v-if="service.type==\'4\'" class="btn btn-12b7f5" @click="toDoorDialog">代预约</button>\
						<button v-if="service.type==\'5\'" class="btn btn-yuyue" @click="kfzd()">发送康复指导</button>\
						<button v-if="service.type==\'6\'" class="btn btn-yuyue" @click="sfjh()">创建随访计划</button>\
						<button v-if="service.type==\'7\'" class="btn btn-yuyue" @click="sendSpecialistWeixinMessage(planDetaiId,7)">发送提醒</button>\
						<button v-if="service.type==\'7\'" class="btn btn-12b7f5" @click="qwapp">代预约</button>\
					</div>\
					<div id="completeRecord" style="display: none; padding: 15px 15px 0;">\
						<div class="note-info pt10">\
@ -184,883 +184,928 @@ Vue.component('server-items-detail', {
						</div>\
					</div>\
    			</div>',
    props: ['patientname','patientcode', 'planid', 'plandetailid'],
    data: function() {
        return {
			ynow: currentGMT.getFullYear(),//年份
			mnow: currentGMT.getMonth(),//月份(比实际少一个月---0开始至11)
			dnow: currentGMT.getDate(),//当前日
			currentDay:null,//带中文格式的当前年月
			calendarData:[],//日历数据
			timeAxisData: [], //时间轴数据
			tabStatus: 1,
			title: '',
			docInfo: JSON.parse(window.localStorage.getItem('wlyyAgent')),
			upImgs: [],
			upImgArr: [],
			imgData: {
				accept: 'image/gif, image/jpeg, image/png, image/jpg',
			},
			node: '',
			layerIndex: undefined,
			planDetaiId:'',
			service:{
				relationRecordImg:{},
				messageList:{},
			},
			message:{isImg:false,content:""},
			islimit: false,
			relationRecordId: null
  props: ['patientname', 'patientcode', 'planid', 'plandetailid'],
  data: function () {
    return {
      ynow: currentGMT.getFullYear(), //年份
      mnow: currentGMT.getMonth(), //月份(比实际少一个月---0开始至11)
      dnow: currentGMT.getDate(), //当前日
      currentDay: null, //带中文格式的当前年月
      calendarData: [], //日历数据
      timeAxisData: [], //时间轴数据
      tabStatus: 1,
      title: '',
      docInfo: JSON.parse(window.localStorage.getItem('wlyyAgent')),
      upImgs: [],
      upImgArr: [],
      imgData: {
        accept: 'image/gif, image/jpeg, image/png, image/jpg'
      },
      node: '',
      layerIndex: undefined,
      planDetaiId: '',
      service: {
        relationRecordImg: {},
        messageList: {}
      },
      message: { isImg: false, content: '' },
      islimit: false,
      relationRecordId: null
    }
  },
  watch: {
    tabStatus: function () {
      if (this.islimit) {
        this.goToLoadData(true)
      }
    }
  },
  mounted: function () {
    _vm = this
    this.initData()
  },
  methods: {
    initData: function () {
      var vm = this
      this.planDetaiId = this.plandetailid
      this.getServiceItem()
    },
    getServiceItem: function () {
      var vm = this
      var loadding = top.layer.load(0, {
        shade: false
      }) //0代表加载的风格,支持0-2
      rehaAPI
        .serviceItem({
          planDetailId: vm.planDetaiId
        })
        .then(function (res) {
          top.layer.close(loadding)
          if (res.status == 200) {
            vm.service = res.data
            var isZK = vm.docInfo.doctorType == 1 ? true : false
            vm.service.isZK = isZK
            // if (vm.service.isMyTask == 1) {
            //   //执行者
            //   vm.service.isCK = true //无法显示按钮
            //   if (vm.docInfo.uid == vm.service.specialistDoctorCode) {
            //     //说明我自己是创建者
            //     vm.service.isCK = false
            //     vm.service.isCreate = true
            //   }
            // } else {
            //   if (vm.docInfo.uid == vm.service.specialistDoctorCode) {
            //     //说明我自己是创建者
            //     vm.service.isCreate = true
            //   }
            // }
            console.log('service', vm.service)
            if (vm.service.frequencyCode) {
              vm.islimit = true
              vm.goToLoadData(true)
              vm.monDetail()
            } else {
              vm.islimit = false
              vm.tabStatus = 2
              vm.selectByPlanDetaiId()
            }
            vm.selectByGuidance()
            vm.$forceUpdate()
          } else {
            showErrorMessage(res.msg)
          }
        })
    },
    // 获取康复计划服务项的指导留言
    selectByGuidance: function () {
      var vm = this
      var params = {
        planId: vm.planid,
        itemCode: vm.service.type
      }
      rehaAPI.selectByGuidance(params).then(function (res) {
        if (res.status == 200) {
          var messageIndex = _.findIndex(res.data, { doctor_type: 1 })
          if (messageIndex > -1) {
            var message = res.data[messageIndex]
            var contentType = message.content_type
            if (contentType == 2 || contentType == 9) {
              vm.message.isImg = true
            }
            vm.message.content = vm.getContent(message.content, message.content_type)
          } else {
            vm.message.content = '无'
          }
        } else {
          showErrorMessage(res.msg)
        }
      })
    },
	watch:{
		tabStatus:function(){
			if(this.islimit){
				this.goToLoadData(true);
			}
		}
	},
    mounted: function() {
		_vm = this
		this.initData()
    goToEditConfig: function () {
      var vm = this
      location.href = '../../recover/html/new_recover.html?patient=' + vm.patientcode + '&isEditConfig=true&planId=' + vm.planid + '&planDetailId=' + vm.planDetaiId
    },
    methods: {
		initData: function(){
			var vm = this
			this.planDetaiId = this.plandetailid
			this.getServiceItem()
		},
		getServiceItem: function() {
			var vm = this;
			var loadding = top.layer.load(0, {
				shade: false
			}); //0代表加载的风格,支持0-2
			rehaAPI.serviceItem({
				planDetailId: vm.planDetaiId
			}).then(function(res) {
				top.layer.close(loadding);
				if(res.status == 200) {
					vm.service = res.data;
					var isZK=vm.docInfo.doctorType==1?true:false;
					vm.service.isZK=isZK;
					if(vm.service.isMyTask==1){//执行者										
						vm.service.isCK=true;//无法显示按钮
						if(vm.docInfo.uid==vm.service.specialistDoctorCode){//说明我自己是创建者
							vm.service.isCK=false;
							vm.service.isCreate=true;
						}
					}else{
						if(vm.docInfo.uid==vm.service.specialistDoctorCode){//说明我自己是创建者
							vm.service.isCreate=true;
						}
					}
					if(vm.service.frequencyCode){
						vm.islimit = true
						vm.goToLoadData(true)
						vm.monDetail()
					} else {
						vm.islimit = false
						vm.tabStatus = 2
						vm.selectByPlanDetaiId()
					}
					vm.selectByGuidance()
					vm.$forceUpdate()
				} else {
					showErrorMessage(res.msg)
				}
			})
		},
		// 获取康复计划服务项的指导留言
		selectByGuidance: function(){
			var vm = this
			var params = {
				planId: vm.planid,
				itemCode: vm.service.type
			}
			rehaAPI.selectByGuidance(params).then(function(res){
				if(res.status==200){
					var messageIndex = _.findIndex(res.data, {doctor_type: 1});
					if(messageIndex>-1){
						var message = res.data[messageIndex]
						var contentType = message.content_type
						if(contentType==2||contentType==9){
							vm.message.isImg = true
						}
						vm.message.content = vm.getContent(message.content,message.content_type)
					}else{
						vm.message.content = "无"
					}
				} else {
					showErrorMessage(res.msg)
				}
			})
		},
		goToEditConfig: function(){
			var vm = this
			location.href = "../../recover/html/new_recover.html?patient=" + vm.patientcode + '&isEditConfig=true&planId='+vm.planid+'&planDetailId='+vm.planDetaiId
		},
		closeAllLayer: function(name, planDetaiId, type, relationCode, flag){
			if(name=='预览康复指导'){
				layer.close()
			}
		},
		// 提醒患者 num 1康复指导2康复下转3复诊提醒4上门服务提醒5家签提醒
		sendSpecialistWeixinMessage: function(planDetaiId, type){
			var vm = this
			var text = ''
			var patientName = vm.patientname
			var patientCode = vm.patientcode
			if(type==4){ // 上门服务
				text = '请问您是否确认提醒'+patientName+'居民预约上门护理服务?'
			} else if(type==7){ // 康复复诊
				text = '请问您是否确认提醒'+patientName+'居民进行复诊?'
			}
			var current=layer.confirm(text, { 
				btn: ['确定', '取消'],
				title: "提示"
			}, function (index) {
				var _type = type == 4? 4:type==7?3:''
				var loading = layer.load(0, {shade: false})
				var params = {
					patient: patientCode,
					doctor: vm.docInfo.uid,
					type: _type,
					relationCode: planDetaiId,
					planId: vm.planid
				}
				rehaAPI.sendSpecialistWeixinMessage(params).then(function(res){
					layer.close(loading)
					if(res.status == 200){
						showSuccessMessage('提交成功!')
						if(_type==3 || _type==4){ // 提醒患者后,即认为是已完成
							vm.saveRehabilitationOperateRecord(planDetaiId, type)
						}
					} else {
						showErrorMessage(res.msg)
					}
				})
				layer.close(current); //再执行关闭
			})
		},
		// 添加完成记录
		addCompleteRecord: function(){
			var vm = this
			var detailId = this.planDetaiId
			var type = vm.service.type
			$("#completeRecord").css('display','block')
			this.layerIndex = layer.open({
				type: 1,
				area: ['500px', '450px'],
				shade: 0.5,
				title: '添加完成记录',
				btn: ['确定', '关闭'], //只是为了演示
				shadeClose: false, //点击遮罩关闭层
				content: $("#completeRecord"),
				yes: function(){
					vm.saveRehabilitationOperateRecord(detailId, 1)
					layer.close(vm.layerIndex)
				},
			});
		},
		monDetail:function(){
			this.currentDay = this.ynow + '年'+ (this.mnow + 1) +'月';
		},
		is_leap:function(year) {  //判断是否为闰年
			return (year%100==0?res=(year%400==0?1:0):res=(year%4==0?1:0));
		},
		preMonth:function(){  //上一个月
			if(this.mnow<=0){
			this.mnow=11;
			this.ynow=this.ynow-1;
			}else{
			this.mnow--;
			}
			this.monDetail();
			this.goToLoadData(true);
		},
		getPreMouth:function(){
			var pMnow,pYnow;
			if(this.mnow<=0){
				pMnow=11;
				pYnow=this.ynow-1;
				}else{
				pMnow=this.mnow-1;
				pYnow=this.ynow;
				}
			var m_days=new Array(31,(28+this.is_leap(pYnow)),31,30,31,30,31,31,30,31,30,31);  //每个月的天数
			return {
					days:m_days[pMnow],
					date:pYnow+'-'+(++pMnow>=10?pMnow:"0"+pMnow)
				}
		},
		nextMonth:function(){   //下一个月
			if(this.mnow>=11){
			this.mnow=0;
			this.ynow=this.ynow+1;
			}else{
				this.mnow++;
			}
			this.monDetail();
			this.goToLoadData(true);			
		},
		getNextMouth:function(){
			var nMnow,nYnow;
			if(this.mnow>=11){
				nMnow=0;
				nYnow=this.ynow+1;
				}else{
					nMnow=this.mnow+1;
					nYnow=this.ynow;
				}
			var m_days=new Array(31,(28+this.is_leap(nYnow)),31,30,31,01,31,31,30,31,30,31);  //每个月的天数
			return {
					days:m_days[nMnow],
					date:nYnow+'-'+(++nMnow>=10?nMnow:"0"+nMnow)
				}
		},
		goToLoadData:function(flag){//flag是否更新数据
			this.tabStatus==1 && (!this.calendarData.length || flag) && this.calendar();
			this.tabStatus==2 && (!this.timeAxisData.length || flag) && this.timeAxis();		
		},
		calendar:function(){
			var nlstr = new Date(this.ynow,this.mnow,1);  //当月第一天
			var firstday = nlstr.getDay()-1;//第一天星期几,默认是周日  我们改成周一
			firstday=firstday==-1?6:firstday;//如果是-1,说明当月的第一天是周日
			var m_days=new Array(31,(28+this.is_leap(this.ynow)),31,30,31,30,31,31,30,31,30,31);  //每个月的天数
			var tr_str=Math.ceil((m_days[this.mnow] + firstday)/7);   //当前月天数+第一天是星期几的数值   获得 表格行数
			var c_days=m_days[this.mnow];//当前月份的天数
			var p_arr=this.getPreMouth();
			var n_arr=this.getNextMouth();
			var i,k,idx,date_str;
			var dataArr=[];//天数/年月
			for(i=0;i<tr_str;i++) { //表格的行
				for(k=0;k<7;k++) { //表格每行的单元格
				idx=i*7+k; //单元格自然序列号
				date_str=idx-firstday+1; //计算日期
				var __ym;
				if(date_str<=0){//过滤无效日期(小于等于零的、大于月总天数的)
					date_str=date_str+p_arr['days'];//当前日期+上个月的天数就是上个月的日期
					__ym=p_arr['date'];
				}else if(date_str>c_days){
					date_str=date_str-c_days;//下个月的日期就是这个月的天数-当月的天数
					__ym=n_arr['date'];
				}else{
					__ym=this.ynow+'-'+(this.mnow>=9?"":"0")+(this.mnow+1);
				}
				dataArr.push({
					day:date_str,
					date:__ym
				});
				}
			}
			this.__Data=dataArr;
			this.calenderPlanDetail();
		},
		// 日历有计划数据处理
		planHandleData: function(data, day, mounth) {
			var item = data;
			item.day = day;
			if(mounth) {item.mounth = mounth}
			var finishFlag=false
			var sFlag=false;
			var fFlag=false;
			if(item.specialist){
				if(item.specialist.all==item.specialist.finish){
					sFlag=true;
				}
			}else{
				sFlag = true;
			}
			if(item.family){
				if(item.family.all==item.family.finish){
					fFlag = true;
				}
			}else{
				fFlag = true;
			}
			finishFlag = sFlag && fFlag;
			item.finishFlag=finishFlag;
			return item
		},
		calenderPlanDetail:function(){
			var vm=this;
			var __days=vm.__Data;
			var lastDay=(__days.concat()).pop().day;
			lastDay=lastDay>9?lastDay:'0'+lastDay;
			if(vm.searchTask || vm.status || vm.status == 0) {
				vm.isFastSearch = true
			} else {
				vm.isFastSearch = false
			}
			var params={
				executeStartTime: vm.isFastSearch ? '' : __days[0].date+'-'+__days[0].day+' 00:00:00',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
				executeEndTime: vm.isFastSearch ? '' : (__days.concat()).pop().date+'-'+lastDay+' 23:59:59',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
				planId:vm.planid,//计划id
				searchTask: vm.service.type,//快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访)
				status: null,//任务状态(0未完成,1已完成,2已预约)
			}
			rehaAPI.calendarPlanDetail(params).then(function(res){
				vm.curTask=vm.searchTask;
				vm.curTaskName=vm.searchTaskName;
				vm.calendarData=[];
				var list = [];
				if(res.status==200){
					var data=res.data
					// 快速查找
					if(vm.isFastSearch) {
						vm.searchData = []
						var searchData0 = [],
							searchData1 = [],
							searchData2 = [];
						for(var setM = 1; setM <= 12; setM++) {
							var _setM = setM > 9 ? setM : '0' + setM,
								_setY = new Date().getFullYear();
							var data0 = [],
								data1 = [],
								data2 = [];
							for(var i in data) {
								var getY = i.split("-")[0],
									getM = i.split("-")[1],
									getD = i.split("-")[2];
								// 去年
								if(_setY - 1 == getY && _setM == getM) {
									var item = vm.planHandleData(data[i], getD, getM)
									data0.push(item)
									data.length && data.splice(i,1);
								} else if(_setY == getY && _setM == getM) { // 今年
									var item = vm.planHandleData(data[i], getD, getM)
									data1.push(item)
									data.length && data.splice(i,1);
								} else if(_setY + 1 == getY && _setM == getM) { // 明年
									var item = vm.planHandleData(data[i], getD, getM)
									data2.push(item)
									data.length && data.splice(i,1);
								}
							}
							if(data0.length) {
								var dataSort = vm.daysSort(data0)
								var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
								for(var i = 0; i < 7 - addlen; i++) {
									dataSort.push({
										noService:true
									})	
								}
								searchData0.push(dataSort)
							}
							if(data1.length) {
								var dataSort = vm.daysSort(data1)
								var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
								for(var i = 0; i < 7 - addlen; i++) {
									dataSort.push({
										noService:true
									})	
								}
								searchData1.push(dataSort)
							}
							if(data2.length) {
								var dataSort = vm.daysSort(data2)
								var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
								for(var i = 0; i < 7 - addlen; i++) {
									dataSort.push({
										noService:true
									})	
								}
								searchData2.push(dataSort)
							}
						}
						if(searchData0.length) {vm.searchData.push(searchData0)}
						if(searchData1.length) {vm.searchData.push(searchData1)}
						if(searchData2.length) {vm.searchData.push(searchData2)}
						return false;
					}
					// 正常日历
					var _currentTimeStamp=+new Date(new Date().setHours(0, 0, 0, 0));
					for(var i in __days){
						var _key=__days[i].date+'-'+(__days[i].day>9?__days[i].day:'0'+__days[i].day);
						var item={
								noService:true,
								day:__days[i].day
							};
						for(var j in data){
							if(_key==j){
								item = vm.planHandleData(data[j], __days[i].day)
								data.length && data.splice(j,1);
								break;
							}
						}
						var thatTime=+new Date(_key)-8*60*60*1000;
						var future=_currentTimeStamp>thatTime?0:(_currentTimeStamp==thatTime?1:2);
						item.future=future;
						list.push(item);
							// vm.calendarData.push(item);
					}
					vm.calendarData = vm.chunkFunction(list, 7)
				}
			})
		},
		chunkFunction:function(arr, size) {
			let changeIndex = 0;
			let secondArr = [];
			while (changeIndex < arr.length) {
				secondArr.push(arr.slice(changeIndex, changeIndex += size))
			}
			return secondArr;
		},
		//时间轴请求
		timeAxis:function(){
			var m_days=new Array(31,(28+this.is_leap(this.ynow)),31,30,31,30,31,31,30,31,30,31);  //每个月的天数
			var c_days=m_days[this.mnow];//当前月份的天数
			var __ym=this.ynow+'-'+(this.mnow>=9?"":"0")+(this.mnow+1);
			var dataArr=[];//天数/年月
			for(;c_days>0;c_days--){
				dataArr.push({
					day:c_days,
					date:__ym
				});
			}
			this.__xData=dataArr;
			this.calendarPlanDetailList();
		},
		//限频次 时间轴请求
		calendarPlanDetailList:function(){
			var vm=this;
			var __days=vm.__xData;
			var lastDay=(__days.concat()).pop().day;
			lastDay=lastDay>9?lastDay:'0'+lastDay;
			var params={
				executeEndTime:__days[0].date+'-'+__days[0].day+' 23:59:59',//日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
				executeStartTime:(__days.concat()).pop().date+'-'+lastDay+' 00:00:00',//日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
				planId:vm.planid,//计划id
				searchTask:vm.service.type, // 服务项
				status: null, //任务状态(0未完成,1已完成,2已预约)
			}
			rehaAPI.calendarPlanDetailList(params).then(function(res){
				if(res.status==200){
					// var _currentTimeStamp=+new Date(new Date().setHours(0, 0, 0, 0))
					var list=_.map(res.data||{},function(o){
						// var _time=o.executeTime.split(' ');
						// var thatTime=+new Date(_time[0]);
						// var future=_currentTimeStamp>thatTime?0:(_currentTimeStamp==thatTime?1:2);
						// (o.status==0 && _currentTimeStamp>thatTime) && (future=-1)
						// var _html=o.status==2?'预':(future==-1?'逾':'');
						// _html=future==1?'今':_html;
						// if(_html=='预') future=3;
						var _time=o.executeTime.split(' ');
						var _html = ''
						var d = new Date(o.execute_time);
						if(d.format("yyyy-MM-dd") == new Date().format("yyyy-MM-dd")) {
							o.firstSort = '1'
							future = 1
							_html = '今'
							if(o.status) {
								o.secondSort = '2'
							} else {
								o.secondSort = '1'
							}
						} else if(d > new Date()) {
							o.firstSort = '3'
							future = 2
							if(o.status) {
								o.secondSort = '2'
							} else {
								o.secondSort = '1'
							}
						} else {
							o.firstSort = '2'
							future = 0
							if(o.status == 0) {
								future = -1
								_html = '逾'
								o.secondSort = '1'
							} else {
								o.secondSort = '2'
							}
						}
						o.html=_html
						o.date=_time[0];
						o.time=_time[1];
						o.future=future;
						o.doctorName = o.doctor_name
						o.hospitalName = o.hospital_name
						return o;
					})||[];
					var nowTime = new Date().getTime()
					vm.timeAxisData = _.sortBy(list, function(o) {
						return o.firstSort + o.secondSort + (nowTime/o.execute_time)
					});
				} else {
					showErrorMessage(res.msg)
				}
			})
		},
		//不限频次 时间轴请求
		selectByPlanDetaiId: function(){
			var vm = this
			var params = {
				planId: this.planid,
				code: vm.service.type,
				page: 1,
				pagesize: 10000
			}
			rehaAPI.selectByPlanDetaiId(params).then(function(res){
				if(res.status==200){
					var list=_.map(res.data.list||{},function(o){
						var _time=o.completeTime.split(' ');
						var _html = ''
						var d = new Date(o.completeTime);
						if(d.format("yyyy-MM-dd") == new Date().format("yyyy-MM-dd")) {
							o.firstSort = '1'
							future = 1
							_html = '今'
							if(o.status) {
								o.secondSort = '2'
							} else {
								o.secondSort = '1'
							}
						} else if(d > new Date()) {
							o.firstSort = '3'
							future = 2
							if(o.status) {
								o.secondSort = '2'
							} else {
								o.secondSort = '1'
							}
						} else {
							o.firstSort = '2'
							future = 0
							if(o.status == 0) {
								future = -1
								_html = '逾'
								o.secondSort = '1'
							} else {
								o.secondSort = '2'
							}
						}
						o.html=_html
						o.date=_time[0];
						o.time=_time[1];
						o.future=future;
						o.hospitalName = o.hosiptalName
						return o;
					})||[];
					var nowTime = new Date().getTime()
					vm.timeAxisData = _.sortBy(list, function(o) {
						return o.firstSort + o.secondSort + (nowTime/o.execute_time)
					});
				} else {
					showErrorMessage(res.msg)
				}
			})
		},
		zdly: function(data) {
			var vm = this
			var otherCode, otherName;
			var planDetailId = vm.plandetailid;
			if(vm.docInfo.doctorType == 1) {
				if(docInfo.uid == data.specialistDoctorCode) {
					//当前医生为创建计划的专科医生,与全科医生聊天
					otherCode = data.familyDoctorCode;
					otherName = data.familyDoctorName;
				}else {
					//当前医生为专科,当前医生不是创建计划的专科医生,没反应
					return false
				}
			} else {
				otherCode = data.specialistDoctorCode;
				otherName = data.specialistDoctorName;
			}
			top.layer.open({
				type: 2,
				area: ['660px', '600px'],
				shade: 0.5,
				title: '指导留言',
				fixed: true, //不固定
				maxmin: true,
				closeBtn: 1,
				shift: 5,
				shadeClose: false, //点击遮罩关闭层
				content: '../../consulting/html/consulting.html?otherCode=' + otherCode + '&otherName=' + encodeURI(otherName) + '&planDetailId=' + planDetailId,
				end: function() { // 未点击确定按钮,点击关闭按钮      
					vm.initData()   
				}
			});
		},
		//康复指导
		kfzd:function(){
			var vm=this
			KFZDlayerIndex = layer.open({
				type: 2,
				//				  offset: ['100px'], //右下角弹出
				area: ['660px', '650px'],
				shade: 0.5,
				title: '康复指导',
				fixed: true, //不固定
				maxmin: true,
				closeBtn: 1,
				shift: 5,
				shadeClose: false, //点击遮罩关闭层
				content:'../../rehabilitation/html/rehabilitation_guidance.html?patient='+vm.patientcode+'&planDetaiId='+vm.planDetaiId+'&planId='+vm.planid + '&isRecordId=true',
				end: function() { // 未点击确定按钮,点击关闭按钮  
					vm.initData()   
				}
			});
		},
		// 康复随访计划
		sfjh: function(){
			var vm=this
			followupLayerIndex = layer.open({
				type: 2,
				//				  offset: ['100px'], //右下角弹出
				area: ['660px', '650px'],
				shade: 0.5,
				title: '随访计划',
				fixed: true, //不固定
				maxmin: true,
				closeBtn: 1,
				shift: 5,
				shadeClose: false, //点击遮罩关闭层
				content:'../../followup/html/followup_newplan.html?patient='+vm.patientcode+'&planDetaiId='+vm.planDetaiId+'&planId='+vm.planid,
				end: function() { // 未点击确定按钮,点击关闭按钮  
					vm.initData()    
				}
			});
		},
		upLoadImgToBase64: function() {
			var vm = this;
			var img1 = event.target.files[0];
			var reader = new FileReader();
			var type = img1.type; //文件的类型,判断是否是图片  
			var size = img1.size; //文件的大小,判断图片的大小  
			if(this.imgData.accept.indexOf(type) == -1) {
				alert('请选择我们支持的图片格式!');
				return false;
			}
			if(size > 3145728) {
				alert('请选择3M以内的图片!');
				return false;
			}
			reader.readAsDataURL(img1);
			reader.onload = function(e) {
				vm.upImgs.push({
					baseUrl: e.target.result
				});
				vm.upImgArr.push(img1);
				vm.uploadImg(vm.upImgArr);
			}
		},
		//上传图片
		uploadImg: function(data) {
			var vm = this;
			var len = data.length;
			if(len==0) {
				return
			} else {
				var file = data[len - 1];
				var formData = new FormData();
				formData.append('file', file);
				rehaAPI.upload(formData).then(function(res) {
					if(res.status == 200) {
						vm.upImgs[len - 1].img = res.data;
						data.pop();
						vm.$forceUpdate()
						vm.uploadImg(data);
					} else {
						layer.msg(res.msg, {
							icon: 5
						});
					}
				})
			}
		},
		saveRehabilitationOperateRecord:function(planDetailId, type, relationCode, flag){
			var vm=this
			var patientName = vm.patientname
			var patientCode = vm.patientcode
			var _image = [];
			for(var i in vm.upImgs) {
				_image.push(vm.upImgs[i].img);
			}
			var params={
				rehabilitationDetailId: planDetailId,
				node: vm.node||'',
				patientCode: patientCode,
				doctorCode: vm.docInfo.uid,
				relationRecordType: type,
				relationRecordCode: '',
				relationRecordImg: '',
				status: flag&&flag==2?1:0, // 改记录的状态
				relationCode: relationCode, //业务id
				flag: flag,//标记(1随访2临时随访)
			}
			rehaAPI.saveRehabilitationOperateRecord({dataJson:JSON.stringify(params)}).then(function(res){
				if(res.status==200){
					if(type==1){
						vm.updateNoteAndImageRehabilitationOperate(planDetailId)
					}else if(type==6){
						vm.updateRelationCodeByDetailId(planDetailId, relationCode)
					} else {
						vm.updateNoteAndImageRehabilitationOperate(planDetailId)
					}
				}else {
					showErrorMessage(res.msg)
				}
			})
		
		},
		updateNoteAndImageRehabilitationOperate: function(planDetailId, relationCode) {
			var vm = this;
			var _image = [];
			for(var i in vm.upImgs) {
				_image.push(vm.upImgs[i].img);
			}
			var params = {
				planDetailId: planDetailId,
				node: vm.node||'',
				image: JSON.stringify(_image)||''
			}
			if(relationCode){
				params['relationCode'] = relationCode
			}
			var loadding = top.layer.load(0, {
				shade: false
			}); //0代表加载的风格,支持0-2
			rehaAPI.updateNoteAndImageRehabilitationOperate(params).then(function(res) {
				top.layer.close(loadding);
				if(res.status == 200) {
					vm.initData()
				}else {
					showErrorMessage(res.msg)
				}
			})
		},
		onViewDetail: function(item, type){
			var planids, recordId;
			if(this.islimit){
				planids = item.id
			} else {
				planids = item.id
				recordId = item.recordId
			}
			this.viewDetail(planids,type, recordId)
		},
		viewDetail:function(planids,type, recordId){
			var vm=this;
			if(!planids){
				layer.msg('无服务项',{icon:5})
				return ;
			}
			if(type==1){ // 单个服务项
				var s = '../../rehabilitation/html/guide_the_message.html?planid='+planids+'&pId='+vm.planid+'&patient='+vm.patientcode+'&patientName='+vm.patientname
				if(recordId){
					s += '&recordId='+ recordId
				}
				layer.open({
					type: 2,
					area: ['800px', '700px'],
					shade: 0.5,
					title: '服务项目内容',
					fixed: true, //不固定
					maxmin: true,
					closeBtn:1,
					shift: 5,
					shadeClose: false, //点击遮罩关闭层
					content: s,
					end:function(){ // 未点击确定按钮,点击关闭按钮  
				    vm.initData(); // 刷新
				  }
				});
				return ;
			}
			layer.open({ // 康复计划的所有服务项
				type: 2,
				area: ['800px', '700px'],
				shade: 0.5,
				title: '服务项目内容',
				fixed: true, //不固定
				maxmin: true,
				closeBtn:1,
				shift: 5,
				shadeClose: false, //点击遮罩关闭层
				content: '../../rehabilitation/html/service_item_content.html?planids='+planids+'&planId='+vm.planid+'&patient='+vm.patientcode+'&patientName='+vm.patientname,
				end:function(){
					vm.initData();	
				}
				
			});
		},
		onClose: function(){
			this.$emit('onclose')
		},
		qwapp:function(){
			layer.msg('请前往app处理',{icon:5});    
		},
		getContent: function(value,type) {
			var res=value;
			if(type==2 || type==9){
				res = "<img src='"+httpRequest.getImgUrl(res)+"' width='100px'>";
			}else if(type==3){
				res = '【语音】';
			}else if(type==19){
				res = '【聊天记录】';
			}else if(type==12){
				res = '【视频】';
			}
			return res;
		},
		previewImg: function(url){
			imgShow("#outerdiv", "#innerdiv", "#bigimg", url);
		},
		toDoorDialog(){
			// console.log("server");
			top.layer.open({
				type: 2,
				area: ['850px', '700px'],
				shade: 0.5,
				title: '代预约',
				fixed: true, //不固定
				maxmin: true,
				closeBtn: 1,
				// shift: 5,
				shadeClose: false, //点击遮罩关闭层
				content: `/app/rehabilitation/html/toDoorService.html?patient=${this.patientcode}&detailId=${this.plandetailid}`
			})
		},
    closeAllLayer: function (name, planDetaiId, type, relationCode, flag) {
      if (name == '预览康复指导') {
        layer.close()
      }
    },
    // 提醒患者 num 1康复指导2康复下转3复诊提醒4上门服务提醒5家签提醒
    sendSpecialistWeixinMessage: function (planDetaiId, type) {
      var vm = this
      var text = ''
      var patientName = vm.patientname
      var patientCode = vm.patientcode
      if (type == 4) {
        // 上门服务
        text = '请问您是否确认提醒' + patientName + '居民预约上门护理服务?'
      } else if (type == 7) {
        // 康复复诊
        text = '请问您是否确认提醒' + patientName + '居民进行复诊?'
      }
      var current = layer.confirm(
        text,
        {
          btn: ['确定', '取消'],
          title: '提示'
        },
        function (index) {
          var _type = type == 4 ? 4 : type == 7 ? 3 : ''
          var loading = layer.load(0, { shade: false })
          var params = {
            patient: patientCode,
            doctor: vm.docInfo.uid,
            type: _type,
            relationCode: planDetaiId,
            planId: vm.planid
          }
          rehaAPI.sendSpecialistWeixinMessage(params).then(function (res) {
            layer.close(loading)
            if (res.status == 200) {
              showSuccessMessage('提交成功!')
              if (_type == 3 || _type == 4) {
                // 提醒患者后,即认为是已完成
                vm.saveRehabilitationOperateRecord(planDetaiId, type)
              }
            } else {
              showErrorMessage(res.msg)
            }
          })
          layer.close(current) //再执行关闭
        }
      )
    },
    // 添加完成记录
    addCompleteRecord: function () {
      var vm = this
      var detailId = this.planDetaiId
      var type = vm.service.type
      $('#completeRecord').css('display', 'block')
      this.layerIndex = layer.open({
        type: 1,
        area: ['500px', '450px'],
        shade: 0.5,
        title: '添加完成记录',
        btn: ['确定', '关闭'], //只是为了演示
        shadeClose: false, //点击遮罩关闭层
        content: $('#completeRecord'),
        yes: function () {
          vm.saveRehabilitationOperateRecord(detailId, 1)
          layer.close(vm.layerIndex)
        }
      })
    },
    monDetail: function () {
      this.currentDay = this.ynow + '年' + (this.mnow + 1) + '月'
    },
    is_leap: function (year) {
      //判断是否为闰年
      return year % 100 == 0 ? (res = year % 400 == 0 ? 1 : 0) : (res = year % 4 == 0 ? 1 : 0)
    },
    preMonth: function () {
      //上一个月
      if (this.mnow <= 0) {
        this.mnow = 11
        this.ynow = this.ynow - 1
      } else {
        this.mnow--
      }
      this.monDetail()
      this.goToLoadData(true)
    },
    getPreMouth: function () {
      var pMnow, pYnow
      if (this.mnow <= 0) {
        pMnow = 11
        pYnow = this.ynow - 1
      } else {
        pMnow = this.mnow - 1
        pYnow = this.ynow
      }
      var m_days = new Array(31, 28 + this.is_leap(pYnow), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31) //每个月的天数
      return {
        days: m_days[pMnow],
        date: pYnow + '-' + (++pMnow >= 10 ? pMnow : '0' + pMnow)
      }
    },
    nextMonth: function () {
      //下一个月
      if (this.mnow >= 11) {
        this.mnow = 0
        this.ynow = this.ynow + 1
      } else {
        this.mnow++
      }
      this.monDetail()
      this.goToLoadData(true)
    },
    getNextMouth: function () {
      var nMnow, nYnow
      if (this.mnow >= 11) {
        nMnow = 0
        nYnow = this.ynow + 1
      } else {
        nMnow = this.mnow + 1
        nYnow = this.ynow
      }
      var m_days = new Array(31, 28 + this.is_leap(nYnow), 31, 30, 31, 01, 31, 31, 30, 31, 30, 31) //每个月的天数
      return {
        days: m_days[nMnow],
        date: nYnow + '-' + (++nMnow >= 10 ? nMnow : '0' + nMnow)
      }
    },
    goToLoadData: function (flag) {
      //flag是否更新数据
      this.tabStatus == 1 && (!this.calendarData.length || flag) && this.calendar()
      this.tabStatus == 2 && (!this.timeAxisData.length || flag) && this.timeAxis()
    },
    calendar: function () {
      var nlstr = new Date(this.ynow, this.mnow, 1) //当月第一天
      var firstday = nlstr.getDay() - 1 //第一天星期几,默认是周日  我们改成周一
      firstday = firstday == -1 ? 6 : firstday //如果是-1,说明当月的第一天是周日
      var m_days = new Array(31, 28 + this.is_leap(this.ynow), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31) //每个月的天数
      var tr_str = Math.ceil((m_days[this.mnow] + firstday) / 7) //当前月天数+第一天是星期几的数值   获得 表格行数
      var c_days = m_days[this.mnow] //当前月份的天数
      var p_arr = this.getPreMouth()
      var n_arr = this.getNextMouth()
      var i, k, idx, date_str
      var dataArr = [] //天数/年月
      for (i = 0; i < tr_str; i++) {
        //表格的行
        for (k = 0; k < 7; k++) {
          //表格每行的单元格
          idx = i * 7 + k //单元格自然序列号
          date_str = idx - firstday + 1 //计算日期
          var __ym
          if (date_str <= 0) {
            //过滤无效日期(小于等于零的、大于月总天数的)
            date_str = date_str + p_arr['days'] //当前日期+上个月的天数就是上个月的日期
            __ym = p_arr['date']
          } else if (date_str > c_days) {
            date_str = date_str - c_days //下个月的日期就是这个月的天数-当月的天数
            __ym = n_arr['date']
          } else {
            __ym = this.ynow + '-' + (this.mnow >= 9 ? '' : '0') + (this.mnow + 1)
          }
          dataArr.push({
            day: date_str,
            date: __ym
          })
        }
      }
      this.__Data = dataArr
      this.calenderPlanDetail()
    },
    // 日历有计划数据处理
    planHandleData: function (data, day, mounth) {
      var item = data
      item.day = day
      if (mounth) {
        item.mounth = mounth
      }
      var finishFlag = false
      var sFlag = false
      var fFlag = false
      if (item.specialist) {
        if (item.specialist.all == item.specialist.finish) {
          sFlag = true
        }
      } else {
        sFlag = true
      }
      if (item.family) {
        if (item.family.all == item.family.finish) {
          fFlag = true
        }
      } else {
        fFlag = true
      }
      finishFlag = sFlag && fFlag
      item.finishFlag = finishFlag
      return item
    },
    calenderPlanDetail: function () {
      var vm = this
      var __days = vm.__Data
      var lastDay = __days.concat().pop().day
      lastDay = lastDay > 9 ? lastDay : '0' + lastDay
      if (vm.searchTask || vm.status || vm.status == 0) {
        vm.isFastSearch = true
      } else {
        vm.isFastSearch = false
      }
      var params = {
        executeStartTime: vm.isFastSearch ? '' : __days[0].date + '-' + __days[0].day + ' 00:00:00', //日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
        executeEndTime: vm.isFastSearch ? '' : __days.concat().pop().date + '-' + lastDay + ' 23:59:59', //日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
        planId: vm.planid, //计划id
        searchTask: vm.service.type, //快速查找任务:(1、我的任务,2、健康教育,3、健康指导,4、随访)
        status: null //任务状态(0未完成,1已完成,2已预约)
      }
      rehaAPI.calendarPlanDetail(params).then(function (res) {
        vm.curTask = vm.searchTask
        vm.curTaskName = vm.searchTaskName
        vm.calendarData = []
        var list = []
        if (res.status == 200) {
          var data = res.data
          // 快速查找
          if (vm.isFastSearch) {
            vm.searchData = []
            var searchData0 = [],
              searchData1 = [],
              searchData2 = []
            for (var setM = 1; setM <= 12; setM++) {
              var _setM = setM > 9 ? setM : '0' + setM,
                _setY = new Date().getFullYear()
              var data0 = [],
                data1 = [],
                data2 = []
              for (var i in data) {
                var getY = i.split('-')[0],
                  getM = i.split('-')[1],
                  getD = i.split('-')[2]
                // 去年
                if (_setY - 1 == getY && _setM == getM) {
                  var item = vm.planHandleData(data[i], getD, getM)
                  data0.push(item)
                  data.length && data.splice(i, 1)
                } else if (_setY == getY && _setM == getM) {
                  // 今年
                  var item = vm.planHandleData(data[i], getD, getM)
                  data1.push(item)
                  data.length && data.splice(i, 1)
                } else if (_setY + 1 == getY && _setM == getM) {
                  // 明年
                  var item = vm.planHandleData(data[i], getD, getM)
                  data2.push(item)
                  data.length && data.splice(i, 1)
                }
              }
              if (data0.length) {
                var dataSort = vm.daysSort(data0)
                var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
                for (var i = 0; i < 7 - addlen; i++) {
                  dataSort.push({
                    noService: true
                  })
                }
                searchData0.push(dataSort)
              }
              if (data1.length) {
                var dataSort = vm.daysSort(data1)
                var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
                for (var i = 0; i < 7 - addlen; i++) {
                  dataSort.push({
                    noService: true
                  })
                }
                searchData1.push(dataSort)
              }
              if (data2.length) {
                var dataSort = vm.daysSort(data2)
                var addlen = (dataSort.length + 1) % 7 ? (dataSort.length + 1) % 7 : 7
                for (var i = 0; i < 7 - addlen; i++) {
                  dataSort.push({
                    noService: true
                  })
                }
                searchData2.push(dataSort)
              }
            }
            if (searchData0.length) {
              vm.searchData.push(searchData0)
            }
            if (searchData1.length) {
              vm.searchData.push(searchData1)
            }
            if (searchData2.length) {
              vm.searchData.push(searchData2)
            }
            return false
          }
          // 正常日历
          var _currentTimeStamp = +new Date(new Date().setHours(0, 0, 0, 0))
          for (var i in __days) {
            var _key = __days[i].date + '-' + (__days[i].day > 9 ? __days[i].day : '0' + __days[i].day)
            var item = {
              noService: true,
              day: __days[i].day
            }
            for (var j in data) {
              if (_key == j) {
                item = vm.planHandleData(data[j], __days[i].day)
                data.length && data.splice(j, 1)
                break
              }
            }
            var thatTime = +new Date(_key) - 8 * 60 * 60 * 1000
            var future = _currentTimeStamp > thatTime ? 0 : _currentTimeStamp == thatTime ? 1 : 2
            item.future = future
            list.push(item)
            // vm.calendarData.push(item);
          }
          vm.calendarData = vm.chunkFunction(list, 7)
        }
      })
    },
    chunkFunction: function (arr, size) {
      let changeIndex = 0
      let secondArr = []
      while (changeIndex < arr.length) {
        secondArr.push(arr.slice(changeIndex, (changeIndex += size)))
      }
      return secondArr
    },
    //时间轴请求
    timeAxis: function () {
      var m_days = new Array(31, 28 + this.is_leap(this.ynow), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31) //每个月的天数
      var c_days = m_days[this.mnow] //当前月份的天数
      var __ym = this.ynow + '-' + (this.mnow >= 9 ? '' : '0') + (this.mnow + 1)
      var dataArr = [] //天数/年月
      for (; c_days > 0; c_days--) {
        dataArr.push({
          day: c_days,
          date: __ym
        })
      }
      this.__xData = dataArr
      this.calendarPlanDetailList()
    },
    //限频次 时间轴请求
    calendarPlanDetailList: function () {
      var vm = this
      var __days = vm.__xData
      var lastDay = __days.concat().pop().day
      lastDay = lastDay > 9 ? lastDay : '0' + lastDay
      var params = {
        executeEndTime: __days[0].date + '-' + __days[0].day + ' 23:59:59', //日历开始时间(格式:yyyy-MM-dd HH:mm:ss)
        executeStartTime: __days.concat().pop().date + '-' + lastDay + ' 00:00:00', //日历结束时间(格式:yyyy-MM-dd HH:mm:ss)
        planId: vm.planid, //计划id
        searchTask: vm.service.type, // 服务项
        status: null //任务状态(0未完成,1已完成,2已预约)
      }
      rehaAPI.calendarPlanDetailList(params).then(function (res) {
        if (res.status == 200) {
          // var _currentTimeStamp=+new Date(new Date().setHours(0, 0, 0, 0))
          var list =
            _.map(res.data || {}, function (o) {
              // var _time=o.executeTime.split(' ');
              // var thatTime=+new Date(_time[0]);
              // var future=_currentTimeStamp>thatTime?0:(_currentTimeStamp==thatTime?1:2);
              // (o.status==0 && _currentTimeStamp>thatTime) && (future=-1)
              // var _html=o.status==2?'预':(future==-1?'逾':'');
              // _html=future==1?'今':_html;
              // if(_html=='预') future=3;
              var _time = o.executeTime.split(' ')
              var _html = ''
              var d = new Date(o.execute_time)
              if (d.format('yyyy-MM-dd') == new Date().format('yyyy-MM-dd')) {
                o.firstSort = '1'
                future = 1
                _html = '今'
                if (o.status) {
                  o.secondSort = '2'
                } else {
                  o.secondSort = '1'
                }
              } else if (d > new Date()) {
                o.firstSort = '3'
                future = 2
                if (o.status) {
                  o.secondSort = '2'
                } else {
                  o.secondSort = '1'
                }
              } else {
                o.firstSort = '2'
                future = 0
                if (o.status == 0) {
                  future = -1
                  _html = '逾'
                  o.secondSort = '1'
                } else {
                  o.secondSort = '2'
                }
              }
              o.html = _html
              o.date = _time[0]
              o.time = _time[1]
              o.future = future
              o.doctorName = o.doctor_name
              o.hospitalName = o.hospital_name
              return o
            }) || []
          var nowTime = new Date().getTime()
          vm.timeAxisData = _.sortBy(list, function (o) {
            return o.firstSort + o.secondSort + nowTime / o.execute_time
          })
        } else {
          showErrorMessage(res.msg)
        }
      })
    },
    //不限频次 时间轴请求
    selectByPlanDetaiId: function () {
      var vm = this
      var params = {
        planId: this.planid,
        code: vm.service.type,
        page: 1,
        pagesize: 10000
      }
      rehaAPI.selectByPlanDetaiId(params).then(function (res) {
        if (res.status == 200) {
          var list =
            _.map(res.data.list || {}, function (o) {
              var _time = o.completeTime.split(' ')
              var _html = ''
              var d = new Date(o.completeTime)
              if (d.format('yyyy-MM-dd') == new Date().format('yyyy-MM-dd')) {
                o.firstSort = '1'
                future = 1
                _html = '今'
                if (o.status) {
                  o.secondSort = '2'
                } else {
                  o.secondSort = '1'
                }
              } else if (d > new Date()) {
                o.firstSort = '3'
                future = 2
                if (o.status) {
                  o.secondSort = '2'
                } else {
                  o.secondSort = '1'
                }
              } else {
                o.firstSort = '2'
                future = 0
                if (o.status == 0) {
                  future = -1
                  _html = '逾'
                  o.secondSort = '1'
                } else {
                  o.secondSort = '2'
                }
              }
              o.html = _html
              o.date = _time[0]
              o.time = _time[1]
              o.future = future
              o.hospitalName = o.hosiptalName
              return o
            }) || []
          var nowTime = new Date().getTime()
          vm.timeAxisData = _.sortBy(list, function (o) {
            return o.firstSort + o.secondSort + nowTime / o.execute_time
          })
        } else {
          showErrorMessage(res.msg)
        }
      })
    },
    zdly: function (data) {
      var vm = this
      var otherCode, otherName
      var planDetailId = vm.plandetailid
      if (vm.docInfo.doctorType == 1) {
        if (docInfo.uid == data.specialistDoctorCode) {
          //当前医生为创建计划的专科医生,与全科医生聊天
          otherCode = data.familyDoctorCode
          otherName = data.familyDoctorName
        } else {
          //当前医生为专科,当前医生不是创建计划的专科医生,没反应
          return false
        }
      } else {
        otherCode = data.specialistDoctorCode
        otherName = data.specialistDoctorName
      }
      top.layer.open({
        type: 2,
        area: ['660px', '600px'],
        shade: 0.5,
        title: '指导留言',
        fixed: true, //不固定
        maxmin: true,
        closeBtn: 1,
        shift: 5,
        shadeClose: false, //点击遮罩关闭层
        content: '../../consulting/html/consulting.html?otherCode=' + otherCode + '&otherName=' + encodeURI(otherName) + '&planDetailId=' + planDetailId,
        end: function () {
          // 未点击确定按钮,点击关闭按钮
          vm.initData()
        }
      })
    },
    //康复指导
    kfzd: function () {
      var vm = this
      KFZDlayerIndex = layer.open({
        type: 2,
        //				  offset: ['100px'], //右下角弹出
        area: ['660px', '650px'],
        shade: 0.5,
        title: '康复指导',
        fixed: true, //不固定
        maxmin: true,
        closeBtn: 1,
        shift: 5,
        shadeClose: false, //点击遮罩关闭层
        content:
          '../../rehabilitation/html/rehabilitation_guidance.html?patient=' + vm.patientcode + '&planDetaiId=' + vm.planDetaiId + '&planId=' + vm.planid + '&isRecordId=true',
        end: function () {
          // 未点击确定按钮,点击关闭按钮
          vm.initData()
        }
      })
    },
    // 康复随访计划
    sfjh: function () {
      var vm = this
      followupLayerIndex = layer.open({
        type: 2,
        //				  offset: ['100px'], //右下角弹出
        area: ['660px', '650px'],
        shade: 0.5,
        title: '随访计划',
        fixed: true, //不固定
        maxmin: true,
        closeBtn: 1,
        shift: 5,
        shadeClose: false, //点击遮罩关闭层
        content: '../../followup/html/followup_newplan.html?patient=' + vm.patientcode + '&planDetaiId=' + vm.planDetaiId + '&planId=' + vm.planid,
        end: function () {
          // 未点击确定按钮,点击关闭按钮
          vm.initData()
        }
      })
    },
    upLoadImgToBase64: function () {
      var vm = this
      var img1 = event.target.files[0]
      var reader = new FileReader()
      var type = img1.type //文件的类型,判断是否是图片
      var size = img1.size //文件的大小,判断图片的大小
      if (this.imgData.accept.indexOf(type) == -1) {
        alert('请选择我们支持的图片格式!')
        return false
      }
      if (size > 3145728) {
        alert('请选择3M以内的图片!')
        return false
      }
      reader.readAsDataURL(img1)
      reader.onload = function (e) {
        vm.upImgs.push({
          baseUrl: e.target.result
        })
        vm.upImgArr.push(img1)
        vm.uploadImg(vm.upImgArr)
      }
    },
    //上传图片
    uploadImg: function (data) {
      var vm = this
      var len = data.length
      if (len == 0) {
        return
      } else {
        var file = data[len - 1]
        var formData = new FormData()
        formData.append('file', file)
        rehaAPI.upload(formData).then(function (res) {
          if (res.status == 200) {
            vm.upImgs[len - 1].img = res.data
            data.pop()
            vm.$forceUpdate()
            vm.uploadImg(data)
          } else {
            layer.msg(res.msg, {
              icon: 5
            })
          }
        })
      }
    },
    saveRehabilitationOperateRecord: function (planDetailId, type, relationCode, flag) {
      var vm = this
      var patientName = vm.patientname
      var patientCode = vm.patientcode
      var _image = []
      for (var i in vm.upImgs) {
        _image.push(vm.upImgs[i].img)
      }
      var params = {
        rehabilitationDetailId: planDetailId,
        node: vm.node || '',
        patientCode: patientCode,
        doctorCode: vm.docInfo.uid,
        relationRecordType: type,
        relationRecordCode: '',
        relationRecordImg: '',
        status: flag && flag == 2 ? 1 : 0, // 改记录的状态
        relationCode: relationCode, //业务id
        flag: flag //标记(1随访2临时随访)
      }
      rehaAPI.saveRehabilitationOperateRecord({ dataJson: JSON.stringify(params) }).then(function (res) {
        if (res.status == 200) {
          if (type == 1) {
            vm.updateNoteAndImageRehabilitationOperate(planDetailId)
          } else if (type == 6) {
            vm.updateRelationCodeByDetailId(planDetailId, relationCode)
          } else {
            vm.updateNoteAndImageRehabilitationOperate(planDetailId)
          }
        } else {
          showErrorMessage(res.msg)
        }
      })
    },
    updateNoteAndImageRehabilitationOperate: function (planDetailId, relationCode) {
      var vm = this
      var _image = []
      for (var i in vm.upImgs) {
        _image.push(vm.upImgs[i].img)
      }
      var params = {
        planDetailId: planDetailId,
        node: vm.node || '',
        image: JSON.stringify(_image) || ''
      }
      if (relationCode) {
        params['relationCode'] = relationCode
      }
      var loadding = top.layer.load(0, {
        shade: false
      }) //0代表加载的风格,支持0-2
      rehaAPI.updateNoteAndImageRehabilitationOperate(params).then(function (res) {
        top.layer.close(loadding)
        if (res.status == 200) {
          vm.initData()
        } else {
          showErrorMessage(res.msg)
        }
      })
    },
    onViewDetail: function (item, type) {
      var planids, recordId
      if (this.islimit) {
        planids = item.id
      } else {
        planids = item.id
        recordId = item.recordId
      }
      this.viewDetail(planids, type, recordId)
    },
    viewDetail: function (planids, type, recordId) {
      var vm = this
      if (!planids) {
        layer.msg('无服务项', { icon: 5 })
        return
      }
      if (type == 1) {
        // 单个服务项
        var s = '../../rehabilitation/html/guide_the_message.html?planid=' + planids + '&pId=' + vm.planid + '&patient=' + vm.patientcode + '&patientName=' + vm.patientname
        if (recordId) {
          s += '&recordId=' + recordId
        }
        layer.open({
          type: 2,
          area: ['800px', '700px'],
          shade: 0.5,
          title: '服务项目内容',
          fixed: true, //不固定
          maxmin: true,
          closeBtn: 1,
          shift: 5,
          shadeClose: false, //点击遮罩关闭层
          content: s,
          end: function () {
            // 未点击确定按钮,点击关闭按钮
            vm.initData() // 刷新
          }
        })
        return
      }
      layer.open({
        // 康复计划的所有服务项
        type: 2,
        area: ['800px', '700px'],
        shade: 0.5,
        title: '服务项目内容',
        fixed: true, //不固定
        maxmin: true,
        closeBtn: 1,
        shift: 5,
        shadeClose: false, //点击遮罩关闭层
        content:
          '../../rehabilitation/html/service_item_content.html?planids=' + planids + '&planId=' + vm.planid + '&patient=' + vm.patientcode + '&patientName=' + vm.patientname,
        end: function () {
          vm.initData()
        }
      })
    },
    onClose: function () {
      this.$emit('onclose')
    },
    qwapp: function () {
      layer.msg('请前往app处理', { icon: 5 })
    },
    getContent: function (value, type) {
      var res = value
      if (type == 2 || type == 9) {
        res = "<img src='" + httpRequest.getImgUrl(res) + "' width='100px'>"
      } else if (type == 3) {
        res = '【语音】'
      } else if (type == 19) {
        res = '【聊天记录】'
      } else if (type == 12) {
        res = '【视频】'
      }
      return res
    },
    previewImg: function (url) {
      imgShow('#outerdiv', '#innerdiv', '#bigimg', url)
    },
    toDoorDialog() {
      // console.log("server");
      top.layer.open({
        type: 2,
        area: ['850px', '700px'],
        shade: 0.5,
        title: '代预约',
        fixed: true, //不固定
        maxmin: true,
        closeBtn: 1,
        // shift: 5,
        shadeClose: false, //点击遮罩关闭层
        content: `/app/rehabilitation/html/toDoorService.html?patient=${this.patientcode}&detailId=${this.plandetailid}`
      })
    }
  }
})
function imgShow(outerdiv, innerdiv, bigimg, _this){  
	var src = _this.attr("src");//获取当前点击的pimg元素中的src属性  
	$(bigimg).attr("src", src);//设置#bigimg元素的src属性  
		/*获取当前点击图片的真实大小,并显示弹出层及大图*/  
	$("<img/>").attr("src", src).load(function(){  
		var windowW = $(window).width();//获取当前窗口宽度  
		var windowH = $(window).height();//获取当前窗口高度  
		var realWidth = this.width;//获取图片真实宽度  
		var realHeight = this.height;//获取图片真实高度  
		var imgWidth, imgHeight;  
		var scale = 0.8;//缩放尺寸,当图片真实宽度和高度大于窗口宽度和高度时进行缩放  
			
		if(realHeight>windowH*scale) {//判断图片高度  
			imgHeight = windowH*scale;//如大于窗口高度,图片高度进行缩放  
			imgWidth = imgHeight/realHeight*realWidth;//等比例缩放宽度  
			if(imgWidth>windowW*scale) {//如宽度扔大于窗口宽度  
				imgWidth = windowW*scale;//再对宽度进行缩放  
			}  
		} else if(realWidth>windowW*scale) {//如图片高度合适,判断图片宽度  
			imgWidth = windowW*scale;//如大于窗口宽度,图片宽度进行缩放  
						imgHeight = imgWidth/realWidth*realHeight;//等比例缩放高度  
		} else {//如果图片真实高度和宽度都符合要求,高宽不变  
			imgWidth = realWidth;  
			imgHeight = realHeight;  
		}  
				$(bigimg).css("width",imgWidth);//以最终的宽度对图片缩放  
			
		var w = (windowW-imgWidth)/2;//计算图片与窗口左边距  
		var h = (windowH-imgHeight)/2;//计算图片与窗口上边距  
		$(innerdiv).css({"top":h, "left":w});//设置#innerdiv的top和left属性  
		$(outerdiv).fadeIn("fast");//淡入显示#outerdiv及.pimg  
	});  
	$(outerdiv).click(function(){//再次点击淡出消失弹出层  
		$(this).fadeOut("fast");  
	});  
}
function imgShow(outerdiv, innerdiv, bigimg, _this) {
  var src = _this.attr('src') //获取当前点击的pimg元素中的src属性
  $(bigimg).attr('src', src) //设置#bigimg元素的src属性
  /*获取当前点击图片的真实大小,并显示弹出层及大图*/
  $('<img/>')
    .attr('src', src)
    .load(function () {
      var windowW = $(window).width() //获取当前窗口宽度
      var windowH = $(window).height() //获取当前窗口高度
      var realWidth = this.width //获取图片真实宽度
      var realHeight = this.height //获取图片真实高度
      var imgWidth, imgHeight
      var scale = 0.8 //缩放尺寸,当图片真实宽度和高度大于窗口宽度和高度时进行缩放
      if (realHeight > windowH * scale) {
        //判断图片高度
        imgHeight = windowH * scale //如大于窗口高度,图片高度进行缩放
        imgWidth = (imgHeight / realHeight) * realWidth //等比例缩放宽度
        if (imgWidth > windowW * scale) {
          //如宽度扔大于窗口宽度
          imgWidth = windowW * scale //再对宽度进行缩放
        }
      } else if (realWidth > windowW * scale) {
        //如图片高度合适,判断图片宽度
        imgWidth = windowW * scale //如大于窗口宽度,图片宽度进行缩放
        imgHeight = (imgWidth / realWidth) * realHeight //等比例缩放高度
      } else {
        //如果图片真实高度和宽度都符合要求,高宽不变
        imgWidth = realWidth
        imgHeight = realHeight
      }
      $(bigimg).css('width', imgWidth) //以最终的宽度对图片缩放
      var w = (windowW - imgWidth) / 2 //计算图片与窗口左边距
      var h = (windowH - imgHeight) / 2 //计算图片与窗口上边距
      $(innerdiv).css({ 'top': h, 'left': w }) //设置#innerdiv的top和left属性
      $(outerdiv).fadeIn('fast') //淡入显示#outerdiv及.pimg
    })
  $(outerdiv).click(function () {
    //再次点击淡出消失弹出层
    $(this).fadeOut('fast')
  })
}