求租,求购

master
Guo YuKun 2024-03-24 20:46:35 +08:00
parent 70c2924eed
commit 5267f15191
2 changed files with 35 additions and 3 deletions

View File

@ -58,6 +58,11 @@
</template>
</el-table-column>
</el-table>
<el-pagination layout="prev, pager, next"
:total="1000"
@current-change="nummm"
@size-change="sizeee">
</el-pagination>
</div>
</template>
@ -74,7 +79,10 @@ import axios from "axios";
return {
tableData:[],
askbuy:{},
askbuy:{
pageNum:1,
pageSize:3,
},
};
},
// data",
@ -89,7 +97,15 @@ import axios from "axios";
this.tableData = res.data.data
}
)
}
},
nummm(val){
this.askbuy.pageNum=val;
this.shouList();
},
sizeee(val){
this.askbuy.pageSize=val;
this.shouList();
}
},
// - 访this",
created() {

View File

@ -58,6 +58,11 @@
</template>
</el-table-column>
</el-table>
<el-pagination layout="prev, pager, next"
:total="1000"
@current-change="numm"
@size-change="sizee">
</el-pagination>
</div>
</template>
@ -74,7 +79,10 @@ import axios from "axios";
return {
tableData:[],
askrent: {},
askrent: {
pageSize:3,
pageNum:1,
},
};
},
// data",
@ -89,6 +97,14 @@ import axios from "axios";
this.tableData = res.data.data
}
)
},
sizee(val){
this.askrent.pageSize=val;
this.shouall();
},
numm(val){
this.askrent.pageNum = val;
this.shouall();
}
},
// - 访this",