Merge branch 'xy-ly' into fly

master
fanluyan 2 years ago
commit 1837c35dcf

@ -28,15 +28,17 @@ export default {
page: 1, //
pageSize: 10, //
total: 0, //
selectnr: "", //
};
},
mounted() {},
methods: {
//
getdataform(val) {
this.selectnr = val;
getHistoryList({
channelId: val.channelId,
termId: val.termId,
channelId: this.selectnr.channelId,
termId: this.selectnr.termId,
pageindex: this.page,
pagesize: this.pageSize,
}).then((res) => {
@ -47,6 +49,18 @@ export default {
//
changebtn(e) {
console.log(e);
if (Math.floor(e / 9) == 1) {
this.page++;
getHistoryList({
channelId: this.selectnr.channelId,
termId: this.selectnr.termId,
pageindex: this.page,
pagesize: this.pageSize,
}).then((res) => {
this.imglist.push(res.data.list);
this.total = res.data.total;
});
}
},
display() {
this.isShow = true;

Loading…
Cancel
Save