├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── 1.png ├── README.md ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── api │ ├── api.js │ ├── config.js │ ├── fetch.js │ └── index.js ├── assets │ ├── data │ │ ├── data.json │ │ └── data2.json │ ├── logo.png │ └── style │ │ ├── cover.css │ │ ├── main.less │ │ ├── reset.css │ │ ├── router.css │ │ └── var.less ├── main.js ├── package │ ├── icon │ │ ├── icon.vue │ │ └── index.js │ └── index.js ├── router │ └── index.js ├── views │ ├── Detail.vue │ ├── Find.vue │ ├── Home.vue │ ├── Index.vue │ ├── Order.vue │ └── User.vue └── vuex │ ├── index.js │ ├── modules │ └── user.js │ └── mutation-types.js ├── static ├── .gitkeep └── logo.png └── test ├── e2e ├── custom-assertions │ └── elementCount.js ├── nightwatch.conf.js ├── runner.js └── specs │ └── test.js └── unit ├── .eslintrc ├── jest.conf.js ├── setup.js └── specs └── HelloWorld.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/1.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/config/test.env.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/api/api.js -------------------------------------------------------------------------------- /src/api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/api/config.js -------------------------------------------------------------------------------- /src/api/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/api/fetch.js -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/assets/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/assets/data/data.json -------------------------------------------------------------------------------- /src/assets/data/data2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/assets/data/data2.json -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/style/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/assets/style/cover.css -------------------------------------------------------------------------------- /src/assets/style/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/assets/style/main.less -------------------------------------------------------------------------------- /src/assets/style/reset.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/style/router.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/assets/style/router.css -------------------------------------------------------------------------------- /src/assets/style/var.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/main.js -------------------------------------------------------------------------------- /src/package/icon/icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/package/icon/icon.vue -------------------------------------------------------------------------------- /src/package/icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/package/icon/index.js -------------------------------------------------------------------------------- /src/package/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/package/index.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/views/Detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/views/Detail.vue -------------------------------------------------------------------------------- /src/views/Find.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/views/Find.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /src/views/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/views/Index.vue -------------------------------------------------------------------------------- /src/views/Order.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/views/Order.vue -------------------------------------------------------------------------------- /src/views/User.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/views/User.vue -------------------------------------------------------------------------------- /src/vuex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/vuex/index.js -------------------------------------------------------------------------------- /src/vuex/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/vuex/modules/user.js -------------------------------------------------------------------------------- /src/vuex/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/src/vuex/mutation-types.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/static/logo.png -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/test/e2e/specs/test.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/test/unit/jest.conf.js -------------------------------------------------------------------------------- /test/unit/setup.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | 3 | Vue.config.productionTip = false 4 | -------------------------------------------------------------------------------- /test/unit/specs/HelloWorld.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiely/citypicker/HEAD/test/unit/specs/HelloWorld.spec.js --------------------------------------------------------------------------------