├── .env ├── .env.production ├── .env.test ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── auto-imports.d.ts ├── components.d.ts ├── docker ├── Dockerfile ├── auto_create.sql ├── base.sh ├── build-beta.sh ├── build-debian.sh ├── build-latest.sh ├── build-local.sh ├── build-version.mjs ├── client │ └── .gitkeep ├── debian.Dockerfile ├── mysql.cnf ├── nginx.conf ├── server │ ├── .env │ ├── package.json │ └── pnpm-lock.yaml ├── sources.list └── start.sh ├── docs ├── .env ├── .env.production ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── bg.png │ │ ├── index.scss │ │ └── index.ts ├── author.md ├── auto-imports.d.ts ├── components.d.ts ├── deploy │ ├── design │ │ ├── api.md │ │ ├── db.md │ │ ├── index.md │ │ └── shell.md │ ├── docker.md │ ├── faq.md │ ├── index.md │ ├── local.md │ ├── online-new.md │ ├── online-v3.md │ ├── online.md │ └── qiniu.md ├── index.md ├── introduction │ ├── about │ │ ├── code.md │ │ └── index.md │ └── feature │ │ ├── admin.md │ │ └── index.md ├── plan │ ├── log.md │ ├── todo.md │ └── wish.md ├── praise │ └── index.md ├── public │ ├── favicon.ico │ ├── group.png │ ├── logo.png │ └── robots.txt ├── src │ ├── apis │ │ ├── ajax.ts │ │ ├── index.ts │ │ └── modules │ │ │ └── wish.ts │ └── components │ │ ├── Avatar.vue │ │ ├── Home.vue │ │ ├── Picture.vue │ │ ├── Praise.vue │ │ ├── WishBtn.vue │ │ ├── WishPanel.vue │ │ └── callme │ │ └── index.vue └── vite.config.mts ├── eslint.config.mjs ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.ico └── logo.png ├── scripts └── deploy │ ├── docs.mjs │ ├── prod.mjs │ └── test.mjs ├── src ├── @types │ ├── ajax.d.ts │ ├── api.d.ts │ ├── lib.d.ts │ └── page.d.ts ├── App.vue ├── apis │ ├── ajax.ts │ ├── index.ts │ └── modules │ │ ├── action.ts │ │ ├── category.ts │ │ ├── config.ts │ │ ├── file.ts │ │ ├── people.ts │ │ ├── public.ts │ │ ├── super │ │ ├── overview.ts │ │ └── user.ts │ │ ├── task.ts │ │ ├── user.ts │ │ └── wish.ts ├── assets │ ├── i │ │ └── EasyPicker.png │ ├── logo.png │ └── styles │ │ └── app.css ├── components │ ├── HomeFooter │ │ └── index.vue │ ├── HomeHeader │ │ └── index.vue │ ├── InfosForm │ │ └── index.vue │ ├── MessageList │ │ └── index.vue │ ├── MessagePanel │ │ └── index.vue │ ├── Praise │ │ └── index.vue │ ├── QrCode.vue │ ├── linkDialog.vue │ └── loginPanel.vue ├── composables │ ├── auth.ts │ ├── form.ts │ ├── index.ts │ ├── ui.ts │ └── user.ts ├── constants │ └── index.ts ├── env.d.ts ├── main.ts ├── pages │ ├── 404 │ │ └── index.vue │ ├── about │ │ └── index.vue │ ├── callme │ │ └── index.vue │ ├── dashboard │ │ ├── config │ │ │ └── index.vue │ │ ├── files │ │ │ └── index.vue │ │ ├── index.vue │ │ ├── manage │ │ │ ├── config │ │ │ │ └── index.vue │ │ │ ├── index.vue │ │ │ ├── overview │ │ │ │ └── index.vue │ │ │ ├── user │ │ │ │ └── index.vue │ │ │ └── wish │ │ │ │ └── index.vue │ │ └── tasks │ │ │ ├── components │ │ │ ├── CategoryPanel.vue │ │ │ ├── CreateTask.vue │ │ │ ├── TaskInfo.vue │ │ │ └── infoPanel │ │ │ │ ├── ddl.vue │ │ │ │ ├── file.vue │ │ │ │ ├── info.vue │ │ │ │ ├── people.vue │ │ │ │ ├── template.vue │ │ │ │ ├── tip.vue │ │ │ │ └── tipInfo.vue │ │ │ ├── index.vue │ │ │ └── public.ts │ ├── disabled │ │ └── index.vue │ ├── feedback │ │ └── index.vue │ ├── home │ │ └── index.vue │ ├── login │ │ └── index.vue │ ├── register │ │ └── index.vue │ ├── reset │ │ └── index.vue │ ├── task │ │ └── index.vue │ └── wish │ │ └── index.vue ├── router │ ├── Interceptor │ │ └── index.ts │ ├── index.ts │ └── routes │ │ └── index.ts ├── shims-vue.d.ts ├── store │ ├── index.ts │ └── modules │ │ ├── category.ts │ │ ├── task.ts │ │ └── user.ts └── utils │ ├── elementUI.ts │ ├── networkUtil.ts │ ├── other.ts │ ├── regExp.ts │ └── stringUtil.ts ├── tsconfig.json └── vite.config.mts /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/.env -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/.env.production -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/.env.test -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/README.md -------------------------------------------------------------------------------- /auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/auto-imports.d.ts -------------------------------------------------------------------------------- /components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/components.d.ts -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/auto_create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/auto_create.sql -------------------------------------------------------------------------------- /docker/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/base.sh -------------------------------------------------------------------------------- /docker/build-beta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/build-beta.sh -------------------------------------------------------------------------------- /docker/build-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/build-debian.sh -------------------------------------------------------------------------------- /docker/build-latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/build-latest.sh -------------------------------------------------------------------------------- /docker/build-local.sh: -------------------------------------------------------------------------------- 1 | bash ./base.sh 2 | docker build -t sugarjl/easypicker:local . -------------------------------------------------------------------------------- /docker/build-version.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/build-version.mjs -------------------------------------------------------------------------------- /docker/client/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/debian.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/debian.Dockerfile -------------------------------------------------------------------------------- /docker/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/mysql.cnf -------------------------------------------------------------------------------- /docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/nginx.conf -------------------------------------------------------------------------------- /docker/server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/server/.env -------------------------------------------------------------------------------- /docker/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/server/package.json -------------------------------------------------------------------------------- /docker/server/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/server/pnpm-lock.yaml -------------------------------------------------------------------------------- /docker/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/sources.list -------------------------------------------------------------------------------- /docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docker/start.sh -------------------------------------------------------------------------------- /docs/.env: -------------------------------------------------------------------------------- 1 | VITE_APP_AXIOS_BASE_URL=/api/ -------------------------------------------------------------------------------- /docs/.env.production: -------------------------------------------------------------------------------- 1 | # .env.production 2 | VITE_APP_AXIOS_BASE_URL=https://ep.sugarat.top/api/ -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/.vitepress/theme/bg.png -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/.vitepress/theme/index.scss -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/author.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/author.md -------------------------------------------------------------------------------- /docs/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/auto-imports.d.ts -------------------------------------------------------------------------------- /docs/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/components.d.ts -------------------------------------------------------------------------------- /docs/deploy/design/api.md: -------------------------------------------------------------------------------- 1 | # 接口设计 2 | 3 | 未完待续 4 | -------------------------------------------------------------------------------- /docs/deploy/design/db.md: -------------------------------------------------------------------------------- 1 | # 数据库设计 2 | 3 | 未完待续 4 | -------------------------------------------------------------------------------- /docs/deploy/design/index.md: -------------------------------------------------------------------------------- 1 | # 应用设计 2 | 3 | 未完待续 -------------------------------------------------------------------------------- /docs/deploy/design/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/deploy/design/shell.md -------------------------------------------------------------------------------- /docs/deploy/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/deploy/docker.md -------------------------------------------------------------------------------- /docs/deploy/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/deploy/faq.md -------------------------------------------------------------------------------- /docs/deploy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/deploy/index.md -------------------------------------------------------------------------------- /docs/deploy/local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/deploy/local.md -------------------------------------------------------------------------------- /docs/deploy/online-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/deploy/online-new.md -------------------------------------------------------------------------------- /docs/deploy/online-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/deploy/online-v3.md -------------------------------------------------------------------------------- /docs/deploy/online.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/deploy/online.md -------------------------------------------------------------------------------- /docs/deploy/qiniu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/deploy/qiniu.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/introduction/about/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/introduction/about/code.md -------------------------------------------------------------------------------- /docs/introduction/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/introduction/about/index.md -------------------------------------------------------------------------------- /docs/introduction/feature/admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/introduction/feature/admin.md -------------------------------------------------------------------------------- /docs/introduction/feature/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/introduction/feature/index.md -------------------------------------------------------------------------------- /docs/plan/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/plan/log.md -------------------------------------------------------------------------------- /docs/plan/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/plan/todo.md -------------------------------------------------------------------------------- /docs/plan/wish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/plan/wish.md -------------------------------------------------------------------------------- /docs/praise/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/praise/index.md -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/public/group.png -------------------------------------------------------------------------------- /docs/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/public/logo.png -------------------------------------------------------------------------------- /docs/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /docs/src/apis/ajax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/src/apis/ajax.ts -------------------------------------------------------------------------------- /docs/src/apis/index.ts: -------------------------------------------------------------------------------- 1 | export { default as WishApi } from './modules/wish' 2 | -------------------------------------------------------------------------------- /docs/src/apis/modules/wish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/src/apis/modules/wish.ts -------------------------------------------------------------------------------- /docs/src/components/Avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/src/components/Avatar.vue -------------------------------------------------------------------------------- /docs/src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/src/components/Home.vue -------------------------------------------------------------------------------- /docs/src/components/Picture.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/src/components/Picture.vue -------------------------------------------------------------------------------- /docs/src/components/Praise.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/src/components/Praise.vue -------------------------------------------------------------------------------- /docs/src/components/WishBtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/src/components/WishBtn.vue -------------------------------------------------------------------------------- /docs/src/components/WishPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/src/components/WishPanel.vue -------------------------------------------------------------------------------- /docs/src/components/callme/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/src/components/callme/index.vue -------------------------------------------------------------------------------- /docs/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/docs/vite.config.mts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/public/logo.png -------------------------------------------------------------------------------- /scripts/deploy/docs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/scripts/deploy/docs.mjs -------------------------------------------------------------------------------- /scripts/deploy/prod.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/scripts/deploy/prod.mjs -------------------------------------------------------------------------------- /scripts/deploy/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/scripts/deploy/test.mjs -------------------------------------------------------------------------------- /src/@types/ajax.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/@types/ajax.d.ts -------------------------------------------------------------------------------- /src/@types/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/@types/api.d.ts -------------------------------------------------------------------------------- /src/@types/lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/@types/lib.d.ts -------------------------------------------------------------------------------- /src/@types/page.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/@types/page.d.ts -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/apis/ajax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/ajax.ts -------------------------------------------------------------------------------- /src/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/index.ts -------------------------------------------------------------------------------- /src/apis/modules/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/action.ts -------------------------------------------------------------------------------- /src/apis/modules/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/category.ts -------------------------------------------------------------------------------- /src/apis/modules/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/config.ts -------------------------------------------------------------------------------- /src/apis/modules/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/file.ts -------------------------------------------------------------------------------- /src/apis/modules/people.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/people.ts -------------------------------------------------------------------------------- /src/apis/modules/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/public.ts -------------------------------------------------------------------------------- /src/apis/modules/super/overview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/super/overview.ts -------------------------------------------------------------------------------- /src/apis/modules/super/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/super/user.ts -------------------------------------------------------------------------------- /src/apis/modules/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/task.ts -------------------------------------------------------------------------------- /src/apis/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/user.ts -------------------------------------------------------------------------------- /src/apis/modules/wish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/apis/modules/wish.ts -------------------------------------------------------------------------------- /src/assets/i/EasyPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/assets/i/EasyPicker.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/assets/styles/app.css -------------------------------------------------------------------------------- /src/components/HomeFooter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/components/HomeFooter/index.vue -------------------------------------------------------------------------------- /src/components/HomeHeader/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/components/HomeHeader/index.vue -------------------------------------------------------------------------------- /src/components/InfosForm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/components/InfosForm/index.vue -------------------------------------------------------------------------------- /src/components/MessageList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/components/MessageList/index.vue -------------------------------------------------------------------------------- /src/components/MessagePanel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/components/MessagePanel/index.vue -------------------------------------------------------------------------------- /src/components/Praise/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/components/Praise/index.vue -------------------------------------------------------------------------------- /src/components/QrCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/components/QrCode.vue -------------------------------------------------------------------------------- /src/components/linkDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/components/linkDialog.vue -------------------------------------------------------------------------------- /src/components/loginPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/components/loginPanel.vue -------------------------------------------------------------------------------- /src/composables/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/composables/auth.ts -------------------------------------------------------------------------------- /src/composables/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/composables/form.ts -------------------------------------------------------------------------------- /src/composables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/composables/index.ts -------------------------------------------------------------------------------- /src/composables/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/composables/ui.ts -------------------------------------------------------------------------------- /src/composables/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/composables/user.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/pages/404/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/404/index.vue -------------------------------------------------------------------------------- /src/pages/about/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/about/index.vue -------------------------------------------------------------------------------- /src/pages/callme/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/callme/index.vue -------------------------------------------------------------------------------- /src/pages/dashboard/config/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/config/index.vue -------------------------------------------------------------------------------- /src/pages/dashboard/files/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/files/index.vue -------------------------------------------------------------------------------- /src/pages/dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/index.vue -------------------------------------------------------------------------------- /src/pages/dashboard/manage/config/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/manage/config/index.vue -------------------------------------------------------------------------------- /src/pages/dashboard/manage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/manage/index.vue -------------------------------------------------------------------------------- /src/pages/dashboard/manage/overview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/manage/overview/index.vue -------------------------------------------------------------------------------- /src/pages/dashboard/manage/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/manage/user/index.vue -------------------------------------------------------------------------------- /src/pages/dashboard/manage/wish/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/manage/wish/index.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/components/CategoryPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/components/CategoryPanel.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/components/CreateTask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/components/CreateTask.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/components/TaskInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/components/TaskInfo.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/components/infoPanel/ddl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/components/infoPanel/ddl.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/components/infoPanel/file.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/components/infoPanel/file.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/components/infoPanel/info.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/components/infoPanel/info.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/components/infoPanel/people.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/components/infoPanel/people.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/components/infoPanel/template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/components/infoPanel/template.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/components/infoPanel/tip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/components/infoPanel/tip.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/components/infoPanel/tipInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/components/infoPanel/tipInfo.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/index.vue -------------------------------------------------------------------------------- /src/pages/dashboard/tasks/public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/dashboard/tasks/public.ts -------------------------------------------------------------------------------- /src/pages/disabled/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/disabled/index.vue -------------------------------------------------------------------------------- /src/pages/feedback/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/feedback/index.vue -------------------------------------------------------------------------------- /src/pages/home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/home/index.vue -------------------------------------------------------------------------------- /src/pages/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/login/index.vue -------------------------------------------------------------------------------- /src/pages/register/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/register/index.vue -------------------------------------------------------------------------------- /src/pages/reset/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/reset/index.vue -------------------------------------------------------------------------------- /src/pages/task/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/task/index.vue -------------------------------------------------------------------------------- /src/pages/wish/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/pages/wish/index.vue -------------------------------------------------------------------------------- /src/router/Interceptor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/router/Interceptor/index.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/router/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/router/routes/index.ts -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/modules/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/store/modules/category.ts -------------------------------------------------------------------------------- /src/store/modules/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/store/modules/task.ts -------------------------------------------------------------------------------- /src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/store/modules/user.ts -------------------------------------------------------------------------------- /src/utils/elementUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/utils/elementUI.ts -------------------------------------------------------------------------------- /src/utils/networkUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/utils/networkUtil.ts -------------------------------------------------------------------------------- /src/utils/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/utils/other.ts -------------------------------------------------------------------------------- /src/utils/regExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/utils/regExp.ts -------------------------------------------------------------------------------- /src/utils/stringUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/src/utils/stringUtil.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/easypicker2-client/HEAD/vite.config.mts --------------------------------------------------------------------------------