handleGetpageWalletAccount = async (params) => {
const { pageIndex, pageSize, customerType, customerName, mobile } = this.state;
try {
const res = await getpageWalletAccount({
pageIndex: this.state.pageIndex,
pageSize: this.state.pageSize,
...params,
});
console.log(res.data);
this.setState({ balanceList: res.data.records });
this.setState({ total: res.data.total });
} catch (error) {}
};