mirror of
https://gitee.com/yiming_chang/vue-pure-admin.git
synced 2024-12-02 11:17:39 +08:00
24 lines
465 B
TypeScript
24 lines
465 B
TypeScript
import { MockMethod } from 'vite-plugin-mock'
|
|
|
|
// http://mockjs.com/examples.html#Object
|
|
const echartsList = (): any => {
|
|
const result: any[] = []
|
|
for (let index = 0; index < 200; index++) {
|
|
result.push(['@date', Math.floor(Math.random() * 300)])
|
|
}
|
|
return result
|
|
}
|
|
|
|
export default [
|
|
{
|
|
url: '/getEchartsInfo',
|
|
method: 'get',
|
|
response: () => {
|
|
return {
|
|
code: 0,
|
|
info: echartsList()
|
|
}
|
|
},
|
|
}
|
|
] as MockMethod[]
|