123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <view class="all">
- <view class="flex-box-ce" style="background:#fff;padding:24rpx">
- <image mode="scaleToFill" src="../../../image/money.jpg" class="img" />
- <view class="flex-box-v" style="height:300rpx;padding-left:20rpx">
- <view class="content fontColorF flex-1">
- 因为这些问题也陪伴我度过了生命中那些夜不能寐的日子,
- </view>
- <view style="margin-bottom:20rpx">功勋点:
- <text class="red">49</text></view>
- <view class="flex-box-ce">
- <text>数量:</text>
- <view class="flex-box-ce">
- <view class="num" catchTap="active" data-id="1">-</view>
- <input class="input" type="number" value="{{val}}" />
- <view class="num" data-id="2" catchTap="active">+</view>
- </view>
- </view>
- </view>
- </view>
- <view class="fontColorF" style="padding:20rpx;background:#fff"> 商品描述: 因为这些问题也陪伴我度过了生命中那些夜不能寐的日子,</view>
- <textarea onBlur="bindTextAreaBlur" placeholder="请输入兑换备注" maxlength="100" style="margin-top:24rpx;padding:24rpx;height:200rpx" />
- <button type="primary" class="btn" catchTap="showText">立即兑换</button>
- <view a:if="{{isBh}}" class="windows" content="还没有积分事件">
- <view class="windows-box">
- <view class="windows-title">兑换</view>
- <view class="flex-box-ce flex-center-center" style="margin-bottom:20rpx;">
- <text style="padding-right:20rpx;font-size:36rpx">确认兑换</text>
- </view>
- <view style="text-align:center;padding:20rpx 0;">
- <image src="../../../image/money.jpg" style="width:260rpx;height:260rpx;border-radius: 10rpx" />
- </view>
- <view class="windows-content" style="text-align:center">您需要花<text class="red">49</text>功勋点兑换此商品</view>
- <view style="text-align:center;font-size:24rpx;margin-bottom:20rpx" class="fontColorX">
- (当前的功勋点为1354分)
- </view>
- <view class="btns flex-box flex-v-ce">
- <view class="flex-1" catchTap="colseText">取消</view>
- <view class="flex-1" catchTap="openText">确认</view>
- </view>
- </view>
- </view>
- </view>
|