抖音b端
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

28 satır
1.2 KiB

  1. <!--pages/Add/index.wxml-->
  2. <view>
  3. <view class='exchange'>
  4. <image class='img' src='./../../static/images/bannerbg.png' mode="widthFix"></image>
  5. <view class='exchangeBox'>
  6. <view class='section'>
  7. <view>
  8. <text>会员姓名(昵称):</text>
  9. <text>{{paramData.name!='undefined'?paramData.name:paramData.nickName!='undefined'?paramData.nickName:''}}</text>
  10. </view>
  11. <view>
  12. <text>会员等级:</text>
  13. <text>{{paramData.levelName!='undefined'?paramData.levelName:''}}</text>
  14. </view>
  15. <view>
  16. <text>手机号码:</text>
  17. <text>{{paramData.phone}}</text>
  18. </view>
  19. </view>
  20. <view class='phoneDes' tt:if="{{!phoneIf}}">会员未授权手机号,请用户先去授权手机号!</view>
  21. <view class='butBox'>
  22. <button id='1' bindtap='gotoScore' tt:if="{{phoneIf}}" style='{{"width:"+(userData.is_admin==1?"":"690rpx")}}'>新增积分</button>
  23. <button id='2' bindtap='gotoScore' tt:if="{{phoneIf&&userData.is_admin=='1'}}">消费积分</button>
  24. </view>
  25. </view>
  26. </view>
  27. </view>