├── .eslintrc.json ├── .gitignore ├── .idea ├── .gitignore ├── dataSources.xml ├── inspectionProfiles │ └── Project_Default.xml ├── mianshiya-next-frontend.iml ├── misc.xml ├── modules.xml ├── prettier.xml └── vcs.xml ├── README.md ├── config └── menu.tsx ├── next.config.mjs ├── openapi.config.ts ├── package.json ├── public └── assets │ ├── VIP.jpg │ ├── books.png │ ├── exchangeGroup.jpg │ ├── logo.png │ ├── mastered.png │ ├── notLoginUser.png │ ├── notMastered.png │ ├── reviewLater.png │ ├── vertify.jpg │ └── vip.png ├── src ├── access │ ├── AccessLayout.tsx │ ├── accessEnum.ts │ ├── checkAccess.ts │ └── menuAccess.ts ├── api │ ├── commentController.ts │ ├── fileController.ts │ ├── index.ts │ ├── postController.ts │ ├── postFavourController.ts │ ├── postThumbController.ts │ ├── questionBankController.ts │ ├── questionBankQuestionController.ts │ ├── questionController.ts │ ├── questionFavourController.ts │ ├── questionMarkController.ts │ ├── redeemController.ts │ ├── statisticController.ts │ ├── typings.d.ts │ ├── userController.ts │ └── wxMpController.ts ├── app │ ├── admin │ │ ├── bank │ │ │ ├── components │ │ │ │ ├── CreateModal.tsx │ │ │ │ └── UpdateModal.tsx │ │ │ ├── index.css │ │ │ └── page.tsx │ │ ├── comment │ │ │ ├── components │ │ │ │ ├── CreateModal.tsx │ │ │ │ └── UpdateModal.tsx │ │ │ ├── index.css │ │ │ └── page.tsx │ │ ├── question │ │ │ ├── components │ │ │ │ ├── BatchAddQuestionsToBankModal.tsx │ │ │ │ ├── BatchRemoveQuestionsFromBankModal.tsx │ │ │ │ ├── CreateModal.tsx │ │ │ │ ├── UpdateBankModal.tsx │ │ │ │ └── UpdateModal.tsx │ │ │ ├── index.css │ │ │ └── page.tsx │ │ ├── redeem │ │ │ ├── components │ │ │ │ ├── CreateModal.tsx │ │ │ │ └── UpdateModal.tsx │ │ │ ├── index.css │ │ │ └── page.tsx │ │ ├── statistic │ │ │ ├── index.css │ │ │ └── page.tsx │ │ └── user │ │ │ ├── components │ │ │ ├── CreateModal.tsx │ │ │ └── UpdateModal.tsx │ │ │ ├── index.css │ │ │ └── page.tsx │ ├── bank │ │ └── [questionBankId] │ │ │ ├── components │ │ │ ├── index.css │ │ │ └── index.tsx │ │ │ ├── index.css │ │ │ ├── page.tsx │ │ │ └── question │ │ │ └── [questionId] │ │ │ ├── index.css │ │ │ └── page.tsx │ ├── banks │ │ ├── index.css │ │ └── page.tsx │ ├── favicon.ico │ ├── forbidden.tsx │ ├── globals.css │ ├── index.css │ ├── layout.tsx │ ├── page.tsx │ ├── question │ │ └── [questionId] │ │ │ ├── index.css │ │ │ └── page.tsx │ ├── questions │ │ ├── index.css │ │ └── page.tsx │ └── user │ │ ├── center │ │ ├── index.css │ │ └── page.tsx │ │ ├── login │ │ ├── index.css │ │ └── page.tsx │ │ └── register │ │ ├── index.css │ │ └── page.tsx ├── components │ ├── BankQuestionList │ │ ├── index.css │ │ └── index.tsx │ ├── BankQuestionSearchForm │ │ ├── index.css │ │ └── index.tsx │ ├── BankQuestionTable │ │ ├── index.css │ │ └── index.tsx │ ├── BeVIP │ │ ├── index.css │ │ └── index.tsx │ ├── CalendarChart │ │ ├── index.css │ │ └── index.tsx │ ├── Comments │ │ ├── Comments.tsx │ │ └── index.css │ ├── DifficultTag │ │ ├── index.css │ │ └── index.tsx │ ├── FavourQuestionTable │ │ ├── index.css │ │ └── index.tsx │ ├── GlobalFooter │ │ ├── index.css │ │ └── index.tsx │ ├── HotQuestions │ │ ├── index.css │ │ └── index.tsx │ ├── HotTags │ │ ├── index.css │ │ └── index.tsx │ ├── LoginForbidden │ │ ├── Loginforbidden.tsx │ │ └── index.css │ ├── MdEditor │ │ ├── index.css │ │ └── index.tsx │ ├── MdViewer │ │ ├── index.css │ │ └── index.tsx │ ├── MyCommnets │ │ ├── index.css │ │ └── index.tsx │ ├── QuestionBankList │ │ ├── index.css │ │ └── index.tsx │ ├── QuestionCard │ │ ├── index.css │ │ └── index.tsx │ ├── QuestionList │ │ ├── index.css │ │ └── index.tsx │ ├── QuestionTable │ │ ├── index.css │ │ └── index.tsx │ ├── QuestionTablePlus │ │ ├── index.css │ │ └── index.tsx │ ├── RelatedQuestions │ │ ├── index.css │ │ └── index.tsx │ ├── TagList │ │ ├── index.css │ │ └── index.tsx │ ├── VIPTag │ │ ├── index.css │ │ └── index.tsx │ ├── VIPforbidden │ │ ├── VIPforbidden.tsx │ │ └── index.css │ ├── VerificationCode │ │ ├── index.css │ │ └── index.tsx │ └── questionSearchForm │ │ ├── index.css │ │ └── index.tsx ├── constants │ ├── markType.ts │ └── user.ts ├── hooks │ └── useAddUserSignInRecord.ts ├── layouts │ └── BasicLayout │ │ ├── components │ │ └── SearchInput │ │ │ ├── index.css │ │ │ └── index.tsx │ │ ├── index.css │ │ └── index.tsx ├── libs │ └── request.ts └── stores │ ├── index.ts │ └── loginUser.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/mianshiya-next-frontend.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/.idea/mianshiya-next-frontend.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/prettier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/.idea/prettier.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/README.md -------------------------------------------------------------------------------- /config/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/config/menu.tsx -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/next.config.mjs -------------------------------------------------------------------------------- /openapi.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/openapi.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/VIP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/public/assets/VIP.jpg -------------------------------------------------------------------------------- /public/assets/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/public/assets/books.png -------------------------------------------------------------------------------- /public/assets/exchangeGroup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/public/assets/exchangeGroup.jpg -------------------------------------------------------------------------------- /public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/public/assets/logo.png -------------------------------------------------------------------------------- /public/assets/mastered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/public/assets/mastered.png -------------------------------------------------------------------------------- /public/assets/notLoginUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/public/assets/notLoginUser.png -------------------------------------------------------------------------------- /public/assets/notMastered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/public/assets/notMastered.png -------------------------------------------------------------------------------- /public/assets/reviewLater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/public/assets/reviewLater.png -------------------------------------------------------------------------------- /public/assets/vertify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/public/assets/vertify.jpg -------------------------------------------------------------------------------- /public/assets/vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/public/assets/vip.png -------------------------------------------------------------------------------- /src/access/AccessLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/access/AccessLayout.tsx -------------------------------------------------------------------------------- /src/access/accessEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/access/accessEnum.ts -------------------------------------------------------------------------------- /src/access/checkAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/access/checkAccess.ts -------------------------------------------------------------------------------- /src/access/menuAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/access/menuAccess.ts -------------------------------------------------------------------------------- /src/api/commentController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/commentController.ts -------------------------------------------------------------------------------- /src/api/fileController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/fileController.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/postController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/postController.ts -------------------------------------------------------------------------------- /src/api/postFavourController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/postFavourController.ts -------------------------------------------------------------------------------- /src/api/postThumbController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/postThumbController.ts -------------------------------------------------------------------------------- /src/api/questionBankController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/questionBankController.ts -------------------------------------------------------------------------------- /src/api/questionBankQuestionController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/questionBankQuestionController.ts -------------------------------------------------------------------------------- /src/api/questionController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/questionController.ts -------------------------------------------------------------------------------- /src/api/questionFavourController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/questionFavourController.ts -------------------------------------------------------------------------------- /src/api/questionMarkController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/questionMarkController.ts -------------------------------------------------------------------------------- /src/api/redeemController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/redeemController.ts -------------------------------------------------------------------------------- /src/api/statisticController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/statisticController.ts -------------------------------------------------------------------------------- /src/api/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/typings.d.ts -------------------------------------------------------------------------------- /src/api/userController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/userController.ts -------------------------------------------------------------------------------- /src/api/wxMpController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/api/wxMpController.ts -------------------------------------------------------------------------------- /src/app/admin/bank/components/CreateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/bank/components/CreateModal.tsx -------------------------------------------------------------------------------- /src/app/admin/bank/components/UpdateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/bank/components/UpdateModal.tsx -------------------------------------------------------------------------------- /src/app/admin/bank/index.css: -------------------------------------------------------------------------------- 1 | #questionBankAdminPage { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/admin/bank/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/bank/page.tsx -------------------------------------------------------------------------------- /src/app/admin/comment/components/CreateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/comment/components/CreateModal.tsx -------------------------------------------------------------------------------- /src/app/admin/comment/components/UpdateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/comment/components/UpdateModal.tsx -------------------------------------------------------------------------------- /src/app/admin/comment/index.css: -------------------------------------------------------------------------------- 1 | #commnetAdminPage { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/admin/comment/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/comment/page.tsx -------------------------------------------------------------------------------- /src/app/admin/question/components/BatchAddQuestionsToBankModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/question/components/BatchAddQuestionsToBankModal.tsx -------------------------------------------------------------------------------- /src/app/admin/question/components/BatchRemoveQuestionsFromBankModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/question/components/BatchRemoveQuestionsFromBankModal.tsx -------------------------------------------------------------------------------- /src/app/admin/question/components/CreateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/question/components/CreateModal.tsx -------------------------------------------------------------------------------- /src/app/admin/question/components/UpdateBankModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/question/components/UpdateBankModal.tsx -------------------------------------------------------------------------------- /src/app/admin/question/components/UpdateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/question/components/UpdateModal.tsx -------------------------------------------------------------------------------- /src/app/admin/question/index.css: -------------------------------------------------------------------------------- 1 | #questionAdminPage { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/admin/question/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/question/page.tsx -------------------------------------------------------------------------------- /src/app/admin/redeem/components/CreateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/redeem/components/CreateModal.tsx -------------------------------------------------------------------------------- /src/app/admin/redeem/components/UpdateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/redeem/components/UpdateModal.tsx -------------------------------------------------------------------------------- /src/app/admin/redeem/index.css: -------------------------------------------------------------------------------- 1 | #homePage { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/admin/redeem/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/redeem/page.tsx -------------------------------------------------------------------------------- /src/app/admin/statistic/index.css: -------------------------------------------------------------------------------- 1 | #statisticPage { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/admin/statistic/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/statistic/page.tsx -------------------------------------------------------------------------------- /src/app/admin/user/components/CreateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/user/components/CreateModal.tsx -------------------------------------------------------------------------------- /src/app/admin/user/components/UpdateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/user/components/UpdateModal.tsx -------------------------------------------------------------------------------- /src/app/admin/user/index.css: -------------------------------------------------------------------------------- 1 | #homePage { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/admin/user/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/admin/user/page.tsx -------------------------------------------------------------------------------- /src/app/bank/[questionBankId]/components/index.css: -------------------------------------------------------------------------------- 1 | .tag-list { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/app/bank/[questionBankId]/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/bank/[questionBankId]/components/index.tsx -------------------------------------------------------------------------------- /src/app/bank/[questionBankId]/index.css: -------------------------------------------------------------------------------- 1 | #bankPage { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/bank/[questionBankId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/bank/[questionBankId]/page.tsx -------------------------------------------------------------------------------- /src/app/bank/[questionBankId]/question/[questionId]/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/bank/[questionBankId]/question/[questionId]/index.css -------------------------------------------------------------------------------- /src/app/bank/[questionBankId]/question/[questionId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/bank/[questionBankId]/question/[questionId]/page.tsx -------------------------------------------------------------------------------- /src/app/banks/index.css: -------------------------------------------------------------------------------- 1 | #banksPage { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/banks/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/banks/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/forbidden.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/forbidden.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/index.css: -------------------------------------------------------------------------------- 1 | #homePage { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/question/[questionId]/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/question/[questionId]/index.css -------------------------------------------------------------------------------- /src/app/question/[questionId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/question/[questionId]/page.tsx -------------------------------------------------------------------------------- /src/app/questions/index.css: -------------------------------------------------------------------------------- 1 | #questionsPage { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/questions/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/questions/page.tsx -------------------------------------------------------------------------------- /src/app/user/center/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/user/center/index.css -------------------------------------------------------------------------------- /src/app/user/center/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/user/center/page.tsx -------------------------------------------------------------------------------- /src/app/user/login/index.css: -------------------------------------------------------------------------------- 1 | #userLoginPage { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/user/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/user/login/page.tsx -------------------------------------------------------------------------------- /src/app/user/register/index.css: -------------------------------------------------------------------------------- 1 | #userRegisterPage { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/user/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/app/user/register/page.tsx -------------------------------------------------------------------------------- /src/components/BankQuestionList/index.css: -------------------------------------------------------------------------------- 1 | .question-list { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/BankQuestionList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/BankQuestionList/index.tsx -------------------------------------------------------------------------------- /src/components/BankQuestionSearchForm/index.css: -------------------------------------------------------------------------------- 1 | .tag-list { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/BankQuestionSearchForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/BankQuestionSearchForm/index.tsx -------------------------------------------------------------------------------- /src/components/BankQuestionTable/index.css: -------------------------------------------------------------------------------- 1 | #question-table-plus { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/BankQuestionTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/BankQuestionTable/index.tsx -------------------------------------------------------------------------------- /src/components/BeVIP/index.css: -------------------------------------------------------------------------------- 1 | .beVip{ 2 | 3 | } -------------------------------------------------------------------------------- /src/components/BeVIP/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/BeVIP/index.tsx -------------------------------------------------------------------------------- /src/components/CalendarChart/index.css: -------------------------------------------------------------------------------- 1 | .calendar-chart { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/CalendarChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/CalendarChart/index.tsx -------------------------------------------------------------------------------- /src/components/Comments/Comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/Comments/Comments.tsx -------------------------------------------------------------------------------- /src/components/Comments/index.css: -------------------------------------------------------------------------------- 1 | .commentsPage { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/DifficultTag/index.css: -------------------------------------------------------------------------------- 1 | .tag-list { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/DifficultTag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/DifficultTag/index.tsx -------------------------------------------------------------------------------- /src/components/FavourQuestionTable/index.css: -------------------------------------------------------------------------------- 1 | .FavourQuestion-table { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/FavourQuestionTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/FavourQuestionTable/index.tsx -------------------------------------------------------------------------------- /src/components/GlobalFooter/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/GlobalFooter/index.css -------------------------------------------------------------------------------- /src/components/GlobalFooter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/GlobalFooter/index.tsx -------------------------------------------------------------------------------- /src/components/HotQuestions/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/HotQuestions/index.css -------------------------------------------------------------------------------- /src/components/HotQuestions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/HotQuestions/index.tsx -------------------------------------------------------------------------------- /src/components/HotTags/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/HotTags/index.css -------------------------------------------------------------------------------- /src/components/HotTags/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/HotTags/index.tsx -------------------------------------------------------------------------------- /src/components/LoginForbidden/Loginforbidden.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/LoginForbidden/Loginforbidden.tsx -------------------------------------------------------------------------------- /src/components/LoginForbidden/index.css: -------------------------------------------------------------------------------- 1 | .question-card { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/MdEditor/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/MdEditor/index.css -------------------------------------------------------------------------------- /src/components/MdEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/MdEditor/index.tsx -------------------------------------------------------------------------------- /src/components/MdViewer/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/MdViewer/index.css -------------------------------------------------------------------------------- /src/components/MdViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/MdViewer/index.tsx -------------------------------------------------------------------------------- /src/components/MyCommnets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/MyCommnets/index.css -------------------------------------------------------------------------------- /src/components/MyCommnets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/MyCommnets/index.tsx -------------------------------------------------------------------------------- /src/components/QuestionBankList/index.css: -------------------------------------------------------------------------------- 1 | .question-bank-list { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/QuestionBankList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/QuestionBankList/index.tsx -------------------------------------------------------------------------------- /src/components/QuestionCard/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/QuestionCard/index.css -------------------------------------------------------------------------------- /src/components/QuestionCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/QuestionCard/index.tsx -------------------------------------------------------------------------------- /src/components/QuestionList/index.css: -------------------------------------------------------------------------------- 1 | .question-list { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/QuestionList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/QuestionList/index.tsx -------------------------------------------------------------------------------- /src/components/QuestionTable/index.css: -------------------------------------------------------------------------------- 1 | .question-table { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/QuestionTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/QuestionTable/index.tsx -------------------------------------------------------------------------------- /src/components/QuestionTablePlus/index.css: -------------------------------------------------------------------------------- 1 | #question-table-plus { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/QuestionTablePlus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/QuestionTablePlus/index.tsx -------------------------------------------------------------------------------- /src/components/RelatedQuestions/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/RelatedQuestions/index.css -------------------------------------------------------------------------------- /src/components/RelatedQuestions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/RelatedQuestions/index.tsx -------------------------------------------------------------------------------- /src/components/TagList/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/TagList/index.css -------------------------------------------------------------------------------- /src/components/TagList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/TagList/index.tsx -------------------------------------------------------------------------------- /src/components/VIPTag/index.css: -------------------------------------------------------------------------------- 1 | .tag-list { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/VIPTag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/VIPTag/index.tsx -------------------------------------------------------------------------------- /src/components/VIPforbidden/VIPforbidden.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/VIPforbidden/VIPforbidden.tsx -------------------------------------------------------------------------------- /src/components/VIPforbidden/index.css: -------------------------------------------------------------------------------- 1 | .question-card { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/VerificationCode/index.css: -------------------------------------------------------------------------------- 1 | .vertifyCode { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/components/VerificationCode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/VerificationCode/index.tsx -------------------------------------------------------------------------------- /src/components/questionSearchForm/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/questionSearchForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/components/questionSearchForm/index.tsx -------------------------------------------------------------------------------- /src/constants/markType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/constants/markType.ts -------------------------------------------------------------------------------- /src/constants/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/constants/user.ts -------------------------------------------------------------------------------- /src/hooks/useAddUserSignInRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/hooks/useAddUserSignInRecord.ts -------------------------------------------------------------------------------- /src/layouts/BasicLayout/components/SearchInput/index.css: -------------------------------------------------------------------------------- 1 | .search-input { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/layouts/BasicLayout/components/SearchInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/layouts/BasicLayout/components/SearchInput/index.tsx -------------------------------------------------------------------------------- /src/layouts/BasicLayout/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/layouts/BasicLayout/index.css -------------------------------------------------------------------------------- /src/layouts/BasicLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/layouts/BasicLayout/index.tsx -------------------------------------------------------------------------------- /src/libs/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/libs/request.ts -------------------------------------------------------------------------------- /src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/stores/index.ts -------------------------------------------------------------------------------- /src/stores/loginUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/src/stores/loginUser.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacffg/jacffg-mianshimijing-fronted/HEAD/tsconfig.json --------------------------------------------------------------------------------