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
870ff1c0
Commit
870ff1c0
authored
Jul 25, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
eb5972e4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
7 deletions
+44
-7
happraise.vue
src/components/huimai/happraise.vue
+42
-5
hbrand.vue
src/components/huimai/hbrand.vue
+2
-2
No files found.
src/components/huimai/happraise.vue
View file @
870ff1c0
...
...
@@ -14,11 +14,18 @@
</el-option>
</el-select>
<span>
分类名称
</span>
<el-input
type=
"text"
style=
"width:250px"
size=
"small"
maxlength=
"100"
v-model=
"msg.Name"
>
<el-input
type=
"text"
style=
"width:250px"
size=
"small"
maxlength=
"100"
v-model=
"msg.BrandName"
@
input=
"msg.pageIndex=1,getList()"
clearable
>
</el-input>
<span
style=
"margin-left: 10px"
>
咨询用户
</span>
<el-select
size=
"small"
v-model=
"msg.UserId"
@
change=
"(msg.pageIndex = 1), getList()"
placeholder=
"请选择"
:filter-method=
"ChangeListName"
filterable
clearable
>
<el-option
label=
"不限"
:value=
"0"
></el-option>
<el-option
v-for=
"item in userList"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
></el-option>
</el-select>
<span>
是否回复
</span>
<el-select
style=
"margin:0 10px"
class=
"w200"
@
change=
"msg.pageIndex=1,getList()"
v-model=
"msg.IsReply
"
size=
"small"
placeholder=
"请选择"
clearable
>
<el-select
style=
"margin:0 10px"
@
change=
"msg.pageIndex=1,getList()"
v-model=
"msg.IsReply"
size=
"small
"
placeholder=
"请选择"
>
<el-option
label=
"不限"
:value=
"0"
></el-option>
<el-option
v-for=
"item in ReplyList"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
</el-option>
...
...
@@ -121,7 +128,7 @@
msg
:
{
pageIndex
:
1
,
pageSize
:
15
,
Name
:
""
,
Brand
Name
:
""
,
CategoryId
:
""
,
BrandId
:
""
,
UserId
:
""
,
...
...
@@ -155,15 +162,45 @@
CategoryList
:
[],
//分类列表
isShowReplayForm
:
false
,
//是否显示回复弹窗
showType
:
1
,
//回复类型(1-回复,2-查看)
userList
:
[],
//用户列表
//用户查询
userMsg
:
{
pageIndex
:
1
,
pageSize
:
50
,
Name
:
""
,
Source
:
0
,
MemberGrade
:
0
,
Id
:
0
,
Moblie
:
""
,
}
}
},
created
()
{
this
.
getCategoryList
()
this
.
getCategoryList
();
this
.
getuserList
();
},
mounted
()
{
this
.
getList
();
},
methods
:
{
//搜索用户
ChangeListName
(
val
)
{
this
.
userMsg
.
Name
=
val
;
this
.
getuserList
();
},
//获取用户列表
getuserList
()
{
this
.
apipost
(
"/api/user/GetMemberUserDropDownList"
,
this
.
userMsg
,
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
let
pageData
=
res
.
data
.
data
.
pageData
;
this
.
userList
=
pageData
;
}
}
);
},
showReplayForm
(
item
,
showType
)
{
this
.
replayMsg
.
GoodsId
=
item
.
Id
;
this
.
replayMsg
.
GoodsImgList
=
item
.
GoodsImgList
;
...
...
src/components/huimai/hbrand.vue
View file @
870ff1c0
...
...
@@ -75,14 +75,14 @@
}
},
created
()
{
this
.
get
Brand
List
()
this
.
get
Category
List
()
},
mounted
()
{
this
.
getList
();
},
methods
:
{
//获取分类列表
get
Brand
List
()
{
get
Category
List
()
{
this
.
apipost
(
"/api/Assess/GetCategoryDropList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
CategoryList
=
res
.
data
.
data
;
...
...
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