no message
This commit is contained in:
@@ -42,6 +42,7 @@ import { getExchTransferRecord, getAcctBalance } from '@/api/finance.js'
|
||||
import { formatDate } from '@/utils/index.js';
|
||||
import { RWA_STATUS, getValue } from '@/utils/enumUtils.js';
|
||||
|
||||
import func from '@/utils/func.js';
|
||||
export default {
|
||||
components: { Header },
|
||||
computed: {
|
||||
@@ -99,6 +100,11 @@ export default {
|
||||
// 模拟异步获取数据,实际应用中应该替换为你的数据获取逻辑,例如API调用
|
||||
const newData = await this.fetchData(this.form.page, this.form.pageSize);
|
||||
this.logList = [...this.logList, ...newData]; // 将新数据添加到列表中
|
||||
this.logList.forEach(item=>{
|
||||
if(item.name == 'WALLET'){
|
||||
item.account = func.addressTurn(item.account,6)
|
||||
}
|
||||
})
|
||||
this.form.page++; // 页码加1
|
||||
} catch (error) {
|
||||
console.error('加载数据失败:', error);
|
||||
|
||||
Reference in New Issue
Block a user