增加日历组件

This commit is contained in:
simple321vip
2023-01-29 20:12:16 +08:00
parent 98c45b3591
commit d1a4e48708
14 changed files with 319 additions and 9 deletions
+28
View File
@@ -0,0 +1,28 @@
import { MockMethod } from 'vite-plugin-mock'
export default [
{
url: '/onenote/api/v1/one_note',
method: 'get',
response: () => {
return [
{
section_id: 'x111',
section_name: 'A',
page_list: [
{
page_id: 'y111',
section_id: 'x111',
page_name: 'B',
},
{
page_id: 'y222',
section_id: 'x111',
page_name: 'C',
},
]
}
]
}
}
] as MockMethod[]