├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── README.md ├── config ├── dev.js ├── index.js └── prod.js ├── global.d.ts ├── images ├── qrcode_qq.jpg ├── qrcode_weapp.jpg ├── tuyan.jpg └── zhaozhao.jpg ├── package.json ├── project.config.json ├── src ├── app.less ├── app.tsx ├── assets │ ├── about.jpg │ ├── banner.png │ ├── error.jpg │ ├── loading.svg │ └── setting.jpg ├── components │ ├── bqb-fab │ │ ├── index.less │ │ └── index.tsx │ ├── bqb-input │ │ ├── index.less │ │ └── index.tsx │ └── bqb-item │ │ ├── index.less │ │ └── index.tsx ├── data │ └── types.json ├── hooks │ ├── index.ts │ ├── useImages.ts │ ├── usePagenation.ts │ ├── useSearch.ts │ └── useTypes.ts ├── index.html ├── pages │ ├── index │ │ ├── index.less │ │ └── index.tsx │ ├── list │ │ ├── index.less │ │ └── index.tsx │ └── search │ │ ├── index.less │ │ └── index.tsx ├── styles │ └── icon.less ├── theme.json └── utils │ └── index.tsx ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.20.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/config/dev.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/config/prod.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/global.d.ts -------------------------------------------------------------------------------- /images/qrcode_qq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/images/qrcode_qq.jpg -------------------------------------------------------------------------------- /images/qrcode_weapp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/images/qrcode_weapp.jpg -------------------------------------------------------------------------------- /images/tuyan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/images/tuyan.jpg -------------------------------------------------------------------------------- /images/zhaozhao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/images/zhaozhao.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/package.json -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/project.config.json -------------------------------------------------------------------------------- /src/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/app.less -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/assets/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/assets/about.jpg -------------------------------------------------------------------------------- /src/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/assets/banner.png -------------------------------------------------------------------------------- /src/assets/error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/assets/error.jpg -------------------------------------------------------------------------------- /src/assets/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/assets/loading.svg -------------------------------------------------------------------------------- /src/assets/setting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/assets/setting.jpg -------------------------------------------------------------------------------- /src/components/bqb-fab/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/components/bqb-fab/index.less -------------------------------------------------------------------------------- /src/components/bqb-fab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/components/bqb-fab/index.tsx -------------------------------------------------------------------------------- /src/components/bqb-input/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/components/bqb-input/index.less -------------------------------------------------------------------------------- /src/components/bqb-input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/components/bqb-input/index.tsx -------------------------------------------------------------------------------- /src/components/bqb-item/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/components/bqb-item/index.less -------------------------------------------------------------------------------- /src/components/bqb-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/components/bqb-item/index.tsx -------------------------------------------------------------------------------- /src/data/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/data/types.json -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/hooks/useImages.ts -------------------------------------------------------------------------------- /src/hooks/usePagenation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/hooks/usePagenation.ts -------------------------------------------------------------------------------- /src/hooks/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/hooks/useSearch.ts -------------------------------------------------------------------------------- /src/hooks/useTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/hooks/useTypes.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/index.html -------------------------------------------------------------------------------- /src/pages/index/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/index/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/pages/index/index.tsx -------------------------------------------------------------------------------- /src/pages/list/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/pages/list/index.less -------------------------------------------------------------------------------- /src/pages/list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/pages/list/index.tsx -------------------------------------------------------------------------------- /src/pages/search/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/pages/search/index.less -------------------------------------------------------------------------------- /src/pages/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/pages/search/index.tsx -------------------------------------------------------------------------------- /src/styles/icon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/styles/icon.less -------------------------------------------------------------------------------- /src/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/theme.json -------------------------------------------------------------------------------- /src/utils/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/src/utils/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F-loat/ChineseBQB-weapp/HEAD/yarn.lock --------------------------------------------------------------------------------