index.wxml 739 B

1234567891011121314151617
  1. <cu-custom bgColor="bg-gradual-blue">
  2. <view slot="content">ColorUI 空白模板</view>
  3. </cu-custom>
  4. <view class="margin-xl padding-xl bg-white radius shadow shadow-lg">
  5. <view class="flex justify-center">
  6. <button wx:if="{{!hasUserInfo && canIUse}}" open-type="getUserInfo" bindgetuserinfo="getUserInfo" class='cu-btn round bg-green shadow'> 获取头像昵称 </button>
  7. <block wx:else>
  8. <view class='text-center'>
  9. <view class="cu-avatar xl round solids" style="background-image:url({{userInfo.avatarUrl}})"></view>
  10. <view class="padding">{{userInfo.nickName}}</view>
  11. </view>
  12. </block>
  13. </view>
  14. </view>
  15. <view class="text-center margin-top">
  16. <text class="text-grey text-xl">{{motto}}</text>
  17. </view>