Commit 32417333 by 高淑倩

add: plus

parent d52923ee
......@@ -46,7 +46,8 @@
"pages/share/share",
"pages/paymentStatus/paymentStatus",
"pages/fun/fun",
"pages/categoryPro/categoryPro"
"pages/categoryPro/categoryPro",
"pages/plus/plus"
]
}
],
......
......@@ -39,7 +39,7 @@
"list": []
},
"miniprogram": {
"current": 17,
"current": 37,
"list": [
{
"id": -1,
......@@ -285,6 +285,13 @@
"pathName": "subPackage/page/pages/fun/fun",
"query": "",
"scene": null
},
{
"id": -1,
"name": "plus",
"pathName": "subPackage/page/pages/plus/plus",
"query": "",
"scene": null
}
]
}
......
{}
\ No newline at end of file
{
"navigationBarTitleText": "plus 购买页"
}
\ No newline at end of file
// subPackage/home/pages/plus/plus.js
const wxService = require('../../../../utils/wxService')
wxService.page({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})
{
"navigationBarTitleText": "plus 购买页"
}
\ No newline at end of file
<!--subPackage/home/pages/plus/plus.wxml-->
<view class="plus">
<view>
=
</view>
<view class="plus-bottom fixed-bottom0 clearfix::after">
<view class="bottom-top">
</view>
<view class="bottom-bottom">
<view class="bottom-pay">立即支付 ¥158 </view>
</view>
</view>
</view>
/* subPackage/home/pages/plus/plus.wxss */
@import './../../../../base/base.wxss';
.plus-bottom {
height: 314rpx;
background-color: rgba(192, 154, 116, .02);
}
.plus-bottom .bottom-top{
height: 226rpx;
}
.plus-bottom .bottom-bottom{
width: 100%;
height: 88rpx;
padding-top: 18rpx;
background-color: rgba(255, 255, 255, 1);
}
.bottom-pay {
text-align: center;
width: 280rpx;
line-height: 52rpx;
height: 52rpx;
border-radius: 26px;
background-color: rgba(203, 60, 60, 1);
left: 480px;
color: rgba(255, 255, 255, 1);
font-size: 26rpx;
float: right;
margin-right: 30rpx;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment