├── .env ├── .env.development ├── .env.production ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── __tests__ └── http.test.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── App.vue ├── api │ ├── http.js │ ├── index.js │ └── modules │ │ └── user.js ├── components │ └── hello │ │ └── index.vue ├── env.d.ts ├── main.js ├── manifest.json ├── pages.json ├── pages │ ├── axios │ │ └── index.vue │ ├── index │ │ └── index.vue │ ├── pinia │ │ └── index.vue │ └── uview │ │ └── index.vue ├── static │ └── logo.png ├── store │ ├── index.js │ └── modules │ │ └── countStore.js ├── uni.scss └── utils │ └── http.js ├── vite.config.js └── vitest.config.js /.env: -------------------------------------------------------------------------------- 1 | VITE_APP_AXIOS_BASE_URL=/api -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | VITE_APP_AXIOS_BASE_URL=/api -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | VITE_APP_AXIOS_BASE_URL=https://service-rbji0bev-1256505457.cd.apigw.tencentcs.com/release -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/http.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/__tests__/http.test.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/api/http.js -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- 1 | export { default as userApi } from './modules/user' 2 | -------------------------------------------------------------------------------- /src/api/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/api/modules/user.js -------------------------------------------------------------------------------- /src/components/hello/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/components/hello/index.vue -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/main.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/pages.json -------------------------------------------------------------------------------- /src/pages/axios/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/pages/axios/index.vue -------------------------------------------------------------------------------- /src/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/pages/index/index.vue -------------------------------------------------------------------------------- /src/pages/pinia/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/pages/pinia/index.vue -------------------------------------------------------------------------------- /src/pages/uview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/pages/uview/index.vue -------------------------------------------------------------------------------- /src/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/static/logo.png -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/countStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/store/modules/countStore.js -------------------------------------------------------------------------------- /src/uni.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/uni.scss -------------------------------------------------------------------------------- /src/utils/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/src/utils/http.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/vite.config.js -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATQQ/uni-app-template/HEAD/vitest.config.js --------------------------------------------------------------------------------