增加 bk futrue mock, 增加日历加载式样

This commit is contained in:
simple321vip
2023-01-29 23:27:20 +08:00
parent d1a4e48708
commit 01e222e7fc
3 changed files with 155 additions and 13 deletions
+33 -1
View File
@@ -9,5 +9,37 @@ export default [
count: 53,
}
}
}
},
{
url: '/bookmark/api/v1/bookmark',
method: 'get',
response: () => {
return [
{
bk_id: '001',
bk_type_id: '2',
bk_type_name: '3',
comment: '4',
url: '5'
},
{
bk_id: '002',
bk_type_id: '2',
bk_type_name: '3',
comment: '4',
url: '5'
}
]
}
},
{
url: '/bookmark/api/v1/bookmark_type',
method: 'get',
response: () => {
return [
]
}
},
] as MockMethod[]