首次提交
This commit is contained in:
93
running/my/css/main.css
Normal file
93
running/my/css/main.css
Normal file
@@ -0,0 +1,93 @@
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content:center;
|
||||
/* margin-top: 128upx; */
|
||||
}
|
||||
|
||||
/* 头部 logo */
|
||||
.header {
|
||||
text-align: center;
|
||||
|
||||
width:161upx;
|
||||
height:161upx;
|
||||
box-shadow:0upx 0upx 60upx 0upx rgba(0,0,0,0.1);
|
||||
border-radius:50%;
|
||||
background: -moz-linear-gradient(left, #F15B6C, #e10a07 100%);
|
||||
background: -webkit-gradient(linear, left top, left right, color-stop(0, #F15B6C), color-stop(100%, #e10a07));
|
||||
background: -webkit-linear-gradient(left, #F15B6C 0, #e10a07 100%);
|
||||
background: -o-linear-gradient(left, #F15B6C 0, #e10a07 100%);
|
||||
background: -ms-linear-gradient(left, #F15B6C 0, #e10a07 100%);
|
||||
background: linear-gradient(to left, #F15B6C 0, #e10a07 100%);
|
||||
margin-top: 180upx;
|
||||
margin-bottom: 72upx;
|
||||
font-size: 60upx;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
padding-top: 32upx;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.header image{
|
||||
width:161upx;
|
||||
height:161upx;
|
||||
border-radius:50%;
|
||||
}
|
||||
|
||||
/* 主体 */
|
||||
.main {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-left: 70upx;
|
||||
padding-right: 70upx;
|
||||
}
|
||||
.tips {
|
||||
color: #999999;
|
||||
font-size: 28upx;
|
||||
margin-top: 64upx;
|
||||
margin-left: 48upx;
|
||||
}
|
||||
|
||||
/* 其他登录方式 */
|
||||
.other_login{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 256upx;
|
||||
text-align: center;
|
||||
}
|
||||
.login_icon{
|
||||
border: none;
|
||||
font-size: 64upx;
|
||||
margin: 0 64upx 0 64upx;
|
||||
color: rgba(0,0,0,0.7)
|
||||
}
|
||||
.wechat_color{
|
||||
color: #83DC42;
|
||||
}
|
||||
.weibo_color{
|
||||
color: #F9221D;
|
||||
}
|
||||
.github_color{
|
||||
color: #24292E;
|
||||
}
|
||||
|
||||
/* 底部 */
|
||||
.footer{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 28upx;
|
||||
margin-top: 64upx;
|
||||
color: rgba(0,0,0,0.7);
|
||||
text-align: center;
|
||||
height: 40upx;
|
||||
line-height: 40upx;
|
||||
}
|
||||
.footer text{
|
||||
font-size: 24upx;
|
||||
margin-left: 15upx;
|
||||
margin-right: 15upx;
|
||||
}
|
||||
173
running/my/hongbao/hongbao.vue
Normal file
173
running/my/hongbao/hongbao.vue
Normal file
@@ -0,0 +1,173 @@
|
||||
<template>
|
||||
<view>
|
||||
<view class="empty" v-if="moneylist == ''">
|
||||
<view
|
||||
style="display: block; width: 90%; margin: 0 auto; position: fixed;top: 35%;left: 0rpx;right: 0rpx;text-align: center;">
|
||||
<image src="../../../static/image/emety.png" style="width: 300rpx;height: 300rpx;"></image>
|
||||
<view style="color: #CCCCCC;">暂无内容</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="popup_money" v-else>
|
||||
<view class="data_select">
|
||||
<view class="money_box" v-for="(item,index) in moneylist" :key="index">
|
||||
<view class="box_tit">
|
||||
<view class="money_name">{{item.redPacketTitle}}</view>
|
||||
<view class="money_price">¥{{item.redPacketAmount}}</view>
|
||||
</view>
|
||||
<view class="money_data">有效期至{{item.expirationTime}}</view>
|
||||
<view class="money_line">
|
||||
<u-line direction="row" color="#E6E6E6" border-style="dashed" />
|
||||
</view>
|
||||
<view class="box_bottom">
|
||||
<view class="money_use">满{{item.minimumAmount}}元可使用</view>
|
||||
<!-- <view class="money_btn">
|
||||
<view class="lj_use">
|
||||
立即使用
|
||||
</view>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
moneylist: ''
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
this.hongbao()
|
||||
},
|
||||
methods: {
|
||||
//获取登录用户的所有红包
|
||||
hongbao() {
|
||||
this.$Request.getT('/app/indent/findAllRedPacket').then(res => {
|
||||
console.log(res)
|
||||
if (res.code === 0) {
|
||||
this.moneylist = res.data
|
||||
// console.log(this.hongbao)
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
body {
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
/* #ifndef MP-WEIXIN */
|
||||
page {
|
||||
background: #F2EDED;
|
||||
}
|
||||
|
||||
/* #endif */
|
||||
|
||||
.empty {
|
||||
width: 100%;
|
||||
background: #ffffff;
|
||||
/* #ifdef MP-WEIXIN */
|
||||
height: 93vh;
|
||||
/* #endif */
|
||||
/* #ifndef MP-WEIXIN */
|
||||
height: 100vh;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.popup_money {
|
||||
height: 800upx;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.u-drawer-bottom {
|
||||
background-color: #FAF7F5 !important;
|
||||
}
|
||||
|
||||
.money_box {
|
||||
width: 93%;
|
||||
margin: 0 auto;
|
||||
background: #ffffff;
|
||||
border-radius: 14upx;
|
||||
height: 220rpx;
|
||||
margin-bottom: 20upx;
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
|
||||
.box_tit {
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
height: 80upx;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.money_name {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
justify-content: left;
|
||||
align-items: center;
|
||||
font-size: 27rpx;
|
||||
font-weight: bold;
|
||||
letter-spacing: 2upx;
|
||||
}
|
||||
|
||||
.money_price {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
font-size: 39upx;
|
||||
/* font-weight: bold; */
|
||||
color: red;
|
||||
}
|
||||
|
||||
.money_data {
|
||||
color: #999999;
|
||||
font-size: 24rpx;
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
margin-top: -8upx;
|
||||
}
|
||||
|
||||
.u-line {
|
||||
width: 90% !important;
|
||||
border-bottom-width: 6upx !important;
|
||||
margin: 0 auto !important;
|
||||
margin-top: 22upx !important;
|
||||
margin-bottom: 22upx !important;
|
||||
}
|
||||
|
||||
.box_bottom {
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
height: 40upx;
|
||||
}
|
||||
|
||||
.money_use {
|
||||
flex: 1;
|
||||
color: #999999;
|
||||
font-size: 24rpx;
|
||||
display: flex;
|
||||
justify-content: left;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.lj_use {
|
||||
width: 150rpx;
|
||||
border: 2rpx solid #FF7F00;
|
||||
color: #FF7F00;
|
||||
text-align: center;
|
||||
line-height: 48rpx;
|
||||
border-radius: 40rpx;
|
||||
font-size: 23rpx;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user