优惠券页面
This commit is contained in:
parent
dba1c889ce
commit
5c0da7f439
11
pages.json
11
pages.json
@ -34,7 +34,16 @@
|
|||||||
"navigationBarTitleText": "管理家庭成员",
|
"navigationBarTitleText": "管理家庭成员",
|
||||||
"enablePullDownRefresh": false
|
"enablePullDownRefresh": false
|
||||||
}
|
}
|
||||||
}]
|
} ,{
|
||||||
|
"path" : "coupon/coupon",
|
||||||
|
"style" :
|
||||||
|
{
|
||||||
|
"navigationBarTitleText": "优惠券",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
]
|
||||||
}],
|
}],
|
||||||
"globalStyle": {
|
"globalStyle": {
|
||||||
"navigationBarTextStyle": "white",
|
"navigationBarTextStyle": "white",
|
||||||
|
|||||||
19
pagesB/coupon/coupon.vue
Normal file
19
pagesB/coupon/coupon.vue
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
|
||||||
|
</style>
|
||||||
103
pagesB/managefamily/managefamily.scss
Normal file
103
pagesB/managefamily/managefamily.scss
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
page {
|
||||||
|
background-color: #F4F5F7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app {
|
||||||
|
color: #333333;
|
||||||
|
|
||||||
|
.bottom {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 30rpx;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.text {
|
||||||
|
margin-bottom: 12rpx;
|
||||||
|
font-size: 20rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #26A888;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
width: 500rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
line-height: 60rpx;
|
||||||
|
color: #fff;
|
||||||
|
font-weight: 500;
|
||||||
|
background: #26A888;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.forlist {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.item {
|
||||||
|
border-radius: 10rpx;
|
||||||
|
background-color: #fff;
|
||||||
|
margin: 20rpx auto;
|
||||||
|
width: 94%;
|
||||||
|
height: 310rpx;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.identityname {
|
||||||
|
width: 100rpx;
|
||||||
|
height: 40rpx;
|
||||||
|
line-height: 40rpx;
|
||||||
|
text-align: center;
|
||||||
|
background: #FFFFFF;
|
||||||
|
border: 2rpx solid #FFA115;
|
||||||
|
border-radius: 5rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #FFA115;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 8%;
|
||||||
|
left: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border {
|
||||||
|
width: 90%;
|
||||||
|
height: 1rpx;
|
||||||
|
background: #E6E6E6;
|
||||||
|
font-size: 30rpx;
|
||||||
|
position: absolute;
|
||||||
|
top: 72%;
|
||||||
|
left: 5%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
font-size: 30rpx;
|
||||||
|
position: absolute;
|
||||||
|
top: 46%;
|
||||||
|
left: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.namesigning {
|
||||||
|
position: absolute;
|
||||||
|
top: 20%;
|
||||||
|
left: 10%;
|
||||||
|
|
||||||
|
.name {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 38rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.signing {
|
||||||
|
text-align: center;
|
||||||
|
margin-left: 30rpx;
|
||||||
|
height: 36rpx;
|
||||||
|
line-height: 36rpx;
|
||||||
|
display: inline-block;
|
||||||
|
width: 90rpx;
|
||||||
|
background: #FFFFFF;
|
||||||
|
border: 2rpx solid #FFA115;
|
||||||
|
border-radius: 5rpx;
|
||||||
|
font-size: 22rpx;
|
||||||
|
color: #FFA115;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -41,108 +41,5 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
page {
|
@import './managefamily.scss';
|
||||||
background-color: #F4F5F7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app {
|
|
||||||
color: #333333;
|
|
||||||
|
|
||||||
.bottom {
|
|
||||||
position: fixed;
|
|
||||||
bottom: 30rpx;
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
text-align: center;
|
|
||||||
|
|
||||||
.text {
|
|
||||||
margin-bottom: 12rpx;
|
|
||||||
font-size: 20rpx;
|
|
||||||
font-weight: 500;
|
|
||||||
color: #26A888;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn {
|
|
||||||
width: 500rpx;
|
|
||||||
height: 60rpx;
|
|
||||||
line-height: 60rpx;
|
|
||||||
color: #fff;
|
|
||||||
font-weight: 500;
|
|
||||||
background: #26A888;
|
|
||||||
border-radius: 5rpx;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.forlist {
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
.item {
|
|
||||||
border-radius: 10rpx;
|
|
||||||
background-color: #fff;
|
|
||||||
margin: 20rpx auto;
|
|
||||||
width: 94%;
|
|
||||||
height: 310rpx;
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
.identityname {
|
|
||||||
width: 100rpx;
|
|
||||||
height: 40rpx;
|
|
||||||
line-height: 40rpx;
|
|
||||||
text-align: center;
|
|
||||||
background: #FFFFFF;
|
|
||||||
border: 2rpx solid #FFA115;
|
|
||||||
border-radius: 5rpx;
|
|
||||||
font-size: 24rpx;
|
|
||||||
color: #FFA115;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 8%;
|
|
||||||
left: 10%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border {
|
|
||||||
width: 90%;
|
|
||||||
height: 1rpx;
|
|
||||||
background: #E6E6E6;
|
|
||||||
font-size: 30rpx;
|
|
||||||
position: absolute;
|
|
||||||
top: 72%;
|
|
||||||
left: 5%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
|
||||||
font-size: 30rpx;
|
|
||||||
position: absolute;
|
|
||||||
top: 46%;
|
|
||||||
left: 10%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.namesigning {
|
|
||||||
position: absolute;
|
|
||||||
top: 20%;
|
|
||||||
left: 10%;
|
|
||||||
|
|
||||||
.name {
|
|
||||||
display: inline-block;
|
|
||||||
font-size: 38rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.signing {
|
|
||||||
text-align: center;
|
|
||||||
margin-left: 30rpx;
|
|
||||||
height: 36rpx;
|
|
||||||
line-height: 36rpx;
|
|
||||||
display: inline-block;
|
|
||||||
width: 90rpx;
|
|
||||||
background: #FFFFFF;
|
|
||||||
border: 2rpx solid #FFA115;
|
|
||||||
border-radius: 5rpx;
|
|
||||||
font-size: 22rpx;
|
|
||||||
color: #FFA115;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
Loading…
Reference in New Issue
Block a user