Merge branch 'master' of http://git.luyuan.tk/pplokijuhyg/deguodaigou into pplok
This commit is contained in:
66
pages/member/member.js
Normal file
66
pages/member/member.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/member/member.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
|
||||
}
|
||||
})
|
||||
6
pages/member/member.json
Normal file
6
pages/member/member.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"usingComponents": {
|
||||
"membertop": "/components/member/membertop/membertop",
|
||||
"membershop": "/components/member/membershop/membershop"
|
||||
}
|
||||
}
|
||||
11
pages/member/member.scss
Normal file
11
pages/member/member.scss
Normal file
@@ -0,0 +1,11 @@
|
||||
.membershops {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
.membershop {
|
||||
// margin-right: 4rpx;
|
||||
margin-bottom: 4rpx;
|
||||
}
|
||||
.membershop:nth-child(odd) {
|
||||
margin-right: 4rpx;
|
||||
}
|
||||
}
|
||||
32
pages/member/member.wxml
Normal file
32
pages/member/member.wxml
Normal file
@@ -0,0 +1,32 @@
|
||||
<view class="top">
|
||||
<membertop></membertop>
|
||||
<view class="membershops">
|
||||
<view class="membershop">
|
||||
<membershop></membershop>
|
||||
</view>
|
||||
<view class="membershop">
|
||||
<membershop></membershop>
|
||||
</view>
|
||||
<view class="membershop">
|
||||
<membershop></membershop>
|
||||
</view>
|
||||
<view class="membershop">
|
||||
<membershop></membershop>
|
||||
</view>
|
||||
|
||||
<view class="membershop">
|
||||
<membershop></membershop>
|
||||
</view>
|
||||
<view class="membershop">
|
||||
<membershop></membershop>
|
||||
</view>
|
||||
<view class="membershop">
|
||||
<membershop></membershop>
|
||||
</view>
|
||||
<view class="membershop">
|
||||
<membershop></membershop>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
</view>
|
||||
12
pages/member/member.wxss
Normal file
12
pages/member/member.wxss
Normal file
@@ -0,0 +1,12 @@
|
||||
.membershops {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.membershops .membershop {
|
||||
margin-bottom: 4rpx;
|
||||
}
|
||||
|
||||
.membershops .membershop:nth-child(odd) {
|
||||
margin-right: 4rpx;
|
||||
}
|
||||
66
pages/share/share.js
Normal file
66
pages/share/share.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/share/share.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
|
||||
}
|
||||
})
|
||||
6
pages/share/share.json
Normal file
6
pages/share/share.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"usingComponents": {
|
||||
"share": "/components/yue/share/share",
|
||||
"yuedetail": "/components/yue/yuedetail/yuedetail"
|
||||
}
|
||||
}
|
||||
7
pages/share/share.scss
Normal file
7
pages/share/share.scss
Normal file
@@ -0,0 +1,7 @@
|
||||
.share {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.detail {
|
||||
margin-top: 41rpx;
|
||||
}
|
||||
15
pages/share/share.wxml
Normal file
15
pages/share/share.wxml
Normal file
@@ -0,0 +1,15 @@
|
||||
<view class="share">
|
||||
<share></share>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
</view>
|
||||
7
pages/share/share.wxss
Normal file
7
pages/share/share.wxss
Normal file
@@ -0,0 +1,7 @@
|
||||
.share {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.detail {
|
||||
margin-top: 41rpx;
|
||||
}
|
||||
66
pages/yongjin/yongjin.js
Normal file
66
pages/yongjin/yongjin.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/yongjin/yongjin.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
|
||||
}
|
||||
})
|
||||
7
pages/yongjin/yongjin.json
Normal file
7
pages/yongjin/yongjin.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"usingComponents": {
|
||||
"yongjintop": "/components/yue/yongjintop/yongjintop",
|
||||
"yuedetail": "/components/yue/yuedetail/yuedetail",
|
||||
"yuetitle": "/components/yue/yuetitle/yuetitle"
|
||||
}
|
||||
}
|
||||
7
pages/yongjin/yongjin.scss
Normal file
7
pages/yongjin/yongjin.scss
Normal file
@@ -0,0 +1,7 @@
|
||||
.detail {
|
||||
margin-top: 41rpx;
|
||||
}
|
||||
|
||||
.title {
|
||||
margin-top: 40rpx
|
||||
}
|
||||
18
pages/yongjin/yongjin.wxml
Normal file
18
pages/yongjin/yongjin.wxml
Normal file
@@ -0,0 +1,18 @@
|
||||
<view class="yongjin">
|
||||
<yongjintop></yongjintop>
|
||||
<view class="title">
|
||||
<yuetitle></yuetitle>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
</view>
|
||||
7
pages/yongjin/yongjin.wxss
Normal file
7
pages/yongjin/yongjin.wxss
Normal file
@@ -0,0 +1,7 @@
|
||||
.detail {
|
||||
margin-top: 41rpx;
|
||||
}
|
||||
|
||||
.title {
|
||||
margin-top: 40rpx;
|
||||
}
|
||||
23
pages/yue/yue.js
Normal file
23
pages/yue/yue.js
Normal file
@@ -0,0 +1,23 @@
|
||||
// pages/yue/yue.js
|
||||
Component({
|
||||
/**
|
||||
* 组件的属性列表
|
||||
*/
|
||||
properties: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的方法列表
|
||||
*/
|
||||
methods: {
|
||||
|
||||
}
|
||||
})
|
||||
8
pages/yue/yue.json
Normal file
8
pages/yue/yue.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"yuetop": "/components/yue/yuetop/yuetop",
|
||||
"yuetitle": "/components/yue/yuetitle/yuetitle",
|
||||
"yuedetail": "/components/yue/yuedetail/yuedetail"
|
||||
}
|
||||
}
|
||||
8
pages/yue/yue.scss
Normal file
8
pages/yue/yue.scss
Normal file
@@ -0,0 +1,8 @@
|
||||
.yue {
|
||||
.title {
|
||||
margin-top: 40rpx
|
||||
}
|
||||
.detail {
|
||||
margin-top: 41rpx;
|
||||
}
|
||||
}
|
||||
19
pages/yue/yue.wxml
Normal file
19
pages/yue/yue.wxml
Normal file
@@ -0,0 +1,19 @@
|
||||
<view class="yue">
|
||||
<yuetop></yuetop>
|
||||
<view class="title">
|
||||
<yuetitle></yuetitle>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
<view class="detail">
|
||||
<yuedetail></yuedetail>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
7
pages/yue/yue.wxss
Normal file
7
pages/yue/yue.wxss
Normal file
@@ -0,0 +1,7 @@
|
||||
.yue .title {
|
||||
margin-top: 40rpx;
|
||||
}
|
||||
|
||||
.yue .detail {
|
||||
margin-top: 41rpx;
|
||||
}
|
||||
Reference in New Issue
Block a user