HomeLease/api/user/mockData.js
2025-08-19 12:01:17 +08:00

34 lines
641 B
JavaScript

// 用户相关模拟数据
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 = {
balance: 10000.00,
waitBalance: 0,
withdrawBalance: 0,
withdrawedBalance: 0,
}
export const mockAgentStats = {
userNum: 4,
deviceNum: 1,
rentAmount: 2,
}
// 模拟API响应格式
export const createMockResponse = (data, code = 200, msg = '操作成功') => {
return {
code,
msg,
data,
}
}