This repository has been archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add swithc on option page tab * add anime search view * finish anime search view and req server api * move anime search form AnimeSearch view to AnimeList view * add anime detail page * optimize anime datil view * add option network connect and read timeout input * 注释暂时不实现的菜单 * 添加用户订阅按钮并对服务端接口 * 添加特征资源页面 * 优化动漫详情页的订阅细节 * 对接后台简单特征资源查询接口 * config width for AnimeSubscribeModal * optmize for issue ikaros-dev/ikaros#147 * fix tab data no key issue * change anime list default page size from 8 to 16 * fix issue ikaros-dev/ikaros#152 that table not update after page size change * 移除一些无关的内容 * optimize user avatar * finish update user avatar * finish user info update * add ikaros logo * add ikaros logo * add system option notify mail tab * remove some anime sub additional code * add anime subscribe with batch
- Loading branch information
Showing
27 changed files
with
1,493 additions
and
240 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import request from '@/utils/request' | ||
|
||
const api = { | ||
search: '/metadata/search' | ||
} | ||
|
||
export function searchAnime (keyword) { | ||
return request({ | ||
url: api.search, | ||
method: 'get', | ||
params: { | ||
'keyword': keyword | ||
} | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import request from '@/utils/request' | ||
|
||
const api = { | ||
mailTest: '/notify/mail/test' | ||
} | ||
|
||
export function mailTest (notify) { | ||
return request({ | ||
url: api.mailTest, | ||
method: 'post', | ||
data: notify | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.