Commit ff830e2f authored by ‘yangmengxue’'s avatar ‘yangmengxue’

11

parent 1730429d
......@@ -591,10 +591,31 @@
</el-form-item>
</el-col>
<!-- 既往病史或过敏史 -->
<el-col
<el-col :span="12" v-show="configJson.pastMedicalHistory == 1">
<el-form-item
:rules="
(configJson.pastMedicalHistory == 1 ? true : false)
? referInfoRules.pastMedicalHistory
: [{ required: false }]
"
label="既往病史或过敏史"
prop="past_medical_history"
style="height: 73px"
>
<el-input
clearable
placeholder="填写既往病史或过敏史"
ref="code"
size="small"
v-model="referForm.past_medical_history"
/>
</el-form-item>
</el-col>
<!-- <el-col
:span="12"
v-show="configJson.pastMedicalHistory == 1 && isOffline == true"
>
<el-form-item
:rules="
(configJson.pastMedicalHistory == 1 ? true : false) &&
......@@ -614,9 +635,29 @@
v-model="referForm.past_medical_history"
/>
</el-form-item>
</el-col>
</el-col> -->
<!-- 备注或其它 -->
<el-col
<el-col :span="12" v-show="configJson.noteOther == 1">
<el-form-item
:rules="
(configJson.noteOther == 1 ? true : false)
? referInfoRules.noteOther
: [{ required: false }]
"
label="备注或其它"
prop="note_other"
style="height: 73px"
>
<el-input
clearable
placeholder="填写备注或其它"
ref="code"
size="small"
v-model="referForm.note_other"
/>
</el-form-item>
</el-col>
<!-- <el-col
:span="12"
v-show="configJson.noteOther == 1 && isOffline == true"
>
......@@ -638,7 +679,7 @@
v-model="referForm.note_other"
/>
</el-form-item>
</el-col>
</el-col> -->
<!-- 邀请码 -->
<el-col :span="12" v-show="configJson.code == 1">
......@@ -704,7 +745,29 @@
</el-form-item>
</el-col>
<!-- 衣服尺码-->
<el-col
<el-col :span="24" v-show="configJson.clothesSize == 1">
<el-form-item
:rules="
(configJson.clothesSize == 1 ? true : false)
? referInfoRules.clothesSize
: [{ required: false }]
"
label="衣服尺码"
prop="clothes_size"
style="height: 200px"
>
<el-radio-group ref="clothes_size" v-model="referForm.clothes_size">
<div
v-for="item in clothesSize"
:key="item.id"
style="margin-right: 10px"
>
<el-radio :label="item.id">{{ item.name }}</el-radio>
</div>
</el-radio-group>
</el-form-item>
</el-col>
<!-- <el-col
:span="24"
v-show="configJson.clothesSize == 1 && isOffline == true"
>
......@@ -727,24 +790,8 @@
<el-radio :label="item.id">{{ item.name }}</el-radio>
</div>
</el-radio-group>
<!-- <el-select
:popper-append-to-body="false"
clearable
placeholder="填写衣服尺码"
ref="clothes_size"
v-model="referForm.clothes_size"
>
<el-option
:key="item.id"
:label="item.name"
:value="item.name"
v-for="item in clothesSize"
>
</el-option>
</el-select> -->
</el-form-item>
</el-col>
</el-col> -->
</el-row>
<!-- 联系人信息-->
<div v-show="configJson.emergency == 1 || configJson.emergencyPhone == 1">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment