├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── public ├── css │ └── reset.css ├── favicon.ico ├── font │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 └── index.html ├── showImage ├── p1.png ├── p2.png ├── p3.png ├── p4.png ├── p5.png ├── p6.png ├── p7.png └── p8.png ├── src ├── App.vue ├── assets │ ├── CityHall.png │ ├── lazy1.jpg │ ├── max.png │ ├── message.png │ ├── movie.jpg │ ├── movie.png │ └── personal.png ├── components │ ├── cityIndex │ │ ├── allCity.vue │ │ ├── feature.vue │ │ └── grand.vue │ ├── footer │ │ └── index.vue │ ├── header │ │ └── index.vue │ ├── js │ │ ├── index.js │ │ └── messageBox │ │ │ └── index.vue │ ├── loading │ │ └── index.vue │ ├── movieIndex │ │ ├── cityList │ │ │ └── index.vue │ │ ├── nowPlaying │ │ │ └── index.vue │ │ ├── search │ │ │ └── index.vue │ │ └── willPlaying │ │ │ └── index.vue │ ├── personIndex │ │ └── login.vue │ └── scroller │ │ └── index.vue ├── main.js ├── routers │ ├── city │ │ └── index.js │ ├── index.js │ ├── movie │ │ └── index.js │ └── person │ │ └── index.js ├── stores │ ├── city │ │ └── index.js │ └── index.js └── views │ ├── city │ └── index.vue │ ├── movie │ ├── detail.vue │ └── index.vue │ └── person │ └── index.vue ├── tree.md └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/package.json -------------------------------------------------------------------------------- /public/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/public/css/reset.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/public/font/iconfont.eot -------------------------------------------------------------------------------- /public/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/public/font/iconfont.svg -------------------------------------------------------------------------------- /public/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/public/font/iconfont.ttf -------------------------------------------------------------------------------- /public/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/public/font/iconfont.woff -------------------------------------------------------------------------------- /public/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/public/font/iconfont.woff2 -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/public/index.html -------------------------------------------------------------------------------- /showImage/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/showImage/p1.png -------------------------------------------------------------------------------- /showImage/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/showImage/p2.png -------------------------------------------------------------------------------- /showImage/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/showImage/p3.png -------------------------------------------------------------------------------- /showImage/p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/showImage/p4.png -------------------------------------------------------------------------------- /showImage/p5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/showImage/p5.png -------------------------------------------------------------------------------- /showImage/p6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/showImage/p6.png -------------------------------------------------------------------------------- /showImage/p7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/showImage/p7.png -------------------------------------------------------------------------------- /showImage/p8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/showImage/p8.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/CityHall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/assets/CityHall.png -------------------------------------------------------------------------------- /src/assets/lazy1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/assets/lazy1.jpg -------------------------------------------------------------------------------- /src/assets/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/assets/max.png -------------------------------------------------------------------------------- /src/assets/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/assets/message.png -------------------------------------------------------------------------------- /src/assets/movie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/assets/movie.jpg -------------------------------------------------------------------------------- /src/assets/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/assets/movie.png -------------------------------------------------------------------------------- /src/assets/personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/assets/personal.png -------------------------------------------------------------------------------- /src/components/cityIndex/allCity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/cityIndex/allCity.vue -------------------------------------------------------------------------------- /src/components/cityIndex/feature.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/cityIndex/feature.vue -------------------------------------------------------------------------------- /src/components/cityIndex/grand.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/cityIndex/grand.vue -------------------------------------------------------------------------------- /src/components/footer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/footer/index.vue -------------------------------------------------------------------------------- /src/components/header/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/header/index.vue -------------------------------------------------------------------------------- /src/components/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/js/index.js -------------------------------------------------------------------------------- /src/components/js/messageBox/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/js/messageBox/index.vue -------------------------------------------------------------------------------- /src/components/loading/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/loading/index.vue -------------------------------------------------------------------------------- /src/components/movieIndex/cityList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/movieIndex/cityList/index.vue -------------------------------------------------------------------------------- /src/components/movieIndex/nowPlaying/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/movieIndex/nowPlaying/index.vue -------------------------------------------------------------------------------- /src/components/movieIndex/search/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/movieIndex/search/index.vue -------------------------------------------------------------------------------- /src/components/movieIndex/willPlaying/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/movieIndex/willPlaying/index.vue -------------------------------------------------------------------------------- /src/components/personIndex/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/personIndex/login.vue -------------------------------------------------------------------------------- /src/components/scroller/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/components/scroller/index.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/main.js -------------------------------------------------------------------------------- /src/routers/city/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/routers/city/index.js -------------------------------------------------------------------------------- /src/routers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/routers/index.js -------------------------------------------------------------------------------- /src/routers/movie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/routers/movie/index.js -------------------------------------------------------------------------------- /src/routers/person/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/routers/person/index.js -------------------------------------------------------------------------------- /src/stores/city/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/stores/city/index.js -------------------------------------------------------------------------------- /src/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/stores/index.js -------------------------------------------------------------------------------- /src/views/city/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/views/city/index.vue -------------------------------------------------------------------------------- /src/views/movie/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/views/movie/detail.vue -------------------------------------------------------------------------------- /src/views/movie/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/views/movie/index.vue -------------------------------------------------------------------------------- /src/views/person/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/src/views/person/index.vue -------------------------------------------------------------------------------- /tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/tree.md -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaogengzhu/maioyan/HEAD/vue.config.js --------------------------------------------------------------------------------