敢为人鲜小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

117 lines
2.4 KiB

// 资产明细的mock数据
export const assetsData = {
// 收入明细
incomeList: [
{
id: 1,
type: '充值',
amount: 200,
time: '2020-12-29 12:54:54'
},
{
id: 2,
type: '充值',
amount: 200,
time: '2020-12-29 12:54:54'
},
{
id: 3,
type: '充值',
amount: 200,
time: '2020-12-29 12:54:54'
},
{
id: 4,
type: '充值',
amount: 200,
time: '2020-12-29 12:54:54'
},
{
id: 5,
type: '充值',
amount: 200,
time: '2020-12-29 12:54:54'
}
],
// 支出明细
expenseList: [
{
id: 6,
type: '提现',
amount: 100,
time: '2020-12-25 14:30:22'
},
{
id: 7,
type: '提现',
amount: 150,
time: '2020-12-20 09:15:36'
},
{
id: 8,
type: '点餐',
amount: 50,
time: '2020-12-15 18:22:10'
}
]
}
// 这是团长用的静态资产明细
export const assetsDataForHead = {
// 收入明细
incomeList: [
{
id: 1,
type: '佣金',
amount: 200,
time: '2020-12-29 12:54:54'
},
{
id: 2,
type: '佣金',
amount: 200,
time: '2020-12-29 12:54:54'
},
{
id: 3,
type: '佣金',
amount: 200,
time: '2020-12-29 12:54:54'
},
{
id: 4,
type: '佣金',
amount: 200,
time: '2020-12-29 12:54:54'
},
{
id: 5,
type: '佣金',
amount: 200,
time: '2020-12-29 12:54:54'
}
],
// 支出明细
expenseList: [
{
id: 6,
type: '提现',
amount: 100,
time: '2020-12-25 14:30:22'
},
{
id: 7,
type: '提现',
amount: 150,
time: '2020-12-20 09:15:36'
},
{
id: 8,
type: '点餐',
amount: 50,
time: '2020-12-15 18:22:10'
}
]
}