This commit is contained in:
asd
2019-12-14 17:01:16 +08:00
parent 1256593190
commit 07523dbbec
41 changed files with 860 additions and 1 deletions

66
pages/share/share.js Normal file
View 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
View File

@@ -0,0 +1,6 @@
{
"usingComponents": {
"share": "/components/yue/share/share",
"yuedetail": "/components/yue/yuedetail/yuedetail"
}
}

7
pages/share/share.scss Normal file
View File

@@ -0,0 +1,7 @@
.share {
background-color: white;
}
.detail {
margin-top: 41rpx;
}

15
pages/share/share.wxml Normal file
View 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
View File

@@ -0,0 +1,7 @@
.share {
background-color: white;
}
.detail {
margin-top: 41rpx;
}