Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
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
黄媛媛
ElectricitySheep
Commits
01434f90
Commit
01434f90
authored
Oct 27, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
110634d1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
532 additions
and
772 deletions
+532
-772
addblindDateuser.vue
src/components/UserMan/addblindDateuser.vue
+31
-7
blindDateUsersList.vue
src/components/UserMan/blindDateUsersList.vue
+487
-764
blindDateUsersListEdit.vue
src/components/UserMan/blindDateUsersListEdit.vue
+14
-1
No files found.
src/components/UserMan/addblindDateuser.vue
View file @
01434f90
...
...
@@ -93,7 +93,24 @@
<el-form-item
label=
"年收入"
>
<el-radio
v-model=
"addMsg.YearMoneyType"
v-for=
"(x,y) in yearMoneyList"
:key=
"y"
:label=
"x.Id"
>
{{x.Name}}
</el-radio>
</el-form-item>
<el-form-item
label=
"是否显示用户资料"
>
<el-switch
v-model=
"addMsg.IsShow"
active-color=
"#409EFF"
:active-value=
"1"
:inactive-value=
"0"
>
</el-switch>
<span
class=
"tip"
>
关闭后,用户将无法显示
</span>
</el-form-item>
<el-form-item
label=
"可查看微信次数"
>
<el-input
v-model=
"addMsg.LookTimes"
style=
"width:478px"
size=
"small"
:min=
"0"
type=
"number"
placeholder=
"请输入次数"
>
<
template
slot=
"append"
>
次
</
template
>
</el-input>
</el-form-item>
<el-form-item
label=
"所属分组"
>
<el-select
v-model=
"addMsg.BelongGroupIdList"
multiple
class=
"w300"
>
<el-option
v-for=
"item in groupArray"
:key=
"item.GroupId"
:label=
"item.GroupName"
:value=
"item.GroupId"
>
</el-option>
</el-select>
</el-form-item>
<!-- <el-form-item label="年收入" prop="YearMoney" >
<el-input v-model="addMsg.YearMoney" style="width:478px" size="small" :min="0" type="number" placeholder="请输入年收入">
<template slot="append">万</template>
...
...
@@ -295,8 +312,9 @@
DWProvince
:
''
,
DWCity
:
''
,
DWDistrict
:
''
,
IsShow
:
1
,
//默认显示
LookTimes
:
''
,
BelongGroupIdList
:[]
},
rules
:
{
...
...
@@ -364,7 +382,7 @@
addressName2
:
'请选择个人定位'
,
provinceList
:
[],
//省市县列表
props
:
{
value
:
'value'
,
children
:
'cities'
},
groupArray
:[]
//可查看分组
};
},
created
()
{
...
...
@@ -376,7 +394,7 @@
this
.
GetCarInfoEnumList
()
//车子情况
this
.
getPosition
(
null
)
//地址的请求
this
.
getYearMoneyType
()
//获取年收入的枚举
this
.
getgroupList
();
},
methods
:
{
GetEducationTypeEnumList
(){
//学历
...
...
@@ -601,9 +619,15 @@
// return
// }
// })
},
//获取分组下来列表
getgroupList
()
{
this
.
apipost
(
"/api/User/GetMemberGroupList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
groupArray
=
res
.
data
.
data
;
}
});
}
},
mounted
()
{
...
...
src/components/UserMan/blindDateUsersList.vue
View file @
01434f90
This diff is collapsed.
Click to expand it.
src/components/UserMan/blindDateUsersListEdit.vue
View file @
01434f90
...
...
@@ -118,7 +118,10 @@
</el-input>
</el-form-item>
<el-form-item
label=
"所属分组"
>
addMsg.BelongGroupIdList
<el-select
v-model=
"addMsg.BelongGroupIdList"
multiple
class=
"w300"
>
<el-option
v-for=
"item in groupArray"
:key=
"item.GroupId"
:label=
"item.GroupName"
:value=
"item.GroupId"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"现据地"
>
...
...
@@ -303,6 +306,7 @@
value
:
'value'
,
children
:
'cities'
},
groupArray
:[]
//可查看分组
};
},
created
()
{
...
...
@@ -313,6 +317,7 @@
this
.
GetCarInfoEnumList
()
//车子情况
this
.
getPosition
(
null
)
//地址的请求
this
.
getYearMoneyType
()
//获取年收入的枚举
this
.
getgroupList
()
//获取用户分组
if
(
this
.
$route
.
query
.
UserId
)
{
this
.
UserId
=
this
.
$route
.
query
.
UserId
;
...
...
@@ -560,6 +565,14 @@
this
.
yearMoneyList
=
res
.
data
.
data
;
});
},
//获取分组下来列表
getgroupList
()
{
this
.
apipost
(
"/api/User/GetMemberGroupList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
groupArray
=
res
.
data
.
data
;
}
});
}
},
mounted
()
{
...
...
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