Initial commit
parents
Showing
.babelrc
0 → 100644
.editorconfig
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.npmignore
0 → 100644
.postcssrc.js
0 → 100644
.stylelintignore
0 → 100644
.stylelintrc.js
0 → 100644
README.md
0 → 100755
build/build.js
0 → 100755
build/check-versions.js
0 → 100755
build/dev-server.js
0 → 100755
build/utils.js
0 → 100755
build/vue-loader.conf.js
0 → 100755
build/webpack.base.conf.js
0 → 100755
build/webpack.dev.conf.js
0 → 100755
build/webpack.prod.conf.js
0 → 100755
config/dev.env.js
0 → 100755
config/index.js
0 → 100755
config/prod.env.js
0 → 100755
config/uat.env.js
0 → 100755
index.html
0 → 100644
package.json
0 → 100755
| { | |||
| "name": "hls-vue-app", | |||
| "version": "1.0.0", | |||
| "description": "A Vue.js project", | |||
| "author": "JingChao <jingchao.wu@hand-china.com>", | |||
| "private": true, | |||
| "scripts": { | |||
| "dev": "cross-env CONFIG_ENV=dev webpack-dev-server --inline --progress --config build/webpack.dev.conf.js", | |||
| "start": "npm run dev", | |||
| "build:uat": "cross-env CONFIG_ENV=uat node build/build.js", | |||
| "build": "cross-env CONFIG_ENV=prod node build/build.js" | |||
| }, | |||
| "dependencies": { | |||
| "autosize": "^3.0.20", | |||
| "better-scroll": "^1.10.3", | |||
| "crypto-js": "^3.1.9-1", | |||
| "fastclick": "https://github.com/fiso/fastclick.git", | |||
| "vue": "^2.5.2", | |||
| "vue-router": "^3.0.1", | |||
| "vuex": "^2.1.1", | |||
| "vuex-i18n": "^1.3.1", | |||
| "vux": "^2.9.2", | |||
| "hls-easy-ui": "https://hel.hand-china.com/easyUI/hls-easy-ui.git" | |||
| }, | |||
| "devDependencies": { | |||
| "autoprefixer": "^7.1.2", | |||
| "babel-core": "^6.22.1", | |||
| "babel-eslint": "^8.2.1", | |||
| "babel-loader": "^7.1.1", | |||
| "babel-plugin-transform-runtime": "^6.22.0", | |||
| "babel-polyfill": "^6.26.0", | |||
| "babel-preset-env": "^1.3.2", | |||
| "babel-preset-stage-2": "^6.22.0", | |||
| "babel-register": "^6.22.0", | |||
| "chalk": "^2.0.1", | |||
| "connect-history-api-fallback": "^1.3.0", | |||
| "copy-webpack-plugin": "^4.0.1", | |||
| "cross-env": "^5.2.0", | |||
| "css-loader": "^0.28.0", | |||
| "eslint": "^4.15.0", | |||
| "eslint-config-standard": "^10.2.1", | |||
| "eslint-friendly-formatter": "^3.0.0", | |||
| "eslint-import-resolver-webpack": "^0.8.3", | |||
| "eslint-loader": "^1.7.1", | |||
| "eslint-plugin-import": "^2.7.0", | |||
| "eslint-plugin-node": "^5.2.0", | |||
| "eslint-plugin-promise": "^3.4.0", | |||
| "eslint-plugin-standard": "^3.0.1", | |||
| "eslint-plugin-vue": "^4.5.0", | |||
| "eventsource-polyfill": "^0.9.6", | |||
| "extract-text-webpack-plugin": "^3.0.0", | |||
| "file-loader": "^1.1.4", | |||
| "friendly-errors-webpack-plugin": "^1.6.1", | |||
| "html-webpack-plugin": "^2.30.1", | |||
| "less": "^2.7.1", | |||
| "less-loader": "^2.2.3", | |||
| "node-notifier": "^5.1.2", | |||
| "optimize-css-assets-webpack-plugin": "^3.2.0", | |||
| "ora": "^1.2.0", | |||
| "portfinder": "^1.0.13", | |||
| "postcss-import": "^11.0.0", | |||
| "postcss-loader": "^2.0.8", | |||
| "prelude-ls": "^1.1.2", | |||
| "px2rem-loader": "^0.1.9", | |||
| "rimraf": "^2.6.0", | |||
| "semver": "^5.3.0", | |||
| "shelljs": "^0.7.6", | |||
| "stylelint": "^8.0.0", | |||
| "stylelint-config-standard": "^18.2.0", | |||
| "stylelint-webpack-plugin": "^0.10.4", | |||
| "style-loader": "^0.21.0", | |||
| "stylus": "^0.54.5", | |||
| "stylus-loader": "^3.0.2", | |||
| "url-loader": "^0.5.8", | |||
| "vconsole": "^3.2.0", | |||
| "vue-infinite-scroll": "^2.0.2", | |||
| "vue-loader": "^13.3.0", | |||
| "vue-loading-template": "^1.3.0", | |||
| "vue-slim-better-scroll": "^1.4.1", | |||
| "vue-style-loader": "^3.0.1", | |||
| "vue-template-compiler": "^2.5.2", | |||
| "vux-loader": "^1.0.56", | |||
| "webpack": "^3.6.0", | |||
| "webpack-bundle-analyzer": "^2.9.0", | |||
| "webpack-dev-middleware": "^1.10.0", | |||
| "webpack-dev-server": "^2.9.1", | |||
| "webpack-hot-middleware": "^2.16.1", | |||
| "webpack-merge": "^4.1.0", | |||
| "yaml-loader": "^0.4.0" | |||
| }, | |||
| "cordovaPlugins": [ | |||
| "cordova-plugin-console", | |||
| "cordova-plugin-device", | |||
| "cordova-plugin-statusbar", | |||
| "cordova-plugin-splashscreen", | |||
| "cordova-plugin-whitelist", | |||
| "ionic-plugin-keyboard", | |||
| "cordova-plugin-inappbrowser" | |||
| ], | |||
| "engines": { | |||
| "node": ">= 4.0.0", | |||
| "npm": ">= 3.0.0" | |||
| }, | |||
| "browserslist": [ | |||
| "iOS >= 7", | |||
| "Android >= 4.1" | |||
| ], | |||
| "cordova": { | |||
| "platforms": [ | |||
| "android" | |||
| ], | |||
| "plugins": { | |||
| "cordova-plugin-camera": {}, | |||
| "cordova-plugin-device": {}, | |||
| "cordova-plugin-whitelist": {}, | |||
| "cordova-plugin-crosswalk-webview": { | |||
| "XWALK_VERSION": "22+", | |||
| "XWALK_LITEVERSION": "xwalk_core_library_canary:17+", | |||
| "XWALK_COMMANDLINE": "--disable-pull-to-refresh-effect", | |||
| "XWALK_MODE": "embedded", | |||
| "XWALK_MULTIPLEAPK": "true" | |||
| } | |||
| } | |||
| } | |||
| } |
src/App.vue
0 → 100755
392 Bytes
src/assets/image/icon.png
0 → 100755
55 KB
src/assets/image/logo.png
0 → 100644
30.3 KB
src/assets/image/plus.png
0 → 100644
624 Bytes
14.9 KB
438 Bytes
352 Bytes
2.12 KB
6.03 KB
2.72 KB
src/common/README.md
0 → 100755
src/common/mixins/base.js
0 → 100644
src/common/mixins/index.js
0 → 100644
src/common/mixins/prefix.js
0 → 100644
src/common/mixins/touch.js
0 → 100644
src/common/utils/index.js
0 → 100644
src/common/ydui.flexible.js
0 → 100644
src/main.js
0 → 100755
src/pages/hlsPopup.vue
0 → 100755
This diff is collapsed.
src/pages/home.vue
0 → 100755
This diff is collapsed.
src/router/index.js
0 → 100755
src/scripts/directives.js
0 → 100755
This diff is collapsed.
src/scripts/elementUtil.js
0 → 100755
src/scripts/filter.js
0 → 100644
src/scripts/hlsHttp.js
0 → 100755
src/scripts/hlsPopup.js
0 → 100755
This diff is collapsed.
src/scripts/hlsUtil.js
0 → 100755
This diff is collapsed.
This diff is collapsed.
src/scripts/jpushService.js
0 → 100644
This diff is collapsed.
src/scripts/login.js
0 → 100644
This diff is collapsed.
src/scripts/prototype.js
0 → 100755
This diff is collapsed.
src/scripts/utils.js
0 → 100644
This diff is collapsed.
src/scripts/vuePlatform.js
0 → 100755
This diff is collapsed.
src/styles/variables.less
0 → 100755
This diff is collapsed.
src/styles/vue-1px.less
0 → 100755
This diff is collapsed.
static/.gitkeep
0 → 100755
yarn.lock
0 → 100644
This diff is collapsed.