├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── README.md ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── src ├── assets │ ├── json │ │ ├── luQuanBound.json │ │ └── selectTimeData.js │ ├── logo.png │ └── style │ │ └── reset.css ├── components │ ├── AdminHeader.vue │ ├── Charts.vue │ ├── ForecastArea.vue │ ├── ForecastModal.vue │ ├── LeftMenu.vue │ ├── LiveWeather.vue │ ├── UsuallyTime.vue │ ├── calendar.vue │ └── mainArea │ │ ├── DataTable.vue │ │ └── GoogleMap.vue ├── main.js ├── routers.js ├── util │ └── dateUtil.js ├── view │ ├── App.vue │ ├── Index.vue │ ├── Login.vue │ └── MainArea.vue └── vuex │ ├── actions.js │ ├── getters.js │ ├── modules │ ├── forecast.js │ └── station.js │ ├── mutation-types.js │ └── store.js ├── static └── .gitkeep └── test ├── e2e ├── custom-assertions │ └── elementCount.js ├── nightwatch.conf.js ├── runner.js └── specs │ └── test.js └── unit ├── .eslintrc ├── index.js ├── karma.conf.js └── specs └── Hello.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/config/test.env.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/json/luQuanBound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/assets/json/luQuanBound.json -------------------------------------------------------------------------------- /src/assets/json/selectTimeData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/assets/json/selectTimeData.js -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/style/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/assets/style/reset.css -------------------------------------------------------------------------------- /src/components/AdminHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/components/AdminHeader.vue -------------------------------------------------------------------------------- /src/components/Charts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/components/Charts.vue -------------------------------------------------------------------------------- /src/components/ForecastArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/components/ForecastArea.vue -------------------------------------------------------------------------------- /src/components/ForecastModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/components/ForecastModal.vue -------------------------------------------------------------------------------- /src/components/LeftMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/components/LeftMenu.vue -------------------------------------------------------------------------------- /src/components/LiveWeather.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/components/LiveWeather.vue -------------------------------------------------------------------------------- /src/components/UsuallyTime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/components/UsuallyTime.vue -------------------------------------------------------------------------------- /src/components/calendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/components/calendar.vue -------------------------------------------------------------------------------- /src/components/mainArea/DataTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/components/mainArea/DataTable.vue -------------------------------------------------------------------------------- /src/components/mainArea/GoogleMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/components/mainArea/GoogleMap.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/main.js -------------------------------------------------------------------------------- /src/routers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/routers.js -------------------------------------------------------------------------------- /src/util/dateUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/util/dateUtil.js -------------------------------------------------------------------------------- /src/view/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/view/App.vue -------------------------------------------------------------------------------- /src/view/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/view/Index.vue -------------------------------------------------------------------------------- /src/view/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/view/Login.vue -------------------------------------------------------------------------------- /src/view/MainArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/view/MainArea.vue -------------------------------------------------------------------------------- /src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/vuex/actions.js -------------------------------------------------------------------------------- /src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/vuex/getters.js -------------------------------------------------------------------------------- /src/vuex/modules/forecast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/vuex/modules/forecast.js -------------------------------------------------------------------------------- /src/vuex/modules/station.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/vuex/modules/station.js -------------------------------------------------------------------------------- /src/vuex/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/vuex/mutation-types.js -------------------------------------------------------------------------------- /src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/src/vuex/store.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/test/e2e/specs/test.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/test/unit/index.js -------------------------------------------------------------------------------- /test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/test/unit/karma.conf.js -------------------------------------------------------------------------------- /test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teng2015/weatherSystemDemo/HEAD/test/unit/specs/Hello.spec.js --------------------------------------------------------------------------------