PicaComicNow
PicaComicNow copied to clipboard
[UNOFFICIAL] Pica Comic Web App
因为自己fork的项目已经被改的太乱就不pr了,直接在这里提建议 关于签到功能的,我是在profile页面实现的: 这是签到按钮: ``` lable(v-if="!userData.isPunched") button(@click='punchin') Punchin lable(v-else) button(:disabled='userData.isPunched') Punched ``` 这是签到的函数: ``` function punchin(){ axios .post(`${API_BASE}/users/punch-in`, { }) .then(() => { return getProfile() }) .catch((e) => { console.warn('Faild to...
`/src/view/search.vue` 中第98行的`s: sort.value,`键值是过时的,现在应为`sort: sort.value,` 另,categories不知道还能不能生效,pica自己反正是没再在搜索那里使用这个键名了 然后api 500错误的问题,似乎这边只要将`/tsconfig.json`中的`"module": "esnext"`改成`"module": "commonjs"`就没事了
picacomic.com在中国大陆被墙,无法访问 所以大部分资源都看不了, 能不能像pixivnow一样用cf worker做个反代,如果可以的话,能不能顺便写一下cf worker反代的代码