| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <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/images/empty.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/tbindent/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>
|