├── .browserslistrc ├── .env.development ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── noteImg ├── 14.2.png ├── 会员中心.jpg ├── 支付逻辑.jpg ├── 版本控制.png └── 租车下单.png ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── api │ ├── brand.js │ ├── cars.js │ ├── common.js │ ├── login.js │ ├── member.js │ ├── order.js │ ├── parking.js │ ├── rent.js │ └── requestUrl.js ├── assets │ └── images │ │ ├── face.png │ │ └── logo.png ├── components │ ├── FormComp │ │ └── index.vue │ ├── Map │ │ ├── index.vue │ │ └── map.js │ ├── SearchForm │ │ └── index.vue │ ├── TableComp │ │ └── index.vue │ ├── common │ │ ├── CarAttr.vue │ │ ├── CarAttrList.vue │ │ ├── CityArea.vue │ │ ├── Editor.vue │ │ ├── ImgUpload.vue │ │ └── KeyWord.vue │ └── dialog │ │ ├── DialogAttr.vue │ │ ├── DialogLease.vue │ │ ├── DialogMap.vue │ │ └── DialogPhoto.vue ├── main.js ├── router │ ├── guard.js │ └── index.js ├── store │ ├── index.js │ └── modules │ │ ├── config.js │ │ └── login.js ├── styles │ ├── common.scss │ ├── main.scss │ ├── normalize.scss │ └── scssConfig.scss ├── utils │ ├── amap.js │ ├── cookies.js │ ├── format.js │ ├── interceptor.js │ └── validate.js └── views │ ├── Brand │ ├── add.vue │ └── index.vue │ ├── Cars │ ├── add.vue │ ├── attr.vue │ └── index.vue │ ├── Console │ └── index.vue │ ├── Layout │ ├── components │ │ ├── LayoutAside.vue │ │ ├── LayoutHeader.vue │ │ └── LayoutMain.vue │ └── index.vue │ ├── Login │ └── index.vue │ ├── Member │ ├── detail.vue │ ├── edit.vue │ └── index.vue │ ├── Order │ └── index.vue │ ├── Parking │ ├── add.vue │ └── index.vue │ └── Rent │ └── index.vue └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/.env.development -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/babel.config.js -------------------------------------------------------------------------------- /noteImg/14.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/noteImg/14.2.png -------------------------------------------------------------------------------- /noteImg/会员中心.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/noteImg/会员中心.jpg -------------------------------------------------------------------------------- /noteImg/支付逻辑.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/noteImg/支付逻辑.jpg -------------------------------------------------------------------------------- /noteImg/版本控制.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/noteImg/版本控制.png -------------------------------------------------------------------------------- /noteImg/租车下单.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/noteImg/租车下单.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/brand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/api/brand.js -------------------------------------------------------------------------------- /src/api/cars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/api/cars.js -------------------------------------------------------------------------------- /src/api/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/api/common.js -------------------------------------------------------------------------------- /src/api/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/api/login.js -------------------------------------------------------------------------------- /src/api/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/api/member.js -------------------------------------------------------------------------------- /src/api/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/api/order.js -------------------------------------------------------------------------------- /src/api/parking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/api/parking.js -------------------------------------------------------------------------------- /src/api/rent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/api/rent.js -------------------------------------------------------------------------------- /src/api/requestUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/api/requestUrl.js -------------------------------------------------------------------------------- /src/assets/images/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/assets/images/face.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/components/FormComp/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/FormComp/index.vue -------------------------------------------------------------------------------- /src/components/Map/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/Map/index.vue -------------------------------------------------------------------------------- /src/components/Map/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/Map/map.js -------------------------------------------------------------------------------- /src/components/SearchForm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/SearchForm/index.vue -------------------------------------------------------------------------------- /src/components/TableComp/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/TableComp/index.vue -------------------------------------------------------------------------------- /src/components/common/CarAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/common/CarAttr.vue -------------------------------------------------------------------------------- /src/components/common/CarAttrList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/common/CarAttrList.vue -------------------------------------------------------------------------------- /src/components/common/CityArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/common/CityArea.vue -------------------------------------------------------------------------------- /src/components/common/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/common/Editor.vue -------------------------------------------------------------------------------- /src/components/common/ImgUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/common/ImgUpload.vue -------------------------------------------------------------------------------- /src/components/common/KeyWord.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/common/KeyWord.vue -------------------------------------------------------------------------------- /src/components/dialog/DialogAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/dialog/DialogAttr.vue -------------------------------------------------------------------------------- /src/components/dialog/DialogLease.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/dialog/DialogLease.vue -------------------------------------------------------------------------------- /src/components/dialog/DialogMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/dialog/DialogMap.vue -------------------------------------------------------------------------------- /src/components/dialog/DialogPhoto.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/components/dialog/DialogPhoto.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/guard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/router/guard.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/store/modules/config.js -------------------------------------------------------------------------------- /src/store/modules/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/store/modules/login.js -------------------------------------------------------------------------------- /src/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/styles/common.scss -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/styles/normalize.scss -------------------------------------------------------------------------------- /src/styles/scssConfig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/styles/scssConfig.scss -------------------------------------------------------------------------------- /src/utils/amap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/utils/amap.js -------------------------------------------------------------------------------- /src/utils/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/utils/cookies.js -------------------------------------------------------------------------------- /src/utils/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/utils/format.js -------------------------------------------------------------------------------- /src/utils/interceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/utils/interceptor.js -------------------------------------------------------------------------------- /src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/utils/validate.js -------------------------------------------------------------------------------- /src/views/Brand/add.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Brand/add.vue -------------------------------------------------------------------------------- /src/views/Brand/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Brand/index.vue -------------------------------------------------------------------------------- /src/views/Cars/add.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Cars/add.vue -------------------------------------------------------------------------------- /src/views/Cars/attr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Cars/attr.vue -------------------------------------------------------------------------------- /src/views/Cars/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Cars/index.vue -------------------------------------------------------------------------------- /src/views/Console/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Console/index.vue -------------------------------------------------------------------------------- /src/views/Layout/components/LayoutAside.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Layout/components/LayoutAside.vue -------------------------------------------------------------------------------- /src/views/Layout/components/LayoutHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Layout/components/LayoutHeader.vue -------------------------------------------------------------------------------- /src/views/Layout/components/LayoutMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Layout/components/LayoutMain.vue -------------------------------------------------------------------------------- /src/views/Layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Layout/index.vue -------------------------------------------------------------------------------- /src/views/Login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Login/index.vue -------------------------------------------------------------------------------- /src/views/Member/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Member/detail.vue -------------------------------------------------------------------------------- /src/views/Member/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Member/edit.vue -------------------------------------------------------------------------------- /src/views/Member/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Member/index.vue -------------------------------------------------------------------------------- /src/views/Order/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Order/index.vue -------------------------------------------------------------------------------- /src/views/Parking/add.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Parking/add.vue -------------------------------------------------------------------------------- /src/views/Parking/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Parking/index.vue -------------------------------------------------------------------------------- /src/views/Rent/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/src/views/Rent/index.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinshen/vue-cars-admin/HEAD/vue.config.js --------------------------------------------------------------------------------