Skip to content

Commit

Permalink
Merge pull request #540 from irlbj002/master
Browse files Browse the repository at this point in the history
  • Loading branch information
zengsn authored Apr 21, 2019
2 parents a020371 + 3c7d67b commit da0a143
Show file tree
Hide file tree
Showing 13 changed files with 265 additions and 0 deletions.
103 changes: 103 additions & 0 deletions students/1714080903235/about.wxml

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions students/1714080903235/app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"pages":[
"pages/dynamic/dynamic",
"pages/about/about"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#4c4e5d",
"navigationBarTitleText": "詹姆斯迷弟",
"navigationBarTextStyle":"black"
},
"tabBar": {
"list": [
{
"iconPath":"pages/image/lbj3.jpg",
"pagePath": "pages/dynamic/dynamic",
"text": "动态"

},
{
"iconPath":"pages/image/lbj2.jpg",
"pagePath": "pages/about/about",
"text": "关于"

}
]
}
}

11 changes: 11 additions & 0 deletions students/1714080903235/app.wxss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**app.wxss**/
@import "style/weui.wxss";
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
66 changes: 66 additions & 0 deletions students/1714080903235/dynamic.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
// pages/dynamic/dynamic.js
Page({

/**
* 页面的初始数据
*/
data: {
"welcome": "Hello WeChat Mini Program"
},

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

},

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

},

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

},

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

},

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

},

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

},

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

},

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

}
})
Binary file added students/1714080903235/lbj.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added students/1714080903235/lbj2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added students/1714080903235/lbj3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added students/1714080903235/lbj4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added students/1714080903235/lbj5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added students/1714080903235/lbj6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added students/1714080903235/lbj7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added students/1714080903235/lbj8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions students/1714080903235/weui.wxss
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/**
* Tencent is pleased to support the open source community by making
* WeUI-WXSS available.
*
* Copyright (C) 2017 THL A29 Limited, a Tencent company.
* All rights reserved.
*
* Licensed under the MIT License (the "License"); you may not use
* this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://opensource.org/licenses/MIT
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

@import "base/reset.wxss";

@import "widget/weui-cell/weui-cell.wxss";
@import "widget/weui-cell/weui-access.wxss";
@import "widget/weui-cell/weui-check.wxss";
@import "widget/weui-cell/weui-form.wxss";
@import "widget/weui-cell/weui-switch.wxss";
@import "widget/weui-cell/weui-uploader.wxss";

@import "./widget/weui-page/weui-article.wxss";
@import "./widget/weui-page/weui-msg.wxss";

@import "widget/weui-flex/weui-flex.wxss";

@import "widget/weui-button/weui-button.wxss";

@import "./widget/weui-agree/weui-agree.wxss";

@import "./widget/weui-footer/weui-footer.wxss";

@import "./widget/weui-grid/weui-grid.wxss";

@import "./widget/weui-loading/weui-loading.wxss";

@import "./widget/weui-tips/weui-badge.wxss";
@import "./widget/weui-tips/weui-loadmore.wxss";

@import "./widget/weui-panel/weui-panel.wxss";

@import "./widget/weui-media-box/weui-media-box.wxss";

@import "./widget/weui-progress/weui-progress.wxss";

@import "./widget/weui-tab/weui-tab.wxss";

@import "./widget/weui-searchbar/weui-searchbar.wxss";

0 comments on commit da0a143

Please sign in to comment.