修复主播薪资操作分页异常问题

This commit is contained in:
dragon
2024-12-19 16:31:55 +08:00
parent 0e5857873c
commit ce2a63c864

View File

@@ -532,11 +532,11 @@ export default {
},
// 弹窗分页导航
handleSizeChange1(val) {
this.$set(this.pageParams1, "pageSize", val);
this.pageParams1.pageSize = val;
this.getDetail();
},
handlePageChange1(val) {
this.$set(this.pageParams1, "pageNo", val);
this.pageParams1.pageNo = val;
this.getDetail();
},