├── douban-small ├── .vscode │ └── settings.json ├── app.js ├── app.json ├── app.wxss ├── components │ ├── moive-item │ │ ├── movie-item.js │ │ ├── movie-item.json │ │ ├── movie-item.wxml │ │ └── movie-item.wxss │ ├── music-item │ │ ├── music-item.js │ │ ├── music-item.json │ │ ├── music-item.wxml │ │ └── music-item.wxss │ └── read-item │ │ ├── read-item.js │ │ ├── read-item.json │ │ ├── read-item.wxml │ │ └── read-item.wxss ├── data │ └── local.js ├── images │ ├── avatar │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ └── sls.png │ ├── bg.jpg │ ├── icon │ │ ├── arrow-right.png │ │ ├── chat.png │ │ ├── chat1.png │ │ ├── collection-anti.png │ │ ├── collection.png │ │ ├── location.png │ │ ├── none-star.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── search.png │ │ ├── share-anti.png │ │ ├── share.png │ │ ├── star.png │ │ ├── view.png │ │ └── xx.png │ ├── iqiyi.png │ ├── item.jpg │ ├── logo.png │ ├── music │ │ ├── music-start.png │ │ ├── music-stop.png │ │ └── xuwei.jpg │ ├── pan.png │ ├── pause.png │ ├── play.png │ ├── post │ │ ├── bl.png │ │ ├── cat.png │ │ ├── crab.png │ │ ├── sls.png │ │ ├── vr.png │ │ └── xiaolong.jpg │ ├── shou.png │ ├── tab │ │ ├── ciwei.png │ │ ├── ciwei_hl.png │ │ ├── dianying.png │ │ ├── dianying_hl.png │ │ ├── music.png │ │ ├── music_hl.png │ │ ├── profile-actived.png │ │ ├── profile.png │ │ ├── yuedu.png │ │ └── yuedu_hl.png │ ├── top.png │ ├── vr.png │ ├── wx.png │ └── 洲际.jpg ├── index.js ├── jsconfig.json ├── models │ └── http.js ├── pages │ ├── index │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── movie-detail │ │ ├── movie-detail.js │ │ ├── movie-detail.json │ │ ├── movie-detail.wxml │ │ └── movie-detail.wxss │ ├── movie-list │ │ ├── movie-list.js │ │ ├── movie-list.json │ │ ├── movie-list.wxml │ │ └── movie-list.wxss │ ├── movie │ │ ├── movie.js │ │ ├── movie.json │ │ ├── movie.wxml │ │ └── movie.wxss │ ├── music-detail │ │ ├── music-detail.js │ │ ├── music-detail.json │ │ ├── music-detail.wxml │ │ └── music-detail.wxss │ ├── music-list │ │ ├── music-list.js │ │ ├── music-list.json │ │ ├── music-list.wxml │ │ └── music-list.wxss │ ├── music-play │ │ ├── music-play.js │ │ ├── music-play.json │ │ ├── music-play.wxml │ │ └── music-play.wxss │ ├── music │ │ ├── music.js │ │ ├── music.json │ │ ├── music.wxml │ │ └── music.wxss │ ├── my │ │ ├── my.js │ │ ├── my.json │ │ ├── my.wxml │ │ └── my.wxss │ ├── read-detail │ │ ├── read-detail.js │ │ ├── read-detail.json │ │ ├── read-detail.wxml │ │ └── read-detail.wxss │ └── read │ │ ├── read.js │ │ ├── read.json │ │ ├── read.wxml │ │ └── read.wxss ├── project.config.json ├── sitemap.json ├── typings │ └── wx.d.ts └── utils │ ├── filter.wxs │ ├── http.js │ └── music-http.js ├── movie-small ├── README.en.md ├── README.md ├── app.js ├── app.json ├── components │ └── movie-item │ │ ├── movie-item.js │ │ ├── movie-item.json │ │ ├── movie-item.wxml │ │ └── movie-item.wxss ├── images │ ├── arrowright.png │ ├── board-actived.png │ ├── board.png │ ├── home-actived.png │ ├── home.png │ ├── loading.gif │ ├── meigong .png │ ├── 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 │ ├── top.png │ └── wechat.jpeg ├── models │ ├── http.js │ └── search-model.js ├── pages │ ├── list │ │ ├── list.js │ │ ├── list.json │ │ ├── list.wxml │ │ └── list.wxss │ ├── movie-detail │ │ ├── movie-detail.js │ │ ├── movie-detail.json │ │ ├── movie-detail.wxml │ │ └── movie-detail.wxss │ ├── movie │ │ ├── movie.js │ │ ├── movie.json │ │ ├── movie.wxml │ │ └── movie.wxss │ ├── personal │ │ ├── personal.js │ │ ├── personal.json │ │ ├── personal.wxml │ │ └── personal.wxss │ └── search │ │ ├── search.js │ │ ├── search.json │ │ ├── search.wxml │ │ └── search.wxss ├── project.config.json └── sitemap.json └── 音乐播放跳转 ├── app.js ├── app.json ├── images ├── bg.jpg ├── item.jpg ├── pan.png ├── pause.png ├── play.png ├── shou.png └── 洲际.jpg ├── pages ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── list │ ├── list.js │ ├── list.json │ ├── list.wxml │ └── list.wxss └── song │ ├── song.js │ ├── song.json │ ├── song.wxml │ └── song.wxss ├── project.config.json ├── sitemap.json └── utils └── util.js /douban-small/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/.vscode/settings.json -------------------------------------------------------------------------------- /douban-small/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/app.js -------------------------------------------------------------------------------- /douban-small/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/app.json -------------------------------------------------------------------------------- /douban-small/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/app.wxss -------------------------------------------------------------------------------- /douban-small/components/moive-item/movie-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/moive-item/movie-item.js -------------------------------------------------------------------------------- /douban-small/components/moive-item/movie-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/moive-item/movie-item.json -------------------------------------------------------------------------------- /douban-small/components/moive-item/movie-item.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/moive-item/movie-item.wxml -------------------------------------------------------------------------------- /douban-small/components/moive-item/movie-item.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/moive-item/movie-item.wxss -------------------------------------------------------------------------------- /douban-small/components/music-item/music-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/music-item/music-item.js -------------------------------------------------------------------------------- /douban-small/components/music-item/music-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/music-item/music-item.json -------------------------------------------------------------------------------- /douban-small/components/music-item/music-item.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/music-item/music-item.wxml -------------------------------------------------------------------------------- /douban-small/components/music-item/music-item.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/music-item/music-item.wxss -------------------------------------------------------------------------------- /douban-small/components/read-item/read-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/read-item/read-item.js -------------------------------------------------------------------------------- /douban-small/components/read-item/read-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/read-item/read-item.json -------------------------------------------------------------------------------- /douban-small/components/read-item/read-item.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/read-item/read-item.wxml -------------------------------------------------------------------------------- /douban-small/components/read-item/read-item.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/components/read-item/read-item.wxss -------------------------------------------------------------------------------- /douban-small/data/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/data/local.js -------------------------------------------------------------------------------- /douban-small/images/avatar/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/avatar/1.png -------------------------------------------------------------------------------- /douban-small/images/avatar/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/avatar/2.png -------------------------------------------------------------------------------- /douban-small/images/avatar/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/avatar/3.png -------------------------------------------------------------------------------- /douban-small/images/avatar/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/avatar/4.png -------------------------------------------------------------------------------- /douban-small/images/avatar/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/avatar/5.png -------------------------------------------------------------------------------- /douban-small/images/avatar/sls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/avatar/sls.png -------------------------------------------------------------------------------- /douban-small/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/bg.jpg -------------------------------------------------------------------------------- /douban-small/images/icon/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/arrow-right.png -------------------------------------------------------------------------------- /douban-small/images/icon/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/chat.png -------------------------------------------------------------------------------- /douban-small/images/icon/chat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/chat1.png -------------------------------------------------------------------------------- /douban-small/images/icon/collection-anti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/collection-anti.png -------------------------------------------------------------------------------- /douban-small/images/icon/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/collection.png -------------------------------------------------------------------------------- /douban-small/images/icon/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/location.png -------------------------------------------------------------------------------- /douban-small/images/icon/none-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/none-star.png -------------------------------------------------------------------------------- /douban-small/images/icon/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/pause.png -------------------------------------------------------------------------------- /douban-small/images/icon/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/play.png -------------------------------------------------------------------------------- /douban-small/images/icon/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/search.png -------------------------------------------------------------------------------- /douban-small/images/icon/share-anti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/share-anti.png -------------------------------------------------------------------------------- /douban-small/images/icon/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/share.png -------------------------------------------------------------------------------- /douban-small/images/icon/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/star.png -------------------------------------------------------------------------------- /douban-small/images/icon/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/view.png -------------------------------------------------------------------------------- /douban-small/images/icon/xx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/icon/xx.png -------------------------------------------------------------------------------- /douban-small/images/iqiyi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/iqiyi.png -------------------------------------------------------------------------------- /douban-small/images/item.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/item.jpg -------------------------------------------------------------------------------- /douban-small/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/logo.png -------------------------------------------------------------------------------- /douban-small/images/music/music-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/music/music-start.png -------------------------------------------------------------------------------- /douban-small/images/music/music-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/music/music-stop.png -------------------------------------------------------------------------------- /douban-small/images/music/xuwei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/music/xuwei.jpg -------------------------------------------------------------------------------- /douban-small/images/pan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/pan.png -------------------------------------------------------------------------------- /douban-small/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/pause.png -------------------------------------------------------------------------------- /douban-small/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/play.png -------------------------------------------------------------------------------- /douban-small/images/post/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/post/bl.png -------------------------------------------------------------------------------- /douban-small/images/post/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/post/cat.png -------------------------------------------------------------------------------- /douban-small/images/post/crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/post/crab.png -------------------------------------------------------------------------------- /douban-small/images/post/sls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/post/sls.png -------------------------------------------------------------------------------- /douban-small/images/post/vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/post/vr.png -------------------------------------------------------------------------------- /douban-small/images/post/xiaolong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/post/xiaolong.jpg -------------------------------------------------------------------------------- /douban-small/images/shou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/shou.png -------------------------------------------------------------------------------- /douban-small/images/tab/ciwei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/tab/ciwei.png -------------------------------------------------------------------------------- /douban-small/images/tab/ciwei_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/tab/ciwei_hl.png -------------------------------------------------------------------------------- /douban-small/images/tab/dianying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/tab/dianying.png -------------------------------------------------------------------------------- /douban-small/images/tab/dianying_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/tab/dianying_hl.png -------------------------------------------------------------------------------- /douban-small/images/tab/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/tab/music.png -------------------------------------------------------------------------------- /douban-small/images/tab/music_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/tab/music_hl.png -------------------------------------------------------------------------------- /douban-small/images/tab/profile-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/tab/profile-actived.png -------------------------------------------------------------------------------- /douban-small/images/tab/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/tab/profile.png -------------------------------------------------------------------------------- /douban-small/images/tab/yuedu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/tab/yuedu.png -------------------------------------------------------------------------------- /douban-small/images/tab/yuedu_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/tab/yuedu_hl.png -------------------------------------------------------------------------------- /douban-small/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/top.png -------------------------------------------------------------------------------- /douban-small/images/vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/vr.png -------------------------------------------------------------------------------- /douban-small/images/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/wx.png -------------------------------------------------------------------------------- /douban-small/images/洲际.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/images/洲际.jpg -------------------------------------------------------------------------------- /douban-small/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/index.js -------------------------------------------------------------------------------- /douban-small/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/jsconfig.json -------------------------------------------------------------------------------- /douban-small/models/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/models/http.js -------------------------------------------------------------------------------- /douban-small/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/index/index.js -------------------------------------------------------------------------------- /douban-small/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarBackgroundColor": "#B3D4DB" 3 | } -------------------------------------------------------------------------------- /douban-small/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/index/index.wxml -------------------------------------------------------------------------------- /douban-small/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/index/index.wxss -------------------------------------------------------------------------------- /douban-small/pages/movie-detail/movie-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie-detail/movie-detail.js -------------------------------------------------------------------------------- /douban-small/pages/movie-detail/movie-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /douban-small/pages/movie-detail/movie-detail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie-detail/movie-detail.wxml -------------------------------------------------------------------------------- /douban-small/pages/movie-detail/movie-detail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie-detail/movie-detail.wxss -------------------------------------------------------------------------------- /douban-small/pages/movie-list/movie-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie-list/movie-list.js -------------------------------------------------------------------------------- /douban-small/pages/movie-list/movie-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie-list/movie-list.json -------------------------------------------------------------------------------- /douban-small/pages/movie-list/movie-list.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie-list/movie-list.wxml -------------------------------------------------------------------------------- /douban-small/pages/movie-list/movie-list.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie-list/movie-list.wxss -------------------------------------------------------------------------------- /douban-small/pages/movie/movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie/movie.js -------------------------------------------------------------------------------- /douban-small/pages/movie/movie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie/movie.json -------------------------------------------------------------------------------- /douban-small/pages/movie/movie.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie/movie.wxml -------------------------------------------------------------------------------- /douban-small/pages/movie/movie.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/movie/movie.wxss -------------------------------------------------------------------------------- /douban-small/pages/music-detail/music-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music-detail/music-detail.js -------------------------------------------------------------------------------- /douban-small/pages/music-detail/music-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /douban-small/pages/music-detail/music-detail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music-detail/music-detail.wxml -------------------------------------------------------------------------------- /douban-small/pages/music-detail/music-detail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music-detail/music-detail.wxss -------------------------------------------------------------------------------- /douban-small/pages/music-list/music-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music-list/music-list.js -------------------------------------------------------------------------------- /douban-small/pages/music-list/music-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music-list/music-list.json -------------------------------------------------------------------------------- /douban-small/pages/music-list/music-list.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music-list/music-list.wxml -------------------------------------------------------------------------------- /douban-small/pages/music-list/music-list.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music-list/music-list.wxss -------------------------------------------------------------------------------- /douban-small/pages/music-play/music-play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music-play/music-play.js -------------------------------------------------------------------------------- /douban-small/pages/music-play/music-play.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /douban-small/pages/music-play/music-play.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music-play/music-play.wxml -------------------------------------------------------------------------------- /douban-small/pages/music-play/music-play.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music-play/music-play.wxss -------------------------------------------------------------------------------- /douban-small/pages/music/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music/music.js -------------------------------------------------------------------------------- /douban-small/pages/music/music.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music/music.json -------------------------------------------------------------------------------- /douban-small/pages/music/music.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music/music.wxml -------------------------------------------------------------------------------- /douban-small/pages/music/music.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/music/music.wxss -------------------------------------------------------------------------------- /douban-small/pages/my/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/my/my.js -------------------------------------------------------------------------------- /douban-small/pages/my/my.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /douban-small/pages/my/my.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/my/my.wxml -------------------------------------------------------------------------------- /douban-small/pages/my/my.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/my/my.wxss -------------------------------------------------------------------------------- /douban-small/pages/read-detail/read-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/read-detail/read-detail.js -------------------------------------------------------------------------------- /douban-small/pages/read-detail/read-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /douban-small/pages/read-detail/read-detail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/read-detail/read-detail.wxml -------------------------------------------------------------------------------- /douban-small/pages/read-detail/read-detail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/read-detail/read-detail.wxss -------------------------------------------------------------------------------- /douban-small/pages/read/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/read/read.js -------------------------------------------------------------------------------- /douban-small/pages/read/read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/read/read.json -------------------------------------------------------------------------------- /douban-small/pages/read/read.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/read/read.wxml -------------------------------------------------------------------------------- /douban-small/pages/read/read.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/pages/read/read.wxss -------------------------------------------------------------------------------- /douban-small/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/project.config.json -------------------------------------------------------------------------------- /douban-small/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/sitemap.json -------------------------------------------------------------------------------- /douban-small/typings/wx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/typings/wx.d.ts -------------------------------------------------------------------------------- /douban-small/utils/filter.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/utils/filter.wxs -------------------------------------------------------------------------------- /douban-small/utils/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/utils/http.js -------------------------------------------------------------------------------- /douban-small/utils/music-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/douban-small/utils/music-http.js -------------------------------------------------------------------------------- /movie-small/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/README.en.md -------------------------------------------------------------------------------- /movie-small/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/README.md -------------------------------------------------------------------------------- /movie-small/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/app.js -------------------------------------------------------------------------------- /movie-small/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/app.json -------------------------------------------------------------------------------- /movie-small/components/movie-item/movie-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/components/movie-item/movie-item.js -------------------------------------------------------------------------------- /movie-small/components/movie-item/movie-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/components/movie-item/movie-item.json -------------------------------------------------------------------------------- /movie-small/components/movie-item/movie-item.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/components/movie-item/movie-item.wxml -------------------------------------------------------------------------------- /movie-small/components/movie-item/movie-item.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/components/movie-item/movie-item.wxss -------------------------------------------------------------------------------- /movie-small/images/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/arrowright.png -------------------------------------------------------------------------------- /movie-small/images/board-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/board-actived.png -------------------------------------------------------------------------------- /movie-small/images/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/board.png -------------------------------------------------------------------------------- /movie-small/images/home-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/home-actived.png -------------------------------------------------------------------------------- /movie-small/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/home.png -------------------------------------------------------------------------------- /movie-small/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/loading.gif -------------------------------------------------------------------------------- /movie-small/images/meigong .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/meigong .png -------------------------------------------------------------------------------- /movie-small/images/note-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/note-actived.png -------------------------------------------------------------------------------- /movie-small/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/note.png -------------------------------------------------------------------------------- /movie-small/images/profile-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/profile-actived.png -------------------------------------------------------------------------------- /movie-small/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/profile.png -------------------------------------------------------------------------------- /movie-small/images/safari-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/safari-actived.png -------------------------------------------------------------------------------- /movie-small/images/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/safari.png -------------------------------------------------------------------------------- /movie-small/images/search-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/search-actived.png -------------------------------------------------------------------------------- /movie-small/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/search.png -------------------------------------------------------------------------------- /movie-small/images/star-actived.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/star-actived.png -------------------------------------------------------------------------------- /movie-small/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/star.png -------------------------------------------------------------------------------- /movie-small/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/top.png -------------------------------------------------------------------------------- /movie-small/images/wechat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/images/wechat.jpeg -------------------------------------------------------------------------------- /movie-small/models/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/models/http.js -------------------------------------------------------------------------------- /movie-small/models/search-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/models/search-model.js -------------------------------------------------------------------------------- /movie-small/pages/list/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/list/list.js -------------------------------------------------------------------------------- /movie-small/pages/list/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/list/list.json -------------------------------------------------------------------------------- /movie-small/pages/list/list.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/list/list.wxml -------------------------------------------------------------------------------- /movie-small/pages/list/list.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/list/list.wxss -------------------------------------------------------------------------------- /movie-small/pages/movie-detail/movie-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/movie-detail/movie-detail.js -------------------------------------------------------------------------------- /movie-small/pages/movie-detail/movie-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText":"豆瓣《 电影" 4 | } -------------------------------------------------------------------------------- /movie-small/pages/movie-detail/movie-detail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/movie-detail/movie-detail.wxml -------------------------------------------------------------------------------- /movie-small/pages/movie-detail/movie-detail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/movie-detail/movie-detail.wxss -------------------------------------------------------------------------------- /movie-small/pages/movie/movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/movie/movie.js -------------------------------------------------------------------------------- /movie-small/pages/movie/movie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/movie/movie.json -------------------------------------------------------------------------------- /movie-small/pages/movie/movie.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/movie/movie.wxml -------------------------------------------------------------------------------- /movie-small/pages/movie/movie.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/movie/movie.wxss -------------------------------------------------------------------------------- /movie-small/pages/personal/personal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/personal/personal.js -------------------------------------------------------------------------------- /movie-small/pages/personal/personal.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /movie-small/pages/personal/personal.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/personal/personal.wxml -------------------------------------------------------------------------------- /movie-small/pages/personal/personal.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/personal/personal.wxss -------------------------------------------------------------------------------- /movie-small/pages/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/search/search.js -------------------------------------------------------------------------------- /movie-small/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /movie-small/pages/search/search.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/search/search.wxml -------------------------------------------------------------------------------- /movie-small/pages/search/search.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/pages/search/search.wxss -------------------------------------------------------------------------------- /movie-small/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/project.config.json -------------------------------------------------------------------------------- /movie-small/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/movie-small/sitemap.json -------------------------------------------------------------------------------- /音乐播放跳转/app.js: -------------------------------------------------------------------------------- 1 | //app.js 2 | App({ 3 | 4 | }) -------------------------------------------------------------------------------- /音乐播放跳转/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/app.json -------------------------------------------------------------------------------- /音乐播放跳转/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/images/bg.jpg -------------------------------------------------------------------------------- /音乐播放跳转/images/item.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/images/item.jpg -------------------------------------------------------------------------------- /音乐播放跳转/images/pan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/images/pan.png -------------------------------------------------------------------------------- /音乐播放跳转/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/images/pause.png -------------------------------------------------------------------------------- /音乐播放跳转/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/images/play.png -------------------------------------------------------------------------------- /音乐播放跳转/images/shou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/images/shou.png -------------------------------------------------------------------------------- /音乐播放跳转/images/洲际.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/images/洲际.jpg -------------------------------------------------------------------------------- /音乐播放跳转/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/pages/index/index.js -------------------------------------------------------------------------------- /音乐播放跳转/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /音乐播放跳转/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/pages/index/index.wxml -------------------------------------------------------------------------------- /音乐播放跳转/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/pages/index/index.wxss -------------------------------------------------------------------------------- /音乐播放跳转/pages/list/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/pages/list/list.js -------------------------------------------------------------------------------- /音乐播放跳转/pages/list/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /音乐播放跳转/pages/list/list.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/pages/list/list.wxml -------------------------------------------------------------------------------- /音乐播放跳转/pages/list/list.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/pages/list/list.wxss -------------------------------------------------------------------------------- /音乐播放跳转/pages/song/song.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/pages/song/song.js -------------------------------------------------------------------------------- /音乐播放跳转/pages/song/song.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /音乐播放跳转/pages/song/song.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/pages/song/song.wxml -------------------------------------------------------------------------------- /音乐播放跳转/pages/song/song.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/pages/song/song.wxss -------------------------------------------------------------------------------- /音乐播放跳转/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/project.config.json -------------------------------------------------------------------------------- /音乐播放跳转/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/sitemap.json -------------------------------------------------------------------------------- /音乐播放跳转/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiaxin0621/wechat_applet/HEAD/音乐播放跳转/utils/util.js --------------------------------------------------------------------------------