Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cust_web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张伯涛
cust_web
Commits
241ef835
Commit
241ef835
authored
Jan 04, 2025
by
罗林杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加字段,修改婚姻状况
parent
137a3ec2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
4 deletions
+32
-4
options.js
src/utils/options.js
+2
-4
index.vue
src/views/operationsManagement/member/info/index.vue
+30
-0
No files found.
src/utils/options.js
View file @
241ef835
...
...
@@ -13,10 +13,8 @@ export const options = {
{
label
:
'其他'
,
value
:
0
}
],
marriage
:
[
{
label
:
'其他'
,
value
:
0
},
{
label
:
'未婚'
,
value
:
1
},
{
label
:
'已婚'
,
value
:
2
},
{
label
:
'离异'
,
value
:
3
}
{
label
:
'无婚史'
,
value
:
0
},
{
label
:
'有婚史'
,
value
:
1
}
],
constellation
:
[
{
label
:
'水瓶座'
,
value
:
1
},
// 1月20日 - 2月18日
...
...
src/views/operationsManagement/member/info/index.vue
View file @
241ef835
...
...
@@ -453,6 +453,23 @@
/>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"头像开发:"
prop=
"avatarOpen"
>
<el-select
v-model=
"form.avatarOpen"
placeholder=
"请选择是否开放"
style=
"width: 300px"
:disabled=
"secondFromDisabled"
>
<el-option
v-for=
"item in avatarOpenOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
...
...
@@ -661,6 +678,16 @@ export default {
value
:
0
}
],
avatarOpenOptions
:
[
{
label
:
'开放'
,
value
:
1
},
{
label
:
'不开放'
,
value
:
0
}
],
flagOptions
:
[
{
label
:
'启用'
,
...
...
@@ -787,6 +814,9 @@ export default {
}
}
this
.
form
=
response
.
data
if
(
response
.
data
.
avatarOpen
===
null
)
{
this
.
form
.
avatarOpen
=
0
}
this
.
imageUrl
=
response
.
data
.
avatarUrl
this
.
numberFormatter
()
this
.
residenceFormatter
()
...
...
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