|
@@ -326,12 +326,12 @@ export default {
|
|
|
},
|
|
|
handleSizeChange(val) {
|
|
|
// console.log(`每页 ${val} 条`);
|
|
|
- this.param.content.pageSize = val
|
|
|
+ this.params.content.pageSize = val
|
|
|
this.productData()
|
|
|
},
|
|
|
handleCurrentChange(val) {
|
|
|
// console.log(`当前页: ${val}`);
|
|
|
- this.param.content.pageNumber = val
|
|
|
+ this.params.content.pageNumber = val
|
|
|
this.productData()
|
|
|
},
|
|
|
onSuccess(){
|
|
@@ -339,11 +339,11 @@ export default {
|
|
|
},
|
|
|
clearData(){
|
|
|
this.search = ""
|
|
|
- this.param.content.where.condition = this.search
|
|
|
+ this.params.content.where.condition = this.search
|
|
|
this.productData()
|
|
|
},
|
|
|
queryClick(){
|
|
|
- this.param.content.where.condition = this.search
|
|
|
+ this.params.content.where.condition = this.search
|
|
|
this.productData()
|
|
|
},
|
|
|
selectionChange(val){
|