Commit f386490c authored by yaya's avatar yaya

feat:修改传参

parent e413fab1
...@@ -120,7 +120,7 @@ export default { ...@@ -120,7 +120,7 @@ export default {
listQuery: { listQuery: {
page: 1, page: 1,
limit: 20, limit: 20,
type: 6 typeList: [6]
}, },
list: [], list: [],
total: 0, total: 0,
...@@ -149,7 +149,7 @@ export default { ...@@ -149,7 +149,7 @@ export default {
this.listQuery = { this.listQuery = {
page: 1, page: 1,
limit: 20, limit: 20,
type: 6 typeList: [6]
} }
this.getList() this.getList()
}, },
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
<el-table-column align="center" min-width="100px" prop="id" label="拍品ID" fixed="left"/> <el-table-column align="center" min-width="100px" prop="id" label="拍品ID" fixed="left"/>
<el-table-column align="center" label="封面图" prop="itemImg" min-width="100px"> <el-table-column align="center" label="封面图" prop="itemImg" min-width="100px">
<template slot-scope="scope"> <template slot-scope="scope">
<!-- <img v-if="scope.row.images" :src="scope.row.images.split(';')[0]" width="60px" height="60px" @click="handleShowPreview(scope.row.images)"> --> <!-- <img v-if="scope.row.images" :src="scope.row.images.split(';')[0]" width="60px" height="60px" @click="handleShowPreview(scope.row.images)"> -->
<div class="image_preview"> <div class="image_preview">
<el-image <el-image
:preview-src-list="scope.row.images.split(';')" :preview-src-list="scope.row.images.split(';')"
...@@ -197,7 +197,7 @@ export default { ...@@ -197,7 +197,7 @@ export default {
listQuery: { listQuery: {
page: 1, page: 1,
limit: 20, limit: 20,
type: 3 typeList: [3, 7]
}, },
list: [], list: [],
total: 0, total: 0,
...@@ -319,7 +319,7 @@ export default { ...@@ -319,7 +319,7 @@ export default {
this.listQuery = { this.listQuery = {
page: 1, page: 1,
limit: 20, limit: 20,
type: 3 typeList: [3, 7]
} }
this.getList() this.getList()
}, },
......
...@@ -293,7 +293,7 @@ export default { ...@@ -293,7 +293,7 @@ export default {
getItemList() { getItemList() {
this.listLoading = true this.listLoading = true
this.listQuery.creatorId = this.userId this.listQuery.creatorId = this.userId
this.listQuery.type = 3 this.listQuery.listType = [3, 7]
this.listQuery.id = '' this.listQuery.id = ''
getSaleList(this.listQuery).then(response => { getSaleList(this.listQuery).then(response => {
this.list = response.data.data.dataList this.list = response.data.data.dataList
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment