no message

This commit is contained in:
2025-11-11 20:27:37 +08:00
parent 15b3708596
commit 4a13a035de
2 changed files with 10 additions and 4 deletions
@@ -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);