12345678910111213141516171819202122232425262728293031323334353637383940 |
- <view class="container">
-
-
-
- {{province}}{{city}}
-
-
- <view class="city">
- <input class='cityShow' type='text' placeholder='' bindinput="bindKeyInput"
- value='城市:{{province}} {{city}}' disabled></input>
- </view>
- <view class="address">
- <input class='Text1' type='text' value='地址:{{address}}'></input>
- </view>
- <input type='text' placeholder='' bindinput="bindKeyInput"
- value='{{latitude}}' disabled></input>
- <input type='text' placeholder='' bindinput="bindKeyInput"
- value='{{longitude}}' disabled></input>
- <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>
-
- </view>
|