lulihong 5 rokov pred
rodič
commit
80a1911858

+ 2 - 2
app/rehabilitation/html/rehabilitation_management.html

@ -121,11 +121,11 @@
							<div class="ui-col-0 ml30 mr21">
								<img :src="setImgSrc(doc.doctorPhoto)" width="40" class="c-images-cycle">
							</div>
							<div class="ui-col-0 mr100">
							<div class="ui-col-0" style="width: 150px;">
								<div class="c-f16 c-333">{{doc.doctorName}}</div>
								<div class="c-f14 c-999">{{doc.type}}</div>
							</div>
							<div class="ui-col-0">
							<div class="ui-col-1" style="width: 200px;">
								<div class="c-f14 c-333">完成项目:<span class="c-f14 c-ff9630">{{doc.finishedItem}}</span></div>
								<div class="c-f14 c-333">服务次数:<span class="c-f14 c-ff9630">{{doc.serviceCount}}</span></div>
							</div>

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

@ -68,11 +68,13 @@
			    	</div>
			    	<span class="fr mr10 pt35 c-f20">合计:</span>
			    </div>
			    <div v-show="planStatus && planStatus!=2" style="color: #FF0000;font-size: 14px;text-align: left;margin-top: 30px;">已发送确认邀请,等待居民确认康复计划所有完成项,您还可以使用APP电子签+居民手持证件照快速完成确认。</div>
			    <div v-show="planStatus==2" style="color: #FF0000;font-size: 14px;text-align: left;margin-top: 30px;">居民已确认接收康复完成项目</div>
			</div>
			<!--endprint-->
			<div class="c-t-center c-f14 pt100 pb40">
				<span class="btn b-r-3 btn-12b7f5 c-fff" id="printBtn">打印</span>
				<span class="btn b-r-3 bgc-c8c8c8 c-fff ml30 c-hide" id="seeQianShou">查看签收</span>
				<span class="btn b-r-3 bgc-c8c8c8 c-fff ml30" id="seeQianShou" v-show="planStatus==2">查看签收</span>
			</div>
		<script type="text/javascript" src="../../../js/vue.js"></script>
		<script type="text/javascript" src="../../../js/jquery-2.2.4.js"></script>

+ 2 - 2
app/rehabilitation/js/rehabilitation_management.js

@ -63,7 +63,7 @@
							vm.showCompleteDailog();
			            }else if(vm.planInfo.status==2 && vm.planInfo.patientImg){//居民已确认计划完成
			            	vm.tabStatus=3;
							$("#framePage").attr("src","stop_special_service.html?planids="+vm.planId+"&completePlan=true")
							$("#framePage").attr("src","stop_special_service.html?planids="+vm.planId+"&planStatus="+vm.planInfo.status)
			            }
			        }else{
			        	layer.msg(res.msg,{icon:5});
@ -87,7 +87,7 @@
					 	layer.msg("发送成功,等待居民确认");
					 	setTimeout(function(){
					 		vm.tabStatus=3;
							$("#framePage").attr("src","stop_special_service.html?planids="+vm.planId)
							$("#framePage").attr("src","stop_special_service.html?planids="+vm.planId+"&planStatus="+vm.planInfo.status)
					 	},1000)
					 }else{
			        	layer.msg(res.msg,{icon:5});

+ 3 - 4
app/rehabilitation/js/stop_special_service.js

@ -50,14 +50,13 @@
	new Vue({
		el:"#app",
		data:{
			accountList: {}
			accountList: {},
			planStatus:""
		},
		mounted:function(){
			this.getServiceItemsAfterStop()
			bindEvent();
			if(httpData.completePlan){//居民已确认完成计划,显示“查看签收”按钮
				$("#seeQianShou").show();
			}
			this.planStatus = httpData.planStatus || "";
		},
		methods:{
			getServiceItemsAfterStop: function() {