├── .vscode └── settings.json ├── app.js ├── app.json ├── components ├── detail-item │ ├── detail-item.js │ ├── detail-item.json │ ├── detail-item.wxml │ └── detail-item.wxss └── movie-item │ ├── movie-item.js │ ├── movie-item.json │ ├── movie-item.wxml │ └── movie-item.wxss ├── images ├── bg.jpg └── 素材 │ ├── arrowright.png │ ├── board-actived.png │ ├── board.png │ ├── home-actived.png │ ├── home.png │ ├── loading.gif │ ├── note-actived.png │ ├── note.png │ ├── profile-actived.png │ ├── profile.png │ ├── safari-actived.png │ ├── safari.png │ ├── search-actived.png │ ├── search.png │ ├── star-actived.png │ ├── star.png │ └── wechat.jpeg ├── jsconfig.json ├── models └── http.js ├── pages ├── board │ ├── board.js │ ├── board.json │ ├── board.wxml │ └── board.wxss ├── detail │ ├── detail.js │ ├── detail.json │ ├── detail.wxml │ └── detail.wxss ├── list │ ├── list.js │ ├── list.json │ ├── list.wxml │ └── list.wxss └── search │ ├── search.js │ ├── search.json │ ├── search.wxml │ └── search.wxss ├── project.config.json ├── sitemap.json └── typings └── wx.d.ts /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | //app.js 2 | App({ 3 | 4 | }) -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/app.json -------------------------------------------------------------------------------- /components/detail-item/detail-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/components/detail-item/detail-item.js -------------------------------------------------------------------------------- /components/detail-item/detail-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/components/detail-item/detail-item.json -------------------------------------------------------------------------------- /components/detail-item/detail-item.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/components/detail-item/detail-item.wxml -------------------------------------------------------------------------------- /components/detail-item/detail-item.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/components/detail-item/detail-item.wxss -------------------------------------------------------------------------------- /components/movie-item/movie-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/components/movie-item/movie-item.js -------------------------------------------------------------------------------- /components/movie-item/movie-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/components/movie-item/movie-item.json -------------------------------------------------------------------------------- /components/movie-item/movie-item.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/components/movie-item/movie-item.wxml -------------------------------------------------------------------------------- /components/movie-item/movie-item.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/components/movie-item/movie-item.wxss -------------------------------------------------------------------------------- /images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/bg.jpg -------------------------------------------------------------------------------- /images/素材/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/arrowright.png -------------------------------------------------------------------------------- /images/素材/board-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/board-actived.png -------------------------------------------------------------------------------- /images/素材/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/board.png -------------------------------------------------------------------------------- /images/素材/home-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/home-actived.png -------------------------------------------------------------------------------- /images/素材/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/home.png -------------------------------------------------------------------------------- /images/素材/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/loading.gif -------------------------------------------------------------------------------- /images/素材/note-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/note-actived.png -------------------------------------------------------------------------------- /images/素材/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/note.png -------------------------------------------------------------------------------- /images/素材/profile-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/profile-actived.png -------------------------------------------------------------------------------- /images/素材/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/profile.png -------------------------------------------------------------------------------- /images/素材/safari-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/safari-actived.png -------------------------------------------------------------------------------- /images/素材/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/safari.png -------------------------------------------------------------------------------- /images/素材/search-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/search-actived.png -------------------------------------------------------------------------------- /images/素材/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/search.png -------------------------------------------------------------------------------- /images/素材/star-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/star-actived.png -------------------------------------------------------------------------------- /images/素材/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/star.png -------------------------------------------------------------------------------- /images/素材/wechat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/images/素材/wechat.jpeg -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/jsconfig.json -------------------------------------------------------------------------------- /models/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/models/http.js -------------------------------------------------------------------------------- /pages/board/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/board/board.js -------------------------------------------------------------------------------- /pages/board/board.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "电影<<豆瓣" 4 | } -------------------------------------------------------------------------------- /pages/board/board.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/board/board.wxml -------------------------------------------------------------------------------- /pages/board/board.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/board/board.wxss -------------------------------------------------------------------------------- /pages/detail/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/detail/detail.js -------------------------------------------------------------------------------- /pages/detail/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "<<电影<<豆瓣" 4 | } -------------------------------------------------------------------------------- /pages/detail/detail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/detail/detail.wxml -------------------------------------------------------------------------------- /pages/detail/detail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/detail/detail.wxss -------------------------------------------------------------------------------- /pages/list/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/list/list.js -------------------------------------------------------------------------------- /pages/list/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/list/list.json -------------------------------------------------------------------------------- /pages/list/list.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/list/list.wxml -------------------------------------------------------------------------------- /pages/list/list.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/search/search.js -------------------------------------------------------------------------------- /pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /pages/search/search.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/search/search.wxml -------------------------------------------------------------------------------- /pages/search/search.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/pages/search/search.wxss -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/project.config.json -------------------------------------------------------------------------------- /sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/sitemap.json -------------------------------------------------------------------------------- /typings/wx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiong99/doubanmovie-small/HEAD/typings/wx.d.ts --------------------------------------------------------------------------------