drop-down refresh, how to ensure that paging is performed after all data is obtained asynchronously?
//
refresh() {
// getOrderList
this.getOrderList();
// this.orderList.length, ,
if (this.orderList.length > 0) {
console.log("this.orderList", this.orderList);
this.$toast("");
this.isLoading = false;
}
}