Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
A
admin-base
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
new-sing
admin-base
Commits
11c572a7
Commit
11c572a7
authored
Jan 03, 2019
by
chenfenglei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
商品列表跳转期数列表
parent
f8c690e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
userList.vue
src/components/class/userList.vue
+1
-4
index.vue
src/components/sourceManage/index.vue
+8
-1
No files found.
src/components/class/userList.vue
View file @
11c572a7
...
...
@@ -578,10 +578,7 @@
message
:
'请先选择用户'
}
)
}
else
{
let
goods_id
=
this
.
userObj
.
goods_id
;
if
(
goods_id
==
undefined
){
goods_id
=
this
.
userTable
[
0
].
goods_id
}
let
goods_id
=
this
.
selectUserList
[
0
].
goods_id
;
getPeriodsApi
({
goods_id
:
goods_id
,
limit
:
99999
}
).
then
(
res
=>
{
res
.
list
.
forEach
(
i
=>
{
i
.
children
=
[]
...
...
src/components/sourceManage/index.vue
View file @
11c572a7
<
template
>
<div
class=
"menu"
>
<el-form
ref=
"searchFrom"
:model=
"searchFrom"
label-width=
"120px"
inline
>
<el-form-item
label=
"来源码类别"
>
<el-form-item
label=
"名字"
>
<el-input
v-model=
"searchFrom.title"
></el-input>
</el-form-item>
<el-form-item
label=
"来源码类别"
>
<el-select
v-model=
"searchFrom.type_id"
placeholder=
"请选择"
@
change=
"getList"
clearable
>
<el-option
v-for=
"(data,index) in codeType"
...
...
@@ -265,6 +268,7 @@
userList
:
[],
searchUserFrom
:
{
type_id
:
""
,
title
:
""
,
},
multipleSelection
:
[],
noCashUserDialog
:
{
...
...
@@ -317,6 +321,9 @@
}
if
(
this
.
searchFrom
.
type_id
){
json
.
type_id
=
this
.
searchFrom
.
type_id
;
}
if
(
this
.
searchFrom
.
title
){
json
.
title
=
this
.
searchFrom
.
title
;
}
getSourceListApi
(
json
).
then
(
res
=>
{
if
(
res
)
{
...
...
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