onenote 式样修改

This commit is contained in:
simple321vip
2023-02-06 08:47:28 +08:00
parent 86f63ff973
commit d07abaa7b5
6 changed files with 349 additions and 395 deletions
+63 -16
View File
@@ -2,27 +2,74 @@ import { MockMethod } from 'vite-plugin-mock'
export default [
{
url: '/onenote/api/v1/one_note',
url: '/onenote/api/v1/category',
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',
},
]
}
category_id: '4444',
category_color: ' #B0E0E6',
category_icon: 'Document',
category_theme: 'WIKI'
},
{
category_id: '4444',
category_color: ' #B0E0E6',
category_icon: 'Collection',
category_theme: 'Collection'
},
{
category_id: '4444',
category_color: ' #B0E0E6',
category_icon: 'Files',
category_theme: 'Files'
},
{
category_id: '4444',
category_color: ' #B0E0E6',
category_icon: 'Phone',
category_theme: 'Phone'
},
]
}
},
{
url: '/onenote/api/v1/4444/items/',
method: 'get',
response: () => {
return [
{
item_id: '00001',
item_name: '中国联通',
item_value: '13332247026'
},
{
item_id: '00002',
item_name: '中国联通副号',
item_value: '13333333333'
},
]
}
},
{
url: '/onenote/api/v1/category',
method: 'put',
response: () => {
return {}
}
},
{
url: '/onenote/api/v1/item',
method: 'put',
response: () => {
return {}
}
},
{
url: '/onenote/api/v1/item',
method: 'delete',
response: () => {
return {}
}
}
] as MockMethod[]