├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── .project ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── manifest.json ├── package.json ├── postcss.config.js ├── src ├── App.vue ├── api │ └── index.js ├── assets │ ├── audio │ │ ├── shake.wav │ │ └── videoviewdemo.mp4 │ ├── css │ │ ├── base.styl │ │ ├── common.styl │ │ ├── flex.styl │ │ ├── iconfont.styl │ │ ├── index.styl │ │ ├── mint.css │ │ ├── reset.styl │ │ ├── transition.styl │ │ └── variable.styl │ ├── fonts │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ ├── js │ │ ├── mixins.js │ │ ├── plusReady.js │ │ ├── storageConst.js │ │ ├── utils.js │ │ └── vconsole.min.js │ └── logo.png ├── components │ ├── plus │ │ ├── accelerometer │ │ │ └── Accelerometer.vue │ │ ├── camera │ │ │ └── Camera.vue │ │ ├── geolocation │ │ │ └── Geolocation.vue │ │ ├── payment │ │ │ └── Payment.vue │ │ ├── resumeCallback │ │ │ └── ResumeCallback.vue │ │ ├── router │ │ │ ├── Router.vue │ │ │ └── RouterChildren.vue │ │ └── test │ │ │ └── Test.vue │ └── ui │ │ ├── actionSheet │ │ └── ActionSheet.vue │ │ ├── badge │ │ └── Badge.vue │ │ ├── button │ │ └── Button.vue │ │ ├── cell │ │ └── Cell.vue │ │ ├── checklist │ │ └── Checklist.vue │ │ ├── datetimePicker │ │ └── DatetimePicker.vue │ │ ├── field │ │ └── Field.vue │ │ ├── header │ │ └── Header.vue │ │ ├── indexList │ │ └── IndexList.vue │ │ ├── indicator │ │ └── Indicator.vue │ │ ├── infiniteScroll │ │ └── infiniteScroll.vue │ │ ├── lazyLoad │ │ └── LazyLoad.vue │ │ ├── loadmore │ │ └── Loadmore.vue │ │ ├── messageBox │ │ └── MessageBox.vue │ │ ├── paletteButton │ │ └── PaletteButton.vue │ │ ├── picker │ │ └── Picker.vue │ │ ├── popup │ │ └── Popup.vue │ │ ├── progress │ │ └── Progress.vue │ │ ├── radio │ │ └── Radio.vue │ │ ├── range │ │ └── Range.vue │ │ ├── search │ │ └── Search.vue │ │ ├── spinner │ │ └── Spinner.vue │ │ ├── swipe │ │ └── Swipe.vue │ │ ├── switch │ │ └── Switch.vue │ │ └── toast │ │ └── Toast.vue ├── main.js ├── page │ ├── advertisement │ │ └── Advertisement.vue │ ├── index.vue │ ├── indexTab │ │ ├── IndexMine.vue │ │ ├── IndexPlus.vue │ │ └── IndexUi.vue │ ├── login │ │ └── Login.vue │ ├── mine │ │ └── mine.vue │ └── slider │ │ └── Slider.vue └── router │ ├── index.js │ └── router.js ├── static ├── .gitkeep ├── QR │ ├── weixin.png │ └── zhifubao.png └── media │ └── shake.wav └── unpackage ├── .confirmed_dependencies └── .dependencies /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/assets/audio/shake.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/audio/videoviewdemo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/audio/videoviewdemo.mp4 -------------------------------------------------------------------------------- /src/assets/css/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/css/base.styl -------------------------------------------------------------------------------- /src/assets/css/common.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/css/common.styl -------------------------------------------------------------------------------- /src/assets/css/flex.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/css/flex.styl -------------------------------------------------------------------------------- /src/assets/css/iconfont.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/css/iconfont.styl -------------------------------------------------------------------------------- /src/assets/css/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/css/index.styl -------------------------------------------------------------------------------- /src/assets/css/mint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/css/mint.css -------------------------------------------------------------------------------- /src/assets/css/reset.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/css/reset.styl -------------------------------------------------------------------------------- /src/assets/css/transition.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/css/transition.styl -------------------------------------------------------------------------------- /src/assets/css/variable.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/css/variable.styl -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/fonts/iconfont.eot -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/fonts/iconfont.svg -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/fonts/iconfont.woff -------------------------------------------------------------------------------- /src/assets/js/mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/js/mixins.js -------------------------------------------------------------------------------- /src/assets/js/plusReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/js/plusReady.js -------------------------------------------------------------------------------- /src/assets/js/storageConst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/js/storageConst.js -------------------------------------------------------------------------------- /src/assets/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/js/utils.js -------------------------------------------------------------------------------- /src/assets/js/vconsole.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/js/vconsole.min.js -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/plus/accelerometer/Accelerometer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/plus/accelerometer/Accelerometer.vue -------------------------------------------------------------------------------- /src/components/plus/camera/Camera.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/plus/camera/Camera.vue -------------------------------------------------------------------------------- /src/components/plus/geolocation/Geolocation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/plus/geolocation/Geolocation.vue -------------------------------------------------------------------------------- /src/components/plus/payment/Payment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/plus/payment/Payment.vue -------------------------------------------------------------------------------- /src/components/plus/resumeCallback/ResumeCallback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/plus/resumeCallback/ResumeCallback.vue -------------------------------------------------------------------------------- /src/components/plus/router/Router.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/plus/router/Router.vue -------------------------------------------------------------------------------- /src/components/plus/router/RouterChildren.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/plus/router/RouterChildren.vue -------------------------------------------------------------------------------- /src/components/plus/test/Test.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/plus/test/Test.vue -------------------------------------------------------------------------------- /src/components/ui/actionSheet/ActionSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/actionSheet/ActionSheet.vue -------------------------------------------------------------------------------- /src/components/ui/badge/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/badge/Badge.vue -------------------------------------------------------------------------------- /src/components/ui/button/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/button/Button.vue -------------------------------------------------------------------------------- /src/components/ui/cell/Cell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/cell/Cell.vue -------------------------------------------------------------------------------- /src/components/ui/checklist/Checklist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/checklist/Checklist.vue -------------------------------------------------------------------------------- /src/components/ui/datetimePicker/DatetimePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/datetimePicker/DatetimePicker.vue -------------------------------------------------------------------------------- /src/components/ui/field/Field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/field/Field.vue -------------------------------------------------------------------------------- /src/components/ui/header/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/header/Header.vue -------------------------------------------------------------------------------- /src/components/ui/indexList/IndexList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/indexList/IndexList.vue -------------------------------------------------------------------------------- /src/components/ui/indicator/Indicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/indicator/Indicator.vue -------------------------------------------------------------------------------- /src/components/ui/infiniteScroll/infiniteScroll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/infiniteScroll/infiniteScroll.vue -------------------------------------------------------------------------------- /src/components/ui/lazyLoad/LazyLoad.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/lazyLoad/LazyLoad.vue -------------------------------------------------------------------------------- /src/components/ui/loadmore/Loadmore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/loadmore/Loadmore.vue -------------------------------------------------------------------------------- /src/components/ui/messageBox/MessageBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/messageBox/MessageBox.vue -------------------------------------------------------------------------------- /src/components/ui/paletteButton/PaletteButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/paletteButton/PaletteButton.vue -------------------------------------------------------------------------------- /src/components/ui/picker/Picker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/picker/Picker.vue -------------------------------------------------------------------------------- /src/components/ui/popup/Popup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/popup/Popup.vue -------------------------------------------------------------------------------- /src/components/ui/progress/Progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/progress/Progress.vue -------------------------------------------------------------------------------- /src/components/ui/radio/Radio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/radio/Radio.vue -------------------------------------------------------------------------------- /src/components/ui/range/Range.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/range/Range.vue -------------------------------------------------------------------------------- /src/components/ui/search/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/search/Search.vue -------------------------------------------------------------------------------- /src/components/ui/spinner/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/spinner/Spinner.vue -------------------------------------------------------------------------------- /src/components/ui/swipe/Swipe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/swipe/Swipe.vue -------------------------------------------------------------------------------- /src/components/ui/switch/Switch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/switch/Switch.vue -------------------------------------------------------------------------------- /src/components/ui/toast/Toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/components/ui/toast/Toast.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/main.js -------------------------------------------------------------------------------- /src/page/advertisement/Advertisement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/page/advertisement/Advertisement.vue -------------------------------------------------------------------------------- /src/page/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/page/index.vue -------------------------------------------------------------------------------- /src/page/indexTab/IndexMine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/page/indexTab/IndexMine.vue -------------------------------------------------------------------------------- /src/page/indexTab/IndexPlus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/page/indexTab/IndexPlus.vue -------------------------------------------------------------------------------- /src/page/indexTab/IndexUi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/page/indexTab/IndexUi.vue -------------------------------------------------------------------------------- /src/page/login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/page/login/Login.vue -------------------------------------------------------------------------------- /src/page/mine/mine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/page/mine/mine.vue -------------------------------------------------------------------------------- /src/page/slider/Slider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/page/slider/Slider.vue -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/router/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/src/router/router.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/QR/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/static/QR/weixin.png -------------------------------------------------------------------------------- /static/QR/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/static/QR/zhifubao.png -------------------------------------------------------------------------------- /static/media/shake.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wjsljc/vue-webpack-mint-for-hbuilder/HEAD/static/media/shake.wav -------------------------------------------------------------------------------- /unpackage/.confirmed_dependencies: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /unpackage/.dependencies: -------------------------------------------------------------------------------- 1 | null --------------------------------------------------------------------------------