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
4061348e
Commit
4061348e
authored
Jul 23, 2020
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
f5cae5ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
supplierManage.vue
src/components/CommodityMan/supplierManage.vue
+1
-1
usersListEdit.vue
src/components/UserMan/usersListEdit.vue
+12
-1
No files found.
src/components/CommodityMan/supplierManage.vue
View file @
4061348e
...
...
@@ -8,7 +8,7 @@
<div>
<div
class=
"searchInput"
style=
"width:250px"
>
<el-input
style=
"display:inline-block;width:225px;height:30px"
placeholder=
"请输入
规格名
搜索"
placeholder=
"请输入
供应商名称
搜索"
v-model=
"msg.Name"
@
keyup
.
enter
.
native=
"msg.pageIndex=1,getList()"
@
clear=
"msg.pageIndex=1,getList()"
...
...
src/components/UserMan/usersListEdit.vue
View file @
4061348e
...
...
@@ -14,7 +14,7 @@
<el-form-item
label=
"会员等级"
>
<el-select
style=
"width:293px;"
size=
"small"
v-model=
"userInfo.MemberGrade"
placeholder=
"请选择活动区域"
>
<el-option
label=
"普通用户"
:value=
"0"
></el-option>
<el-option
v-for=
"(item,index) in
100"
:key=
"index"
:label=
"`等级$
{index+1}`" :value="index+1
">
<el-option
v-for=
"(item,index) in
options"
:key=
"index"
:label=
"item.Name"
:value=
"item.Id
"
>
</el-option>
</el-select>
</el-form-item>
...
...
@@ -89,6 +89,7 @@
Moblie
:
''
},
tableData
:
[],
options
:[],
};
},
created
()
{
...
...
@@ -96,6 +97,7 @@
this
.
UserId
=
this
.
$route
.
query
.
UserId
;
this
.
getData
()
this
.
getList
();
this
.
getMemberGradeList
()
}
},
methods
:
{
...
...
@@ -133,6 +135,15 @@
}
})
},
getMemberGradeList
(){
this
.
loading
=
true
;
this
.
apipost
(
"/api/user/GetMemberGradeList"
,
{
Grade
:
0
,
Name
:
''
,
Enabled
:
1
},
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
options
=
res
.
data
.
data
}
})
},
querySearch
(
queryString
,
cb
)
{
},
...
...
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