├── .babelrc ├── .editorconfig ├── .gitignore ├── README.md ├── README_EN.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── Step.vue │ └── page │ │ ├── Head.vue │ │ ├── Page.vue │ │ └── SideBar.vue ├── main.js ├── router │ └── index.js └── views │ ├── charts │ └── Schart.vue │ ├── else │ ├── Tree.vue │ └── drag.vue │ ├── form │ ├── baseform.vue │ ├── extendform.vue │ ├── formTest.vue │ └── registerDone.vue │ ├── notice │ ├── Alert.vue │ ├── Dialog.vue │ ├── Loading.vue │ ├── Message.vue │ ├── Notification.vue │ ├── Popover.vue │ └── Tip.vue │ ├── page │ ├── Login.vue │ ├── PersonalCenter.vue │ ├── Readme.vue │ ├── ResetPwd.vue │ └── empty.vue │ ├── table │ ├── AddUpTable.vue │ ├── CheckTable.vue │ ├── DataSource.vue │ ├── ElTable.vue │ ├── ExpandTable.vue │ ├── FixedTable.vue │ ├── Multistage.vue │ ├── SortTable.vue │ ├── Table.vue │ └── mergeTable.vue │ ├── tools │ ├── Badge.vue │ ├── Pagination.vue │ ├── Progress.vue │ ├── Step.vue │ └── Tag.vue │ └── upload │ ├── BaseUpload.vue │ ├── clipUpload.vue │ ├── dragUpload.vue │ ├── piclist.vue │ └── picwall.vue └── static ├── css ├── dataSource.css └── main.css ├── data ├── account.json ├── address.json ├── category.json ├── chart.json ├── dataSource.json ├── drag.json ├── goods.json ├── level.json ├── sideBar.json ├── store.json └── table.json └── img └── head-icon.jpg /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/README_EN.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Step.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/components/Step.vue -------------------------------------------------------------------------------- /src/components/page/Head.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/components/page/Head.vue -------------------------------------------------------------------------------- /src/components/page/Page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/components/page/Page.vue -------------------------------------------------------------------------------- /src/components/page/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/components/page/SideBar.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/views/charts/Schart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/charts/Schart.vue -------------------------------------------------------------------------------- /src/views/else/Tree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/else/Tree.vue -------------------------------------------------------------------------------- /src/views/else/drag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/else/drag.vue -------------------------------------------------------------------------------- /src/views/form/baseform.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/form/baseform.vue -------------------------------------------------------------------------------- /src/views/form/extendform.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/form/extendform.vue -------------------------------------------------------------------------------- /src/views/form/formTest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/form/formTest.vue -------------------------------------------------------------------------------- /src/views/form/registerDone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/form/registerDone.vue -------------------------------------------------------------------------------- /src/views/notice/Alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/notice/Alert.vue -------------------------------------------------------------------------------- /src/views/notice/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/notice/Dialog.vue -------------------------------------------------------------------------------- /src/views/notice/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/notice/Loading.vue -------------------------------------------------------------------------------- /src/views/notice/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/notice/Message.vue -------------------------------------------------------------------------------- /src/views/notice/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/notice/Notification.vue -------------------------------------------------------------------------------- /src/views/notice/Popover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/notice/Popover.vue -------------------------------------------------------------------------------- /src/views/notice/Tip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/notice/Tip.vue -------------------------------------------------------------------------------- /src/views/page/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/page/Login.vue -------------------------------------------------------------------------------- /src/views/page/PersonalCenter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/page/PersonalCenter.vue -------------------------------------------------------------------------------- /src/views/page/Readme.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/page/Readme.vue -------------------------------------------------------------------------------- /src/views/page/ResetPwd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/page/ResetPwd.vue -------------------------------------------------------------------------------- /src/views/page/empty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/page/empty.vue -------------------------------------------------------------------------------- /src/views/table/AddUpTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/table/AddUpTable.vue -------------------------------------------------------------------------------- /src/views/table/CheckTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/table/CheckTable.vue -------------------------------------------------------------------------------- /src/views/table/DataSource.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/table/DataSource.vue -------------------------------------------------------------------------------- /src/views/table/ElTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/table/ElTable.vue -------------------------------------------------------------------------------- /src/views/table/ExpandTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/table/ExpandTable.vue -------------------------------------------------------------------------------- /src/views/table/FixedTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/table/FixedTable.vue -------------------------------------------------------------------------------- /src/views/table/Multistage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/table/Multistage.vue -------------------------------------------------------------------------------- /src/views/table/SortTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/table/SortTable.vue -------------------------------------------------------------------------------- /src/views/table/Table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/table/Table.vue -------------------------------------------------------------------------------- /src/views/table/mergeTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/table/mergeTable.vue -------------------------------------------------------------------------------- /src/views/tools/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/tools/Badge.vue -------------------------------------------------------------------------------- /src/views/tools/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/tools/Pagination.vue -------------------------------------------------------------------------------- /src/views/tools/Progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/tools/Progress.vue -------------------------------------------------------------------------------- /src/views/tools/Step.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/tools/Step.vue -------------------------------------------------------------------------------- /src/views/tools/Tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/tools/Tag.vue -------------------------------------------------------------------------------- /src/views/upload/BaseUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/upload/BaseUpload.vue -------------------------------------------------------------------------------- /src/views/upload/clipUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/upload/clipUpload.vue -------------------------------------------------------------------------------- /src/views/upload/dragUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/upload/dragUpload.vue -------------------------------------------------------------------------------- /src/views/upload/piclist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/upload/piclist.vue -------------------------------------------------------------------------------- /src/views/upload/picwall.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/src/views/upload/picwall.vue -------------------------------------------------------------------------------- /static/css/dataSource.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/css/dataSource.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/data/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/account.json -------------------------------------------------------------------------------- /static/data/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/address.json -------------------------------------------------------------------------------- /static/data/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/category.json -------------------------------------------------------------------------------- /static/data/chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/chart.json -------------------------------------------------------------------------------- /static/data/dataSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/dataSource.json -------------------------------------------------------------------------------- /static/data/drag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/drag.json -------------------------------------------------------------------------------- /static/data/goods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/goods.json -------------------------------------------------------------------------------- /static/data/level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/level.json -------------------------------------------------------------------------------- /static/data/sideBar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/sideBar.json -------------------------------------------------------------------------------- /static/data/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/store.json -------------------------------------------------------------------------------- /static/data/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/data/table.json -------------------------------------------------------------------------------- /static/img/head-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianglixiong/vue-elementUI/HEAD/static/img/head-icon.jpg --------------------------------------------------------------------------------