// 用户相关模拟数据 export const mockUserInfo = { userId: '1', nickName: '超级管理员', phonenumber: '15888888888', avatar: 'https://api.ccttiot.com/FhzRBfWKKOWOMJA1vV3sxMw_nVZ', email: null, sex: null, status: '0', createTime: null, updateTime: null, } export const mockFinancialData = { withdrawable: '18079.29', pending: '399.59', withdrawing: '9.59', withdrawn: '999.59', totalIncome: '20000.00', totalExpense: '1521.72', } export const mockUserStats = { users: 30, leases: 30, amount: 3000, activeUsers: 25, totalLeases: 45, totalAmount: 5000, } // 模拟API响应格式 export const createMockResponse = (data, code = 200, msg = '操作成功') => { return { code, msg, data, } }