Skip to content

Commit

Permalink
hzuapps#84 魔方世界
Browse files Browse the repository at this point in the history
  • Loading branch information
1517060322 committed Nov 1, 2017
1 parent 232fb24 commit a87855f
Show file tree
Hide file tree
Showing 124 changed files with 763 additions and 0 deletions.
Binary file added 1517060322/luozijie/.DS_Store
Binary file not shown.
39 changes: 39 additions & 0 deletions 1517060322/luozijie/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
//app.js
App({
onLaunch: function () {
// 展示本地存储能力
var logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)

// 登录
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey, unionId
}
})
// 获取用户信息
wx.getSetting({
success: res => {
if (res.authSetting['scope.userInfo']) {
// 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
wx.getUserInfo({
success: res => {
// 可以将 res 发送给后台解码出 unionId
this.globalData.userInfo = res.userInfo

// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
if (this.userInfoReadyCallback) {
this.userInfoReadyCallback(res)
}
}
})
}
}
})
},
globalData: {
userInfo: null
}
})
46 changes: 46 additions & 0 deletions 1517060322/luozijie/app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"pages": [
"pages/comp/scroll",
"pages/comp/view",
"pages/comp/form",
"pages/form/form",
"pages/index/index",
"pages/logs/logs",
"pages/example/list/list",
"pages/example/article/article"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#BBDEF8",
"navigationBarTitleText": "第一个小程序",
"navigationBarTextStyle": "white"
},
"tabBar": {
"list": [
{
"pagePath": "pages/comp/scroll",
"iconPath": "pages/example/images/explore64.png",
"selectedIconPath": "pages/example/images/explore64_on.png",
"text": "魔方教程"
},
{
"pagePath": "pages/example/article/article",
"iconPath": "pages/example/images/user64.png",
"selectedIconPath": "pages/example/images/user64_on.png",
"text": "魔方的发展"
},
{
"pagePath": "pages/index/index",
"iconPath": "pages/example/images/conf64.png",
"selectedIconPath": "pages/example/images/conf64_on.png",
"text": "发现"
},
{
"pagePath": "pages/form/form",
"iconPath": "pages/example/images/user64.png",
"selectedIconPath": "pages/example/images/user64_on.png",
"text": ""
}
]
}
}
12 changes: 12 additions & 0 deletions 1517060322/luozijie/app.wxss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/**app.wxss**/
@import 'style/weui.wxss';
/* . 表示 类 class */
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
Binary file added 1517060322/luozijie/pages/.DS_Store
Binary file not shown.
66 changes: 66 additions & 0 deletions 1517060322/luozijie/pages/comp/form.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
// pages/comp/form.js
Page({

/**
* 页面的初始数据
*/
data: {

},

/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {

},

/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {

},

/**
* 生命周期函数--监听页面显示
*/
onShow: function () {

},

/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {

},

/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {

},

/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {

},

/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {

},

/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {

}
})
1 change: 1 addition & 0 deletions 1517060322/luozijie/pages/comp/form.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
2 changes: 2 additions & 0 deletions 1517060322/luozijie/pages/comp/form.wxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<!--pages/comp/form.wxml-->
<text>pages/comp/form.wxml</text>
1 change: 1 addition & 0 deletions 1517060322/luozijie/pages/comp/form.wxss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* pages/comp/form.wxss */
119 changes: 119 additions & 0 deletions 1517060322/luozijie/pages/comp/scroll.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
// pages/comp/scroll.js
var base64 = require("../example/images/base64");

Page({

/**
* 页面的初始数据
*/
data: {
isEnd: false,
messages: [{
"src": "/pages/comp/form",
"tupian": "/pages/example/images/m1.jpg",
"name": "三阶魔方基础教程",
"last": "点击进入"
}, {
"src": "/pages/comp/form",
"tupian": "/pages/example/images/m2.jpg",
"name": "三阶魔方高级公式",
"last": "点击进入!"
}, {
"tupian": "/pages/example/images/m3.jpg",
"name": "二阶魔方教程",
"last": "点击进入!"
}, {
"tupian": "/pages/example/images/m4.jpg",
"name": "四阶魔方教程",
"last": "点击进入!"
}, {
"tupian": "/pages/example/images/m5.jpg",
"name": "四阶魔方高级公式",
"last": "点击进入!"
}, {
"tupian": "/pages/example/images/m6.jpg",
"name": "五阶魔方教程",
"last": "点击进入!"
}, {
"tupian": "/pages/example/images/m2.jpg",
"name": "五阶魔方高级公式",
"last": "点击进入!"
}]
},

/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.setData({
icon20: base64.icon20,
icon60: base64.icon60
});
},

/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {

},

/**
* 生命周期函数--监听页面显示
*/
onShow: function () {

},

/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {

},

/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {

},

/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {

},

/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {

},

/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {

},

onEnd: function () {
console.log("onEnd")
var that = this;
var data = that.data;
that.setData({
isEnd: true /*,
messages: data.messages.concat([{
name: "Tom",
last: "Hello!"
}, {
name: "john",
last: "yes."
}]) */
});

}
})
1 change: 1 addition & 0 deletions 1517060322/luozijie/pages/comp/scroll.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
27 changes: 27 additions & 0 deletions 1517060322/luozijie/pages/comp/scroll.wxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!--pages/comp/scroll.wxml-->
<scroll-view class="page" bindtouchend='onEnd'>
<view class="page__hd">
<view class="page__title">滚动界面</view>
<view class="page__desc">下面开始滚动</view>
</view>
<view class="page__bd">
<view class="weui-panel weui-panel_access">
<view class="weui-panel__hd"></view>
<view class="weui-panel__bd">
<navigator url="{{item.src}}" class="weui-media-box weui-media-box_appmsg" hover-class="weui-cell_active" wx:for="{{messages}}">
<view class="weui-media-box__hd weui-media-box__hd_in-appmsg">
<image class="weui-media-box__thumb" src="{{item.tupian}}" />
</view>
<view class="weui-media-box__bd weui-media-box__bd_in-appmsg">
<view class="weui-media-box__title">{{index}} {{item.name}}</view>
<view class="weui-media-box__desc">{{item.last}}</view>
</view>
</navigator>
</view>
</view>
<view class='weui-loadmore' wx:if="{{isEnd}}">
<view class='weui-loading'></view>
<view class='weui-loadmore__tips'>正在加载……</view>
</view>
</view>
</scroll-view>
1 change: 1 addition & 0 deletions 1517060322/luozijie/pages/comp/scroll.wxss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* pages/comp/scroll.wxss */
Loading

0 comments on commit a87855f

Please sign in to comment.