Newer
Older
miniprogram / pages / index / index.wxml
bello on 5 Mar 2020 780 bytes Initial Commit
<!--index.wxml-->
<view class="container">
  <view class="userinfo">
    <button wx:if="{{!hasUserInfo && canIUse}}" open-type="getUserInfo" bindgetuserinfo="getUserInfo"> 获取头像昵称 </button>
    <block wx:else>
      <image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" mode="cover"></image>
      <text class="userinfo-nickname">{{userInfo.nickName}}</text>
    </block>
  </view>
  <view class="usermotto">
    <text class="user-motto">{{motto}}</text>
  </view>
  <!-- <camera></camera> -->

  <view id="tapTest" data-hi="hahah" bindtap="tapName">Click me! </view>

  <tagname property="value" style="color:{{red}}; font-size:{{fontSize}}" >
    Content goes here...
  </tagname>

  <view bindtap="fileshow">show file path</view>
</view>