Browse Source

修复已知bug

yingzhou 6 years ago
parent
commit
e388abd008

+ 2 - 1
app/rehabilitation/css/service_item_content.css

@ -20,6 +20,7 @@
	 position: relative;}
.icon{width: 12px;height: 12px;vertical-align: middle;background-size: 100% auto;background-repeat: no-repeat;display: inline-block;background-position: center center;}
.icon-arrow-down{background-image: url(../images/icon/tiaozhuan_xia_icon.png);}
.active .icon-arrow-down{transform: rotateZ(180deg);}
.icon-gouxuan{background-image: url(../images/icon/gouxuan_lanse_icon.png);}
.icon-check,.icon-arrow-down{transition: all .3s ease-in-out;}
.active .icon-check,.collapsed .icon-arrow-down{transform: rotateZ(180deg);}
@ -38,7 +39,7 @@
.label-group span{color: #12b7f5;font-size: 14px;line-height: 1;margin-top: 10px;}
.label-blue{border-radius: 5px;border: solid 1px #12b7f5;padding: 4px 15px;display: inline-block;margin-right: 27px;}
.panel-body{padding: 20px;font-size: 14px;color: #999;}
.panelcurPage{border-bottom: 1px solid #d7dce6;}
.panelcurPage + .panelcurPage{border-top: 1px solid #d7dce6;}
.service-content{line-height: 30px;padding-bottom: 15px;border-bottom: 1px solid #d7dce6;}
.service-address{border-bottom: 1px solid #d7dce6;}
.btn-yuyue{background-color: #02cfb9;color: #fff;}

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

@ -15,9 +15,9 @@
		      <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>
		          	<p class="service-name"><!--<span class="service-index">1</span>--><span>{{service.title}}</span></p>
		         	<div class="label-group">
		         		<span class="pull-right mt5"><i v-if="service.statusName=='已完成'" class="icon icon-gouxuan icon-18 mr5"></i>{{service.statusName}}</span>
		         		<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">{{service.shortExecuteTime}}</span>
		         		<span class="label-blue" v-for="doctor in service.executeDoctorList">{{doctor}}</span>
		         	</div>

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

@ -105,7 +105,7 @@
						<table class="table">
							<tr>
								<th style="padding-right: 50px;text-align: right;">时间</th>
								<th class="text-center">项目</th>
								<th>项目</th>
								<th>执行人员</th>
								<th>执行地点</th>
								<th>相关记录</th>
@ -127,7 +127,10 @@
								<td class="task-status">{{item.status==0?'未完成':(item.status==1?'已完成':'已预约')}}</td>
							</tr>
							<tr v-if="!timeAxisData.length">
								<td colspan="6" class="f16 ptb10 text-center">暂无数据</td>
								<td colspan="6" class="f16 ptb10 text-center">
									<img src="../../../images/wushuju_img.png" />
									<p class="c-666">暂无数据</p>
								</td>
							</tr>
						</div>
					</div>

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

@ -11,13 +11,13 @@
	<body>
		<div class="panel-group" id="app" v-cloak role="tablist" aria-multiselectable="true">
		  <div class="panelcurPage" v-for="(service,index) in serviceData">
		    <div class="panel-heading" role="tab" @click="changeCollapseIndex(index)">
		    <div class="panel-heading"  :class="{active:collapseIndex==index}" role="tab" @click="changeCollapseIndex(index)">
		      <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">{{index+1}}</span><span>{{service.title}}</span></p>
		         	<div class="label-group">
		         		<span class="pull-right mt5"><i v-if="service.statusName=='已完成'" class="icon icon-gouxuan icon-18 mr5"></i>{{service.statusName}}</span>
		         		<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">{{service.shortExecuteTime}}</span>
		         		<span class="label-blue" v-for="doctor in service.executeDoctorList">{{doctor}}</span>
		         	</div>

BIN
app/rehabilitation/images/wushuju_img.png


+ 2 - 1
app/rehabilitation/js/guide_the_message.js

@ -11,7 +11,8 @@
			upImgArr: [],
			planid: httpData['planid'],
			service: {
				relationRecordImg:{}
				relationRecordImg:{},
				messageList:{}
				}
		},
		mounted: function() {

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

@ -54,7 +54,7 @@
					layer.msg('无服务项',{icon:5})
					return ;
				}
				if(status==1&&type=1){
				if(status==1 && type==1){
					top.layer.open({
					  type: 2,
					  area: ['800px', '650px'],