Browse Source

疾病筛查列表增加状态显示 功能

zhangyanfang 5 years ago
parent
commit
23149574b6
2 changed files with 22 additions and 6 deletions
  1. 14 1
      app/jbsc/html/statistics.html
  2. 8 5
      app/jbsc/html/view_screening_results.html

+ 14 - 1
app/jbsc/html/statistics.html

@ -159,6 +159,7 @@
							<th>姓名</th>
							<th>筛查类型</th>
							<th>评分</th>
							<th>状态</th>
							<th>评估</th>
							<th>时间</th>
							<th style="width:200px;">管理情况</th>
@ -169,6 +170,18 @@
							<td style="width:80px">{{data.patientName}}</td>
							<td @click="view(data)">{{data.templateTitle}}</td>
							<td class="c-FF9630" style="width:50px">{{data.screenResultScore}}分</td>
							<td style="width:70px;">
								<div v-if="data.isAgain==1&&data.isDanger==1&&!data.thirdId">
									<span v-if="data.following==1">已跟踪</span>	
									<span v-if="data.isOrder==1">已预约</span>	
									<span v-if="data.isOrder==2">已接诊</span>	
									<span v-if="data.following==0&&data.isOrder==0">待处理</span>	
									<span v-if="data.isDanger==0">日常健康管理</span>		
								</div>
								<div v-else>
									&nbsp;
								</div>
							</td>
							<td>{{data.screenResult}}</td>
							<td style="width:155px;">{{data.czrq}}</td>
							<td style="width:200px;">
@ -196,7 +209,7 @@
							</td>
						</tr>
						<tr v-if="wujilu">
							<td colspan="6">
							<td colspan="7">
								无记录
							</td>
						</tr>

+ 8 - 5
app/jbsc/html/view_screening_results.html

@ -268,22 +268,25 @@
								data && data.info && data.info.code && vm.getHealth();
								data && (vm.specialDoctorName = data.specialDoctorName);
								var userInfo = data.info || []
								if(userInfo.isDanger==1 || userInfo.is_danger==1){
								if((userInfo.isDanger==1 || userInfo.is_danger==1) && !userInfo.thirdId && ( userInfo.isAgain==1 || userInfo.is_again==1)){
						           //只有高危的筛查需要处理
						            if(userInfo.following == 1){
						                vm.dealAction.push("已跟踪");
						            }
						            if(userInfo.isOrder == 1 || userInfo.is_order == 1){
						                vm.dealAction.push("已预约转诊");
						                vm.dealAction.push("已预约");
						            }
						            if(userInfo.isOrder == 2 || userInfo.is_order == 2){
						                vm.dealAction.push("已接诊");
						            }
						            if(vm.dealAction.length == 0){
						            if(userInfo.following==0 && (userInfo.isOrder==0 || userInfo.is_order==0)){
						                vm.dealAction.push("待处理");
						            }
									}
									if(userInfo.isDanger==0 || userInfo.is_danger==0){
										vm.dealAction.push("日常健康管理");
									}
						        }else{
						            vm.dealAction.push("日常健康管理");
									vm.dealAction.push("");
						        }
						        vm.dealAction=vm.dealAction.join(',');
							}else{