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.
90 lines
2.5 KiB
90 lines
2.5 KiB
6 months ago
|
import { config } from '@/config/axios/config'
|
||
|
import { MockMethod } from 'vite-plugin-mock'
|
||
|
|
||
|
const { result_code } = config
|
||
|
|
||
|
const timeout = 1000
|
||
|
|
||
|
export default [
|
||
|
// 分析页统计接口
|
||
|
{
|
||
|
url: '/analysis/total',
|
||
|
method: 'get',
|
||
|
timeout,
|
||
|
response: () => {
|
||
|
return {
|
||
|
code: result_code,
|
||
|
data: {
|
||
|
users: 102400,
|
||
|
messages: 81212,
|
||
|
moneys: 9280,
|
||
|
shoppings: 13600
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
// 用户来源
|
||
|
{
|
||
|
url: '/analysis/userAccessSource',
|
||
|
method: 'get',
|
||
|
timeout,
|
||
|
response: () => {
|
||
|
return {
|
||
|
code: result_code,
|
||
|
data: [
|
||
|
{ value: 1000, name: 'analysis.directAccess' },
|
||
|
{ value: 310, name: 'analysis.mailMarketing' },
|
||
|
{ value: 234, name: 'analysis.allianceAdvertising' },
|
||
|
{ value: 135, name: 'analysis.videoAdvertising' },
|
||
|
{ value: 1548, name: 'analysis.searchEngines' }
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
// 每周用户活跃量
|
||
|
{
|
||
|
url: '/analysis/weeklyUserActivity',
|
||
|
method: 'get',
|
||
|
timeout,
|
||
|
response: () => {
|
||
|
return {
|
||
|
code: result_code,
|
||
|
data: [
|
||
|
{ value: 13253, name: 'analysis.monday' },
|
||
|
{ value: 34235, name: 'analysis.tuesday' },
|
||
|
{ value: 26321, name: 'analysis.wednesday' },
|
||
|
{ value: 12340, name: 'analysis.thursday' },
|
||
|
{ value: 24643, name: 'analysis.friday' },
|
||
|
{ value: 1322, name: 'analysis.saturday' },
|
||
|
{ value: 1324, name: 'analysis.sunday' }
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
// 每月销售额
|
||
|
{
|
||
|
url: '/analysis/monthlySales',
|
||
|
method: 'get',
|
||
|
timeout,
|
||
|
response: () => {
|
||
|
return {
|
||
|
code: result_code,
|
||
|
data: [
|
||
|
{ estimate: 100, actual: 120, name: 'analysis.january' },
|
||
|
{ estimate: 120, actual: 82, name: 'analysis.february' },
|
||
|
{ estimate: 161, actual: 91, name: 'analysis.march' },
|
||
|
{ estimate: 134, actual: 154, name: 'analysis.april' },
|
||
|
{ estimate: 105, actual: 162, name: 'analysis.may' },
|
||
|
{ estimate: 160, actual: 140, name: 'analysis.june' },
|
||
|
{ estimate: 165, actual: 145, name: 'analysis.july' },
|
||
|
{ estimate: 114, actual: 250, name: 'analysis.august' },
|
||
|
{ estimate: 163, actual: 134, name: 'analysis.september' },
|
||
|
{ estimate: 185, actual: 56, name: 'analysis.october' },
|
||
|
{ estimate: 118, actual: 99, name: 'analysis.november' },
|
||
|
{ estimate: 123, actual: 123, name: 'analysis.december' }
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
] as MockMethod[]
|