Browse Source

测试体征接口 没问题

zyz 6 years ago
parent
commit
eca74a0392

+ 1 - 0
app/jbsc/css/questionnaire.css

@ -17,6 +17,7 @@
[v-cloak] {
[v-cloak] {
    display: none;
    display: none;
}
}
.c-999{color: #999!important;}
.prompt-text{background-color: #ffa39e;color: #fff;font-size: 12px;text-align: center;line-height: 26px;}
.prompt-text{background-color: #ffa39e;color: #fff;font-size: 12px;text-align: center;line-height: 26px;}
.single-choice-question{margin: 20px;padding: 0 20px;max-height: 540px;overflow-y: auto;border: 1px solid #d7dce6;border-radius: 10px;}
.single-choice-question{margin: 20px;padding: 0 20px;max-height: 540px;overflow-y: auto;border: 1px solid #d7dce6;border-radius: 10px;}
.question-title{font-size: 16px;line-height: 40px;}
.question-title{font-size: 16px;line-height: 40px;}

+ 1 - 1
app/jbsc/html/filter_type.html

@ -230,6 +230,7 @@
							parent.question.screeningType=vm.screeningType.code
							parent.question.screeningType=vm.screeningType.code
							parent.question.screeningTitle=vm.screeningType.title
							parent.question.screeningTitle=vm.screeningType.title
							parent.question.getQuestion();
							parent.question.getQuestion();
							parent.question.selectArr=[]
							var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
							var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
							parent.layer.close(index); //再执行关闭
							parent.layer.close(index); //再执行关闭
						}
						}
@ -269,7 +270,6 @@
			    	selectDenizen:function(item){
			    	selectDenizen:function(item){
			    		var vm=this;
			    		var vm=this;
			    		vm.screeningResidents=item
			    		vm.screeningResidents=item
			    		console.log(vm.screeningResidents)
			    	}
			    	}
				},
				},
				watch:{
				watch:{

+ 3 - 3
app/jbsc/html/questionnaire.html

@ -67,9 +67,9 @@
						<span class="w-70">
						<span class="w-70">
							体征记录
							体征记录
						</span>
						</span>
						<div class="flex-box-item" v-if="tizhongRecord.recordDate && tizhongRecord.value2">
							<p>体重<input type="number" step="0.1" readonly="readonly" :value="tizhongRecord.recordDate" /><span v-text="tizhongRecord.recordType"></span></p>
							<p class="mb0">身高<input type="number" step="0.1" readonly="readonly" :value="tizhongRecord.value2" /><span v-text="tizhongRecord.value1"></span></p>
						<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>
						<div class="flex-box-item" v-else>
						<div class="flex-box-item" v-else>
							暂无体征
							暂无体征