|
@ -14,12 +14,12 @@
|
|
|
<script type="text/javascript" src="../../../js/esModule.js" ></script>
|
|
|
</head>
|
|
|
<body>
|
|
|
<div id="app">
|
|
|
<div id="app" style="min-width: 900px;">
|
|
|
<div class="followup_content" v-if="queryData">
|
|
|
<form class="form-horizontal">
|
|
|
<div class="form-line flexContent">
|
|
|
<label class="followup_label w-70" for="type">随访类别</label>
|
|
|
<el-select v-model="queryData.followupClass" placeholder="请选择随访类别" style="width:517px;">
|
|
|
<el-select :disabled="queryData.status!=2" v-model="queryData.followupClass" placeholder="请选择随访类别" style="width:517px;">
|
|
|
<el-option key="1" label="高血压" value="1"></el-option>
|
|
|
<el-option key="2" label="糖尿病" value="2"></el-option>
|
|
|
<el-option key="1,2" label="高血压、糖尿病" value="1,2"></el-option>
|
|
@ -37,6 +37,7 @@
|
|
|
<div class="flexContent flex_1">
|
|
|
<label class="followup_label w-100" for="type">随访时间</label>
|
|
|
<el-date-picker
|
|
|
:disabled="queryData.status!=2"
|
|
|
style="width:200px;color:#666;"
|
|
|
v-model="queryData.followupDate"
|
|
|
type="date"
|
|
@ -49,21 +50,22 @@
|
|
|
<div class="form-line flexContent flexBetween">
|
|
|
<div class="flexContent flex_1">
|
|
|
<label class="followup_label w-70" for="yisheng">随访医生</label>
|
|
|
<input type="text" v-model="queryData.doctorName" class="followup_input color777 w-200" id="yisheng" placeholder="请输入随访医生">
|
|
|
<input type="text" :disabled="queryData.status!=2" v-model="queryData.doctorName" class="followup_input color777 w-200" id="yisheng" placeholder="请输入随访医生">
|
|
|
</div>
|
|
|
<div class="flexContent flex_1">
|
|
|
<label class="followup_label w-70" for="fangshi">随访方式</label>
|
|
|
<input type="text" v-model="queryData.followupTypeName" class="followup_input color777 w-200" id="fangshi" placeholder="请输入随访方式">
|
|
|
<input type="text" :disabled="queryData.status!=2" v-model="queryData.followupTypeName" class="followup_input color777 w-200" id="fangshi" placeholder="请输入随访方式">
|
|
|
</div>
|
|
|
<div class="flexContent flex_1">
|
|
|
<label class="followup_label w-100" for="type">下次随访日期</label>
|
|
|
<el-date-picker
|
|
|
:disabled="queryData.status!=2"
|
|
|
v-model="queryData.followupNextDate"
|
|
|
type="date"
|
|
|
style="width:200px;color:#666;"
|
|
|
placeholder="选择日期"
|
|
|
format="yyyy-MM-dd HH:mm"
|
|
|
value-format="yyyy-MM-dd HH:mm">
|
|
|
format="yyyy-MM-dd"
|
|
|
value-format="yyyy-MM-dd">
|
|
|
</el-date-picker>
|
|
|
</div>
|
|
|
</div>
|