├── .gitignore ├── babel.config.js ├── package.json ├── public ├── index.html ├── loading2.svg ├── lvdao.png └── table.json ├── src ├── App.vue ├── api │ └── index.js ├── assets │ ├── css │ │ ├── color-dark.css │ │ ├── icon.css │ │ └── main.css │ ├── img │ │ ├── ad.png │ │ ├── admi.jpg │ │ ├── airport.svg │ │ ├── attraction.svg │ │ ├── audit1.jpg │ │ ├── audit2.jpg │ │ ├── bigger.svg │ │ ├── book.svg │ │ ├── dancheng.png │ │ ├── diamond.svg │ │ ├── eye.svg │ │ ├── faq.jpg │ │ ├── heartGrey.svg │ │ ├── heartPink.svg │ │ ├── img.jpg │ │ ├── like.svg │ │ ├── login-bg.jpg │ │ ├── lvdao.png │ │ ├── mail.jpg │ │ ├── more.svg │ │ ├── scene.jpg │ │ ├── service-staff.svg │ │ ├── star.svg │ │ ├── starGrey.svg │ │ ├── starYellow.svg │ │ ├── subway.svg │ │ └── train.svg │ ├── login-bg.jpg │ └── lvdao.png ├── components │ ├── AuditMerchant.vue │ ├── AuditMoment.vue │ ├── CheckComment.vue │ ├── Footer.vue │ ├── Footer1.vue │ ├── Header.vue │ ├── Header1.vue │ ├── Header2.vue │ ├── Home.vue │ ├── Moments.vue │ ├── Publish.vue │ ├── Search.vue │ ├── SearchAttr.vue │ ├── SellerHead.vue │ ├── SellerSiderBar.vue │ ├── SendMail.vue │ ├── Sidebar.vue │ ├── SingleComment.vue │ ├── SingleMoment.vue │ ├── UpdateFAQ.vue │ ├── admiHeader.vue │ ├── comment.vue │ ├── commentOnAttr.vue │ ├── contentListItem.vue │ ├── mapDrag.vue │ └── room.vue ├── config │ ├── config.js │ └── index.js ├── main.js ├── plugins │ └── element.js ├── router │ └── index.js ├── store │ └── index.js ├── styles │ ├── element-ui.scss │ ├── index.scss │ ├── mixin.scss │ ├── sidebar.scss │ ├── transition.scss │ └── variables.scss ├── utils │ ├── remoteLoad.js │ └── request.js └── view │ ├── 403.vue │ ├── 404.vue │ ├── AttractionOrder.vue │ ├── BaseForm.vue │ ├── Dashboard.vue │ ├── Donate.vue │ ├── Favorites.vue │ ├── FavoritesContent.vue │ ├── HistoryOrder.vue │ ├── Home.vue │ ├── Homepage.vue │ ├── HotelOrder.vue │ ├── HotelRegister.vue │ ├── Login.vue │ ├── Other │ ├── AnnualReport.vue │ ├── Rcm-Main.vue │ ├── completeplan.vue │ ├── makeplan.vue │ ├── myplan.vue │ ├── questions.vue │ ├── strategy.vue │ ├── strategyDetail.vue │ └── travelplan.vue │ ├── Permission.vue │ ├── Personalpage.vue │ ├── Register.vue │ ├── SellerDelete.vue │ ├── SellerEdit.vue │ ├── SellerHome.vue │ ├── SellerInfo.vue │ ├── SellerPost.vue │ ├── Tabs.vue │ ├── TrafficOrder.vue │ ├── attraction │ ├── Home.vue │ ├── city.vue │ └── detail.vue │ ├── hotel │ ├── HotelOrder.vue │ ├── city.vue │ ├── detail.vue │ └── index.vue │ ├── moment │ ├── CheckComment.vue │ ├── Comment.vue │ ├── Home.vue │ ├── Publish.vue │ └── SingleComment.vue │ └── tickets │ ├── Home.vue │ ├── Order.vue │ ├── planequery.vue │ └── trainquery.vue └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/loading2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/public/loading2.svg -------------------------------------------------------------------------------- /public/lvdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/public/lvdao.png -------------------------------------------------------------------------------- /public/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/public/table.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/assets/css/color-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/css/color-dark.css -------------------------------------------------------------------------------- /src/assets/css/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/css/icon.css -------------------------------------------------------------------------------- /src/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/css/main.css -------------------------------------------------------------------------------- /src/assets/img/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/ad.png -------------------------------------------------------------------------------- /src/assets/img/admi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/admi.jpg -------------------------------------------------------------------------------- /src/assets/img/airport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/airport.svg -------------------------------------------------------------------------------- /src/assets/img/attraction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/attraction.svg -------------------------------------------------------------------------------- /src/assets/img/audit1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/audit1.jpg -------------------------------------------------------------------------------- /src/assets/img/audit2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/audit2.jpg -------------------------------------------------------------------------------- /src/assets/img/bigger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/bigger.svg -------------------------------------------------------------------------------- /src/assets/img/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/book.svg -------------------------------------------------------------------------------- /src/assets/img/dancheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/dancheng.png -------------------------------------------------------------------------------- /src/assets/img/diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/diamond.svg -------------------------------------------------------------------------------- /src/assets/img/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/eye.svg -------------------------------------------------------------------------------- /src/assets/img/faq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/faq.jpg -------------------------------------------------------------------------------- /src/assets/img/heartGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/heartGrey.svg -------------------------------------------------------------------------------- /src/assets/img/heartPink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/heartPink.svg -------------------------------------------------------------------------------- /src/assets/img/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/img.jpg -------------------------------------------------------------------------------- /src/assets/img/like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/like.svg -------------------------------------------------------------------------------- /src/assets/img/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/login-bg.jpg -------------------------------------------------------------------------------- /src/assets/img/lvdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/lvdao.png -------------------------------------------------------------------------------- /src/assets/img/mail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/mail.jpg -------------------------------------------------------------------------------- /src/assets/img/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/more.svg -------------------------------------------------------------------------------- /src/assets/img/scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/scene.jpg -------------------------------------------------------------------------------- /src/assets/img/service-staff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/service-staff.svg -------------------------------------------------------------------------------- /src/assets/img/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/star.svg -------------------------------------------------------------------------------- /src/assets/img/starGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/starGrey.svg -------------------------------------------------------------------------------- /src/assets/img/starYellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/starYellow.svg -------------------------------------------------------------------------------- /src/assets/img/subway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/subway.svg -------------------------------------------------------------------------------- /src/assets/img/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/img/train.svg -------------------------------------------------------------------------------- /src/assets/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/login-bg.jpg -------------------------------------------------------------------------------- /src/assets/lvdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/assets/lvdao.png -------------------------------------------------------------------------------- /src/components/AuditMerchant.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/AuditMerchant.vue -------------------------------------------------------------------------------- /src/components/AuditMoment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/AuditMoment.vue -------------------------------------------------------------------------------- /src/components/CheckComment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/CheckComment.vue -------------------------------------------------------------------------------- /src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/Footer.vue -------------------------------------------------------------------------------- /src/components/Footer1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/Footer1.vue -------------------------------------------------------------------------------- /src/components/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/Header.vue -------------------------------------------------------------------------------- /src/components/Header1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/Header1.vue -------------------------------------------------------------------------------- /src/components/Header2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/Header2.vue -------------------------------------------------------------------------------- /src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/Home.vue -------------------------------------------------------------------------------- /src/components/Moments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/Moments.vue -------------------------------------------------------------------------------- /src/components/Publish.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/Publish.vue -------------------------------------------------------------------------------- /src/components/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/Search.vue -------------------------------------------------------------------------------- /src/components/SearchAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/SearchAttr.vue -------------------------------------------------------------------------------- /src/components/SellerHead.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/SellerHead.vue -------------------------------------------------------------------------------- /src/components/SellerSiderBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/SellerSiderBar.vue -------------------------------------------------------------------------------- /src/components/SendMail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/SendMail.vue -------------------------------------------------------------------------------- /src/components/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/Sidebar.vue -------------------------------------------------------------------------------- /src/components/SingleComment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/SingleComment.vue -------------------------------------------------------------------------------- /src/components/SingleMoment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/SingleMoment.vue -------------------------------------------------------------------------------- /src/components/UpdateFAQ.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/UpdateFAQ.vue -------------------------------------------------------------------------------- /src/components/admiHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/admiHeader.vue -------------------------------------------------------------------------------- /src/components/comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/comment.vue -------------------------------------------------------------------------------- /src/components/commentOnAttr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/commentOnAttr.vue -------------------------------------------------------------------------------- /src/components/contentListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/contentListItem.vue -------------------------------------------------------------------------------- /src/components/mapDrag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/mapDrag.vue -------------------------------------------------------------------------------- /src/components/room.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/components/room.vue -------------------------------------------------------------------------------- /src/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/config/config.js -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/main.js -------------------------------------------------------------------------------- /src/plugins/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/plugins/element.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/styles/element-ui.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/styles/mixin.scss -------------------------------------------------------------------------------- /src/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/styles/sidebar.scss -------------------------------------------------------------------------------- /src/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/styles/transition.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /src/utils/remoteLoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/utils/remoteLoad.js -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/view/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/403.vue -------------------------------------------------------------------------------- /src/view/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/404.vue -------------------------------------------------------------------------------- /src/view/AttractionOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/AttractionOrder.vue -------------------------------------------------------------------------------- /src/view/BaseForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/BaseForm.vue -------------------------------------------------------------------------------- /src/view/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Dashboard.vue -------------------------------------------------------------------------------- /src/view/Donate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Donate.vue -------------------------------------------------------------------------------- /src/view/Favorites.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Favorites.vue -------------------------------------------------------------------------------- /src/view/FavoritesContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/FavoritesContent.vue -------------------------------------------------------------------------------- /src/view/HistoryOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/HistoryOrder.vue -------------------------------------------------------------------------------- /src/view/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Home.vue -------------------------------------------------------------------------------- /src/view/Homepage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Homepage.vue -------------------------------------------------------------------------------- /src/view/HotelOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/HotelOrder.vue -------------------------------------------------------------------------------- /src/view/HotelRegister.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/HotelRegister.vue -------------------------------------------------------------------------------- /src/view/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Login.vue -------------------------------------------------------------------------------- /src/view/Other/AnnualReport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Other/AnnualReport.vue -------------------------------------------------------------------------------- /src/view/Other/Rcm-Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Other/Rcm-Main.vue -------------------------------------------------------------------------------- /src/view/Other/completeplan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Other/completeplan.vue -------------------------------------------------------------------------------- /src/view/Other/makeplan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Other/makeplan.vue -------------------------------------------------------------------------------- /src/view/Other/myplan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Other/myplan.vue -------------------------------------------------------------------------------- /src/view/Other/questions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Other/questions.vue -------------------------------------------------------------------------------- /src/view/Other/strategy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Other/strategy.vue -------------------------------------------------------------------------------- /src/view/Other/strategyDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Other/strategyDetail.vue -------------------------------------------------------------------------------- /src/view/Other/travelplan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Other/travelplan.vue -------------------------------------------------------------------------------- /src/view/Permission.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Permission.vue -------------------------------------------------------------------------------- /src/view/Personalpage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Personalpage.vue -------------------------------------------------------------------------------- /src/view/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Register.vue -------------------------------------------------------------------------------- /src/view/SellerDelete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/SellerDelete.vue -------------------------------------------------------------------------------- /src/view/SellerEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/SellerEdit.vue -------------------------------------------------------------------------------- /src/view/SellerHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/SellerHome.vue -------------------------------------------------------------------------------- /src/view/SellerInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/SellerInfo.vue -------------------------------------------------------------------------------- /src/view/SellerPost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/SellerPost.vue -------------------------------------------------------------------------------- /src/view/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/Tabs.vue -------------------------------------------------------------------------------- /src/view/TrafficOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/TrafficOrder.vue -------------------------------------------------------------------------------- /src/view/attraction/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/attraction/Home.vue -------------------------------------------------------------------------------- /src/view/attraction/city.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/attraction/city.vue -------------------------------------------------------------------------------- /src/view/attraction/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/attraction/detail.vue -------------------------------------------------------------------------------- /src/view/hotel/HotelOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/hotel/HotelOrder.vue -------------------------------------------------------------------------------- /src/view/hotel/city.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/hotel/city.vue -------------------------------------------------------------------------------- /src/view/hotel/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/hotel/detail.vue -------------------------------------------------------------------------------- /src/view/hotel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/hotel/index.vue -------------------------------------------------------------------------------- /src/view/moment/CheckComment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/moment/CheckComment.vue -------------------------------------------------------------------------------- /src/view/moment/Comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/moment/Comment.vue -------------------------------------------------------------------------------- /src/view/moment/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/moment/Home.vue -------------------------------------------------------------------------------- /src/view/moment/Publish.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/moment/Publish.vue -------------------------------------------------------------------------------- /src/view/moment/SingleComment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/moment/SingleComment.vue -------------------------------------------------------------------------------- /src/view/tickets/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/tickets/Home.vue -------------------------------------------------------------------------------- /src/view/tickets/Order.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/tickets/Order.vue -------------------------------------------------------------------------------- /src/view/tickets/planequery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/tickets/planequery.vue -------------------------------------------------------------------------------- /src/view/tickets/trainquery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/src/view/tickets/trainquery.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zb2313/DB-frontend/HEAD/vue.config.js --------------------------------------------------------------------------------