├── .env.development ├── .env.production ├── .env.staging ├── .eslintcache ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .stylelintignore ├── README.md ├── babel.config.js ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public ├── index.html └── ui.ico ├── src ├── App.vue ├── api │ └── user.js ├── components │ ├── basicCp │ │ └── README.md │ ├── businessCp │ │ └── README.md │ ├── common │ │ └── validation.js │ └── thorui │ │ ├── tui-button │ │ └── tui-button.vue │ │ ├── tui-icon │ │ └── tui-icon.vue │ │ ├── tui-list-cell │ │ └── tui-list-cell.vue │ │ └── tui-list-view │ │ └── tui-list-view.vue ├── config │ ├── env.development.js │ ├── env.production.js │ ├── env.staging.js │ └── index.js ├── filters │ ├── filter.js │ └── index.js ├── main.js ├── manifest.json ├── pages.json ├── pages │ ├── index │ │ └── index.vue │ ├── personal │ │ └── personal.vue │ └── subPackagesA │ │ ├── index.js │ │ └── views │ │ └── demo │ │ └── demo.vue ├── static │ └── images │ │ ├── index │ │ └── logo.png │ │ └── tabbar │ │ ├── index.png │ │ ├── index_active.png │ │ ├── personal.png │ │ └── personal_active.png ├── store │ ├── getters.js │ ├── index.js │ └── modules │ │ ├── type.js │ │ └── user.js ├── styles │ ├── _class_template.less │ ├── _mixins.less │ ├── _variables.less │ ├── app.less │ ├── border.less │ ├── flex.less │ ├── fontColor.less │ ├── forceState.less │ ├── index.less │ ├── margin.less │ └── size.less └── utils │ ├── http.js │ ├── log.js │ └── utils.js ├── stylelint.config.js ├── tsconfig.json ├── vue.config.js └── yarn.lock /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/.env.production -------------------------------------------------------------------------------- /.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/.env.staging -------------------------------------------------------------------------------- /.eslintcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/.eslintcache -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | src/assets 3 | public 4 | dist 5 | .eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/.prettierignore -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/.stylelintignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/public/index.html -------------------------------------------------------------------------------- /public/ui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/public/ui.ico -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/api/user.js -------------------------------------------------------------------------------- /src/components/basicCp/README.md: -------------------------------------------------------------------------------- 1 | ## 基础组件 可延伸的 2 | -------------------------------------------------------------------------------- /src/components/businessCp/README.md: -------------------------------------------------------------------------------- 1 | ## 业务型组件 比较固定的 2 | -------------------------------------------------------------------------------- /src/components/common/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/components/common/validation.js -------------------------------------------------------------------------------- /src/components/thorui/tui-button/tui-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/components/thorui/tui-button/tui-button.vue -------------------------------------------------------------------------------- /src/components/thorui/tui-icon/tui-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/components/thorui/tui-icon/tui-icon.vue -------------------------------------------------------------------------------- /src/components/thorui/tui-list-cell/tui-list-cell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/components/thorui/tui-list-cell/tui-list-cell.vue -------------------------------------------------------------------------------- /src/components/thorui/tui-list-view/tui-list-view.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/components/thorui/tui-list-view/tui-list-view.vue -------------------------------------------------------------------------------- /src/config/env.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/config/env.development.js -------------------------------------------------------------------------------- /src/config/env.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/config/env.production.js -------------------------------------------------------------------------------- /src/config/env.staging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/config/env.staging.js -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/filters/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/filters/filter.js -------------------------------------------------------------------------------- /src/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/filters/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/main.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/pages.json -------------------------------------------------------------------------------- /src/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/pages/index/index.vue -------------------------------------------------------------------------------- /src/pages/personal/personal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/pages/personal/personal.vue -------------------------------------------------------------------------------- /src/pages/subPackagesA/index.js: -------------------------------------------------------------------------------- 1 | console.log('1'); 2 | -------------------------------------------------------------------------------- /src/pages/subPackagesA/views/demo/demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/pages/subPackagesA/views/demo/demo.vue -------------------------------------------------------------------------------- /src/static/images/index/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/static/images/index/logo.png -------------------------------------------------------------------------------- /src/static/images/tabbar/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/static/images/tabbar/index.png -------------------------------------------------------------------------------- /src/static/images/tabbar/index_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/static/images/tabbar/index_active.png -------------------------------------------------------------------------------- /src/static/images/tabbar/personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/static/images/tabbar/personal.png -------------------------------------------------------------------------------- /src/static/images/tabbar/personal_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/static/images/tabbar/personal_active.png -------------------------------------------------------------------------------- /src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/store/getters.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/store/modules/type.js -------------------------------------------------------------------------------- /src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/store/modules/user.js -------------------------------------------------------------------------------- /src/styles/_class_template.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/styles/_class_template.less -------------------------------------------------------------------------------- /src/styles/_mixins.less: -------------------------------------------------------------------------------- 1 | /* Mixins */ 2 | -------------------------------------------------------------------------------- /src/styles/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/styles/_variables.less -------------------------------------------------------------------------------- /src/styles/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/styles/app.less -------------------------------------------------------------------------------- /src/styles/border.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/styles/border.less -------------------------------------------------------------------------------- /src/styles/flex.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/styles/flex.less -------------------------------------------------------------------------------- /src/styles/fontColor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/styles/fontColor.less -------------------------------------------------------------------------------- /src/styles/forceState.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/styles/forceState.less -------------------------------------------------------------------------------- /src/styles/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/styles/index.less -------------------------------------------------------------------------------- /src/styles/margin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/styles/margin.less -------------------------------------------------------------------------------- /src/styles/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/styles/size.less -------------------------------------------------------------------------------- /src/utils/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/utils/http.js -------------------------------------------------------------------------------- /src/utils/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/utils/log.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/src/utils/utils.js -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urhome-wz/uniapp-ma-template/HEAD/yarn.lock --------------------------------------------------------------------------------