抖音b端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
971 B

  1. <!--pages/editSuccess/index.wxml-->
  2. <view class='content'>
  3. <view class='cBox'>
  4. <image class='tick' src='../../static/images/tick.png' mode='widthFix'></image>
  5. <text class='txt1'>操作成功</text>
  6. </view>
  7. <view tt:if="{{type==1}}">
  8. <text class='txt2'>本次积分:<text class='txt3'>+{{creditNum}}</text></text>
  9. </view>
  10. <view tt:if="{{type==2}}">
  11. <text class='txt4'>消费积分:<text class='txt3'>-{{creditNum}}</text></text>
  12. <text class='txt5'>剩余积分:<text class='txt6'>{{creditAmount}}</text></text>
  13. </view>
  14. <view tt:if="{{type==3}}">
  15. <view class='title' tt:for="{{title}}" tt:key="{{index}}">
  16. <view class='txt3'>{{item}}赠送成功</view>
  17. </view>
  18. <!-- <text class='txt7' >赠送成功</text> -->
  19. </view>
  20. </view>
  21. <view class='bBox'>
  22. <button class='goOn' bindtap='goOn'>继续</button>
  23. <button class='goBack' bindtap='goBack'>返回首页</button>
  24. </view>