Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qk_admin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
quanku
qk_admin
Commits
5a3f18ff
Commit
5a3f18ff
authored
Dec 15, 2023
by
yaya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 寄售单列表刷新优化
parent
b300ef49
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/App.vue
src/App.vue
+3
-2
src/views/consign/consignList.vue
src/views/consign/consignList.vue
+3
-0
No files found.
src/App.vue
View file @
5a3f18ff
<
template
>
<div
id=
"app"
>
<keep-alive
exclude=
"Hello"
>
<
!--
<
keep-alive
exclude=
"Hello"
>
<router-view
v-if=
"$route.meta.keepAlive"
/>
</keep-alive>
<router-view
v-if=
"!$route.meta.keepAlive"
/>
<router-view
v-if=
"!$route.meta.keepAlive"
/>
-->
<router-view/>
</div>
</
template
>
...
...
src/views/consign/consignList.vue
View file @
5a3f18ff
...
...
@@ -293,6 +293,7 @@ export default {
}
},
created
()
{
this
.
listQuery
.
systemState
=
localStorage
.
getItem
(
'
systemState
'
)
||
'
1
'
this
.
getList
()
},
methods
:
{
...
...
@@ -305,6 +306,7 @@ export default {
this
.
getList
()
},
getList
()
{
localStorage
.
setItem
(
'
systemState
'
,
''
)
this
.
listLoading
=
true
findConsignList
(
this
.
listQuery
).
then
(
response
=>
{
this
.
list
=
response
.
data
.
data
.
dataList
...
...
@@ -320,6 +322,7 @@ export default {
* 详情
*/
handleToDetail
(
item
)
{
localStorage
.
setItem
(
'
systemState
'
,
this
.
listQuery
.
systemState
)
this
.
$router
.
push
({
path
:
'
/consign/consignDetail
'
,
query
:
{
saleId
:
item
.
saleId
}})
},
/**
...
...
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