Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
campSite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
杨梦雪
campSite
Commits
ff830e2f
Commit
ff830e2f
authored
May 15, 2025
by
‘yangmengxue’
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
11
parent
1730429d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
22 deletions
+69
-22
src/components/index/SignUp/referInfo.vue
src/components/index/SignUp/referInfo.vue
+69
-22
No files found.
src/components/index/SignUp/referInfo.vue
View file @
ff830e2f
...
...
@@ -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"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment