├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .yarnrc ├── babel.config.js ├── changelog.md ├── config ├── dev.js ├── index.js └── prod.js ├── global.d.ts ├── package.json ├── project.config.json ├── readme.md ├── src ├── app.config.ts ├── app.less ├── app.tsx ├── components │ └── DemoTxt │ │ ├── index.module.scss │ │ └── index.tsx ├── constants │ └── env.ts ├── index.html ├── pages │ ├── home2 │ │ ├── index.config.ts │ │ ├── index.module.scss │ │ └── index.tsx │ └── index │ │ ├── index.config.ts │ │ ├── index.module.scss │ │ └── index.tsx ├── services │ └── demo.ts ├── store │ ├── index.ts │ ├── loader.js │ ├── loader_manual.ts │ └── models │ │ └── common.ts ├── typing │ └── demo.ts └── utils │ ├── index.ts │ └── request.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['taro/react'], 3 | }; 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/.yarnrc -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/babel.config.js -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/changelog.md -------------------------------------------------------------------------------- /config/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/config/dev.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/config/prod.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/global.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/package.json -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/project.config.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/readme.md -------------------------------------------------------------------------------- /src/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/app.config.ts -------------------------------------------------------------------------------- /src/app.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/components/DemoTxt/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/components/DemoTxt/index.module.scss -------------------------------------------------------------------------------- /src/components/DemoTxt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/components/DemoTxt/index.tsx -------------------------------------------------------------------------------- /src/constants/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/constants/env.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/index.html -------------------------------------------------------------------------------- /src/pages/home2/index.config.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | navigationBarTitleText: '详情', 3 | }; 4 | -------------------------------------------------------------------------------- /src/pages/home2/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/pages/home2/index.module.scss -------------------------------------------------------------------------------- /src/pages/home2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/pages/home2/index.tsx -------------------------------------------------------------------------------- /src/pages/index/index.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/pages/index/index.config.ts -------------------------------------------------------------------------------- /src/pages/index/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/pages/index/index.module.scss -------------------------------------------------------------------------------- /src/pages/index/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/pages/index/index.tsx -------------------------------------------------------------------------------- /src/services/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/services/demo.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/store/loader.js -------------------------------------------------------------------------------- /src/store/loader_manual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/store/loader_manual.ts -------------------------------------------------------------------------------- /src/store/models/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/store/models/common.ts -------------------------------------------------------------------------------- /src/typing/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/typing/demo.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdo/taro-kit/HEAD/tsconfig.json --------------------------------------------------------------------------------