Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
qzcool committed Oct 10, 2018
0 parents commit 41dbcf4
Show file tree
Hide file tree
Showing 7,005 changed files with 388,439 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
1 change: 1 addition & 0 deletions 0 www.aspxhtml.com收集整理.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��www.aspxhtml.com�������ռ���������Ȩԭ�������С�
17 changes: 17 additions & 0 deletions AppleMusic/AppleMusic-master/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
8 changes: 8 additions & 0 deletions AppleMusic/AppleMusic-master/.idea/AppleMusic.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions AppleMusic/AppleMusic-master/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions AppleMusic/AppleMusic-master/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

262 changes: 262 additions & 0 deletions AppleMusic/AppleMusic-master/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions AppleMusic/AppleMusic-master/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 可以播放音乐的微信小程序版 Apple Music
微信小程序,仿Apple Music
搜索页可以播放单曲了,因资源问题部分搜索结果不能播放
![截图](https://github.com/Sioxas/AppleMusic/raw/master/srceenshot/sp160929_125258.png "首页")

![截图](https://github.com/Sioxas/AppleMusic/raw/master/srceenshot/sp160929_125930.png "actionsheet")

![截图](https://github.com/Sioxas/AppleMusic/raw/master/srceenshot/sp160929_125231.png "搜索页面")
38 changes: 38 additions & 0 deletions AppleMusic/AppleMusic-master/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
//app.js
App({
onLaunch: function () {
//调用API从本地缓存中获取数据
var logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
},
getUserInfo:function(cb){
var that = this;
if(this.globalData.userInfo){
typeof cb == "function" && cb(this.globalData.userInfo)
}else{
//调用登录接口
wx.login({
success: function () {
wx.getUserInfo({
success: function (res) {
that.globalData.userInfo = res.userInfo;
typeof cb == "function" && cb(that.globalData.userInfo)
}
})
}
});
}
},
globalData:{
userInfo:null,
playing:null,
palyList:[{
docid: "9137272983103274516",
id: "107192078",
mid: "003OUlho2HcRHC",
name: "告白气球",
singer: "周杰伦"
}]
}
})
Loading

0 comments on commit 41dbcf4

Please sign in to comment.