├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── server ├── cors.js ├── db │ ├── address.json │ ├── charts │ │ ├── bar.json │ │ ├── line.json │ │ └── pie.json │ ├── form │ │ └── form.json │ └── tables │ │ └── tables.json ├── index.js └── router │ └── index.js ├── src ├── App.vue ├── assets │ └── logo.png ├── common │ ├── data │ │ └── addressData.js │ ├── styles │ │ ├── base.less │ │ ├── common.less │ │ ├── iconfont.less │ │ ├── mixin.less │ │ ├── table.less │ │ └── variable.less │ └── utils │ │ ├── date │ │ └── index.js │ │ ├── http │ │ └── index.js │ │ ├── index.js │ │ └── storage │ │ ├── index.js │ │ ├── localStorage.js │ │ └── sessionStorage.js ├── components │ ├── AnimatedInteger │ │ └── index.vue │ ├── Card │ │ ├── card.vue │ │ ├── card_body.vue │ │ ├── card_footer.vue │ │ ├── card_header.vue │ │ └── index.js │ ├── Filterbar │ │ └── index.vue │ ├── Patient │ │ └── index.vue │ ├── Score │ │ ├── images │ │ │ ├── star24_half@2x.png │ │ │ ├── star24_half@3x.png │ │ │ ├── star24_off@2x.png │ │ │ ├── star24_off@3x.png │ │ │ ├── star24_on@2x.png │ │ │ ├── star24_on@3x.png │ │ │ ├── star36_half@2x.png │ │ │ ├── star36_half@3x.png │ │ │ ├── star36_off@2x.png │ │ │ ├── star36_off@3x.png │ │ │ ├── star36_on@2x.png │ │ │ ├── star36_on@3x.png │ │ │ ├── star48_half@2x.png │ │ │ ├── star48_half@3x.png │ │ │ ├── star48_off@2x.png │ │ │ ├── star48_off@3x.png │ │ │ ├── star48_on@2x.png │ │ │ └── star48_on@3x.png │ │ ├── index.less │ │ └── index.vue │ ├── SelfAdd │ │ └── index.vue │ ├── TableRadio │ │ └── index.vue │ ├── ValidateCode │ │ └── index.vue │ └── Vmodel │ │ └── index.vue ├── main.js ├── pages │ ├── access │ │ └── index │ │ │ └── index.vue │ ├── charts │ │ ├── bar.vue │ │ ├── line.vue │ │ └── pie.vue │ ├── error │ │ └── index.vue │ ├── form │ │ └── render │ │ │ └── render.vue │ ├── home │ │ └── home.vue │ ├── layout │ │ └── layout.vue │ ├── log │ │ └── index │ │ │ └── index.vue │ ├── login │ │ └── login.vue │ ├── setting │ │ └── setting.vue │ ├── system │ │ └── index │ │ │ └── index.vue │ ├── tables │ │ ├── basic.vue │ │ ├── filter.vue │ │ └── sort.vue │ ├── test │ │ └── test.vue │ └── user │ │ └── index │ │ └── index.vue ├── plugins │ ├── echarts.js │ ├── element-ui.js │ ├── index.js │ └── styles.js ├── router │ ├── index.js │ └── route.js ├── store │ ├── getters.js │ ├── index.js │ ├── mutations.js │ └── state.js └── views │ ├── About.vue │ └── Home.vue └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/public/index.html -------------------------------------------------------------------------------- /server/cors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/server/cors.js -------------------------------------------------------------------------------- /server/db/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/server/db/address.json -------------------------------------------------------------------------------- /server/db/charts/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/server/db/charts/bar.json -------------------------------------------------------------------------------- /server/db/charts/line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/server/db/charts/line.json -------------------------------------------------------------------------------- /server/db/charts/pie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/server/db/charts/pie.json -------------------------------------------------------------------------------- /server/db/form/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/server/db/form/form.json -------------------------------------------------------------------------------- /server/db/tables/tables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/server/db/tables/tables.json -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/server/index.js -------------------------------------------------------------------------------- /server/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/server/router/index.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/common/data/addressData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/data/addressData.js -------------------------------------------------------------------------------- /src/common/styles/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/styles/base.less -------------------------------------------------------------------------------- /src/common/styles/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/styles/common.less -------------------------------------------------------------------------------- /src/common/styles/iconfont.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/styles/iconfont.less -------------------------------------------------------------------------------- /src/common/styles/mixin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/styles/mixin.less -------------------------------------------------------------------------------- /src/common/styles/table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/styles/table.less -------------------------------------------------------------------------------- /src/common/styles/variable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/styles/variable.less -------------------------------------------------------------------------------- /src/common/utils/date/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/utils/date/index.js -------------------------------------------------------------------------------- /src/common/utils/http/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/utils/http/index.js -------------------------------------------------------------------------------- /src/common/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/utils/index.js -------------------------------------------------------------------------------- /src/common/utils/storage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/utils/storage/index.js -------------------------------------------------------------------------------- /src/common/utils/storage/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/utils/storage/localStorage.js -------------------------------------------------------------------------------- /src/common/utils/storage/sessionStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/common/utils/storage/sessionStorage.js -------------------------------------------------------------------------------- /src/components/AnimatedInteger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/AnimatedInteger/index.vue -------------------------------------------------------------------------------- /src/components/Card/card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Card/card.vue -------------------------------------------------------------------------------- /src/components/Card/card_body.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Card/card_body.vue -------------------------------------------------------------------------------- /src/components/Card/card_footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Card/card_footer.vue -------------------------------------------------------------------------------- /src/components/Card/card_header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Card/card_header.vue -------------------------------------------------------------------------------- /src/components/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Card/index.js -------------------------------------------------------------------------------- /src/components/Filterbar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Filterbar/index.vue -------------------------------------------------------------------------------- /src/components/Patient/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Patient/index.vue -------------------------------------------------------------------------------- /src/components/Score/images/star24_half@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star24_half@2x.png -------------------------------------------------------------------------------- /src/components/Score/images/star24_half@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star24_half@3x.png -------------------------------------------------------------------------------- /src/components/Score/images/star24_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star24_off@2x.png -------------------------------------------------------------------------------- /src/components/Score/images/star24_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star24_off@3x.png -------------------------------------------------------------------------------- /src/components/Score/images/star24_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star24_on@2x.png -------------------------------------------------------------------------------- /src/components/Score/images/star24_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star24_on@3x.png -------------------------------------------------------------------------------- /src/components/Score/images/star36_half@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star36_half@2x.png -------------------------------------------------------------------------------- /src/components/Score/images/star36_half@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star36_half@3x.png -------------------------------------------------------------------------------- /src/components/Score/images/star36_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star36_off@2x.png -------------------------------------------------------------------------------- /src/components/Score/images/star36_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star36_off@3x.png -------------------------------------------------------------------------------- /src/components/Score/images/star36_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star36_on@2x.png -------------------------------------------------------------------------------- /src/components/Score/images/star36_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star36_on@3x.png -------------------------------------------------------------------------------- /src/components/Score/images/star48_half@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star48_half@2x.png -------------------------------------------------------------------------------- /src/components/Score/images/star48_half@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star48_half@3x.png -------------------------------------------------------------------------------- /src/components/Score/images/star48_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star48_off@2x.png -------------------------------------------------------------------------------- /src/components/Score/images/star48_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star48_off@3x.png -------------------------------------------------------------------------------- /src/components/Score/images/star48_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star48_on@2x.png -------------------------------------------------------------------------------- /src/components/Score/images/star48_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/images/star48_on@3x.png -------------------------------------------------------------------------------- /src/components/Score/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/index.less -------------------------------------------------------------------------------- /src/components/Score/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Score/index.vue -------------------------------------------------------------------------------- /src/components/SelfAdd/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/SelfAdd/index.vue -------------------------------------------------------------------------------- /src/components/TableRadio/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/TableRadio/index.vue -------------------------------------------------------------------------------- /src/components/ValidateCode/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/ValidateCode/index.vue -------------------------------------------------------------------------------- /src/components/Vmodel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/components/Vmodel/index.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/access/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/access/index/index.vue -------------------------------------------------------------------------------- /src/pages/charts/bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/charts/bar.vue -------------------------------------------------------------------------------- /src/pages/charts/line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/charts/line.vue -------------------------------------------------------------------------------- /src/pages/charts/pie.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/charts/pie.vue -------------------------------------------------------------------------------- /src/pages/error/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/error/index.vue -------------------------------------------------------------------------------- /src/pages/form/render/render.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/form/render/render.vue -------------------------------------------------------------------------------- /src/pages/home/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/home/home.vue -------------------------------------------------------------------------------- /src/pages/layout/layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/layout/layout.vue -------------------------------------------------------------------------------- /src/pages/log/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/log/index/index.vue -------------------------------------------------------------------------------- /src/pages/login/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/login/login.vue -------------------------------------------------------------------------------- /src/pages/setting/setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/setting/setting.vue -------------------------------------------------------------------------------- /src/pages/system/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/system/index/index.vue -------------------------------------------------------------------------------- /src/pages/tables/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/tables/basic.vue -------------------------------------------------------------------------------- /src/pages/tables/filter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/tables/filter.vue -------------------------------------------------------------------------------- /src/pages/tables/sort.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/tables/sort.vue -------------------------------------------------------------------------------- /src/pages/test/test.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/test/test.vue -------------------------------------------------------------------------------- /src/pages/user/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/pages/user/index/index.vue -------------------------------------------------------------------------------- /src/plugins/echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/plugins/echarts.js -------------------------------------------------------------------------------- /src/plugins/element-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/plugins/element-ui.js -------------------------------------------------------------------------------- /src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/plugins/index.js -------------------------------------------------------------------------------- /src/plugins/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/plugins/styles.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/router/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/router/route.js -------------------------------------------------------------------------------- /src/store/getters.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/store/mutations.js -------------------------------------------------------------------------------- /src/store/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/store/state.js -------------------------------------------------------------------------------- /src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/views/About.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luichooy/vue-admin/HEAD/yarn.lock --------------------------------------------------------------------------------