Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
integral-mall
Overview
Overview
Details
Activity
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
integralMall
integral-mall
Commits
9a79020c
Commit
9a79020c
authored
Sep 09, 2021
by
陈羽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 创建人筛选
parent
08fb1aa8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
8 deletions
+13
-8
couponExchange.vue
src/views/order/couponExchange.vue
+1
-2
giftExchange.vue
src/views/order/giftExchange.vue
+1
-2
refundList.vue
src/views/order/refundList.vue
+1
-2
deliverSet.vue
src/views/setting/deliverSet.vue
+10
-2
No files found.
src/views/order/couponExchange.vue
View file @
9a79020c
...
...
@@ -222,7 +222,6 @@ export default {
if
(
!
e
.
target
.
value
)
{
this
.
creatorId
=
''
;
this
.
creatorName
=
''
;
this
.
handleInputSearch
();
}
},
selectCreator
(
v
)
{
...
...
@@ -230,8 +229,8 @@ export default {
this
.
$nextTick
(()
=>
{
this
.
creatorName
=
v
.
creatorName
;
this
.
creatorId
=
v
.
creatorId
;
this
.
handleInputSearch
();
});
this
.
handleInputSearch
();
},
querySearch
(
v
,
cb
)
{
this
.
creatorLoading
=
true
;
...
...
src/views/order/giftExchange.vue
View file @
9a79020c
...
...
@@ -429,7 +429,6 @@ export default {
if
(
!
e
.
target
.
value
)
{
this
.
creatorId
=
''
;
this
.
creatorName
=
''
;
this
.
handleInputSearch
();
}
},
selectCreator
(
v
)
{
...
...
@@ -437,8 +436,8 @@ export default {
this
.
$nextTick
(()
=>
{
this
.
creatorName
=
v
.
creatorName
;
this
.
creatorId
=
v
.
creatorId
;
this
.
getListCurr
();
});
this
.
getListCurr
();
},
querySearch
(
v
,
cb
)
{
this
.
creatorLoading
=
true
;
...
...
src/views/order/refundList.vue
View file @
9a79020c
...
...
@@ -245,7 +245,6 @@ export default {
if
(
!
e
.
target
.
value
)
{
this
.
updaterId
=
''
;
this
.
updaterName
=
''
;
this
.
handleInputSearch
();
}
},
selectCreator
(
v
)
{
...
...
@@ -253,8 +252,8 @@ export default {
this
.
$nextTick
(()
=>
{
this
.
updaterName
=
v
.
creatorName
;
this
.
updaterId
=
v
.
creatorId
;
this
.
handleInputSearch
();
});
this
.
handleInputSearch
();
},
querySearch
(
v
,
cb
)
{
this
.
creatorLoading
=
true
;
...
...
src/views/setting/deliverSet.vue
View file @
9a79020c
...
...
@@ -36,7 +36,7 @@
<el-input
v-model=
"searchValue"
placeholder=
"请输入自提点名称/code"
prefix-icon=
"el-icon-search"
clearable
class=
"w-280"
@
keyup
.
enter
.
native=
"getSearchList"
@
clear=
"getSearchList"
>
</el-input>
</div>
<div
class=
"search-item m-r-10"
>
<el-autocomplete
prefix-icon=
"el-icon-search"
popper-class=
"autocomplete-wrap"
class=
"inline-input"
:value=
"creatorName"
:select-when-unmatched=
"true"
@
select=
"selectCreator"
:fetch-suggestions=
"querySearch"
placeholder=
"请输入创建人"
:trigger-on-focus=
"false"
>
<el-autocomplete
prefix-icon=
"el-icon-search"
popper-class=
"autocomplete-wrap"
class=
"inline-input"
:value=
"creatorName"
:select-when-unmatched=
"true"
@
change
.
native=
"changeAuto"
@
select=
"selectCreator"
:fetch-suggestions=
"querySearch"
placeholder=
"请输入创建人"
:trigger-on-focus=
"false"
>
<template
slot-scope=
"
{ item }">
{{
item
.
creatorName
}}
</
template
>
</el-autocomplete>
</div>
...
...
@@ -165,13 +165,21 @@ export default {
this
.
getStatus
();
},
methods
:
{
changeAuto
(
e
)
{
if
(
!
e
.
target
.
value
)
{
this
.
creatorId
=
''
;
this
.
creatorName
=
''
;
// this.getSearchList();
}
},
selectCreator
(
v
)
{
this
.
creatorName
=
''
;
this
.
creatorId
=
''
;
this
.
$nextTick
(()
=>
{
this
.
creatorName
=
v
.
creatorName
;
this
.
creatorId
=
v
.
creatorId
;
this
.
getSearchList
();
});
this
.
getSearchList
();
},
querySearch
(
v
,
cb
)
{
this
.
creatorLoading
=
true
;
...
...
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