|
@@ -515,13 +515,14 @@ export default {
|
|
|
message:[],//导入文件信息
|
|
|
file:{},//导入文件
|
|
|
queryParam: {
|
|
|
- pageSize:20
|
|
|
// pageNo: '',
|
|
|
// orderNumber: '',
|
|
|
// itemNumber: '',
|
|
|
// productName: '' // 品名
|
|
|
},
|
|
|
pagination: {
|
|
|
+ pageSizeOptions: ["50", "100", "150"],
|
|
|
+ showSizeChanger: true,
|
|
|
// total: '',
|
|
|
// current: 0,
|
|
|
// pageSize: 0
|
|
@@ -548,6 +549,7 @@ export default {
|
|
|
console.log(this.queryParam)
|
|
|
this.$nextTick(() => {
|
|
|
this.loading = true
|
|
|
+ this.queryParam.pageSize = 50
|
|
|
getadPaList(this.queryParam).then(res => {
|
|
|
this.loading = false
|
|
|
if (res.success) {
|
|
@@ -559,7 +561,9 @@ export default {
|
|
|
this.pagination = {
|
|
|
total: res.result.total,
|
|
|
current: res.result.current,
|
|
|
- pageSize: res.result.size
|
|
|
+ pageSize: res.result.size,
|
|
|
+ pageSizeOptions: ["50", "100", "150"],
|
|
|
+ showSizeChanger: true,
|
|
|
}
|
|
|
}else{
|
|
|
this.$message.error(res.message);
|
|
@@ -758,14 +762,12 @@ export default {
|
|
|
searchQuery() {
|
|
|
this.toggleSearchStatus = false
|
|
|
this.queryParam.pageNo = ''
|
|
|
- this.queryParam.pageSize = 20
|
|
|
this.getadPaListClothes()
|
|
|
},
|
|
|
|
|
|
searchReset() {
|
|
|
this.range = []
|
|
|
this.queryParam = {
|
|
|
- pageSize:20
|
|
|
}
|
|
|
this.getadPaListClothes()
|
|
|
},
|