Kaynağa Gözat

个人新增康复计划

linehang 6 yıl önce
ebeveyn
işleme
598a95970c

+ 10 - 1
app/recover/html/new_recover.html

@ -250,7 +250,14 @@
                	searchKey: null
                },
                mounted: function() {
                	
                	if(httpData.patient) {
                		this.isPlan = false
                		this.allFee = 0
                		this.templateDetail = []
                		this.pati = {patient: httpData.patient}
                		this.getPatientInfo()
                		this.findTemplateList()
                	}
                },
                methods: {
                	// 获取居民信息
@ -266,6 +273,7 @@
							if(res.status == 200) {
								vm.patiInfo = res.data
								console.log(vm.patiInfo)
								vm.pati.patientName = res.data.name
								vm.jDlist = [{
									name: vm.patiInfo.ssDoctorName || vm.patiInfo.jtDoctorName,
									code: vm.patiInfo.ssDoctor || vm.patiInfo.jtDoctor
@ -286,6 +294,7 @@
			    			}
						recoverAPI.findPatientSignSpecialistInfo(params).then(function(res) {
							if(res.status == 200) {
								vm.pati.teamCode = res.data.teamCode
								vm.zDlist = [{
									name: res.data.doctorName,
									code: res.data.doctor

+ 10 - 1
app/recover/html/personal-manage.html

@ -82,7 +82,13 @@
	        <div class="fl c-h100 w-100-350">
	        	<div class="fl w-100-300 c-h100">
	        		<div class="plr5">
		        		<h4 class="m0 pl15 lh40 c-border-b c-position-r clearfix"><em class="c-position-a set-blue-span"></em>康复计划<span class="fr w80 c-333 c-f12 c-t-center">进行中:{{recoverPatInfo.planUnderway}}</span><span class="fr w80 c-333 c-f12 c-t-center">已完成:{{recoverPatInfo.planFinish}}</span></h4>
		        		<h4 class="m0 pl15 lh40 c-border-b c-position-r clearfix">
		        			<em class="c-position-a set-blue-span"></em>
		        			<span class="fl">康复计划</span>
		        			<span class="fl plr20 ml20 c-f12 bgc-12b7f5 c-fff cur-pit" @click="gotoNewplan()">新建计划</span>
		        			<span class="fr w80 c-333 c-f12 c-t-center">进行中:{{recoverPatInfo.planUnderway}}</span>
		        			<span class="fr w80 c-333 c-f12 c-t-center">已完成:{{recoverPatInfo.planFinish}}</span>
		        		</h4>
		        		<div class="pb10" style="overflow: hidden; height: 230px;">
			    			<ul class="p0 plr5 m0 c-h100" style="overflow: auto;">
			    				<li class="clearfix plr5 ptb10 mt10 plan-li cur-pit c-border b-r-3" v-for="(plan, index) in recoverPatInfo.planList" :key="index" @click="jumpPlan(plan)">
@ -230,6 +236,9 @@
                	changeStatu: function() {
                		this.isMobile = false
                	},
                	gotoNewplan: function() {
                		location.href = "new_recover.html?patient=" + httpData.patientCode
                	},
                	jumpPlan: function(plan) {
                		location.href = "../../rehabilitation/html/rehabilitation_management.html?planId=" + plan.planId
                	},