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
c20a0747
Commit
c20a0747
authored
Jul 16, 2024
by
yaya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:修改拍品管理页面刷新问题
parent
e30bc103
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/views/sale/auctionList.vue
src/views/sale/auctionList.vue
+7
-1
No files found.
src/views/sale/auctionList.vue
View file @
c20a0747
...
...
@@ -22,6 +22,7 @@
element-loading-text=
"正在查询中..."
border
fit
height=
"700"
highlight-current-row
>
<!--
<el-table-column
align=
"center"
label=
"排行"
width=
"100px"
type=
"index"
/>
-->
<el-table-column
align=
"center"
min-width=
"100px"
prop=
"id"
label=
"拍卖ID"
fixed=
"left"
/>
...
...
@@ -174,6 +175,8 @@ export default {
}
}
,
created
()
{
this
.
listQuery
.
limit
=
Number
(
localStorage
.
getItem
(
'
auction_limit
'
)
||
'
20
'
)
this
.
listQuery
.
page
=
Number
(
localStorage
.
getItem
(
'
auction_page
'
)
||
'
1
'
)
this
.
getList
()
}
,
methods
:
{
...
...
@@ -216,7 +219,8 @@ export default {
this
.
getList
()
}
,
getList
()
{
localStorage
.
setItem
(
'
systemState
'
,
''
)
localStorage
.
setItem
(
'
auction_page
'
,
'
1
'
)
localStorage
.
setItem
(
'
auction_limit
'
,
'
20
'
)
this
.
listLoading
=
true
findAuctionList
(
this
.
listQuery
).
then
(
response
=>
{
this
.
list
=
response
.
data
.
data
.
dataList
...
...
@@ -238,6 +242,8 @@ export default {
* 详情
*/
handleToEdit
(
item
)
{
localStorage
.
setItem
(
'
auction_page
'
,
this
.
listQuery
.
page
)
localStorage
.
setItem
(
'
auction_limit
'
,
this
.
listQuery
.
limit
)
this
.
$router
.
push
({
path
:
'
/sale/AuctionAdd
'
,
query
:
{
id
:
item
.
id
}}
)
}
,
/**
...
...
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