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.
git/scr/miniprogram-2/pages/usercenter/person-info/index.wxml

60 lines
1.3 KiB

<t-cell-group class="person-info">
<t-cell
title="头像"
center="{{true}}"
data-type="avatarUrl"
bind:click="onClickCell"
arrow
t-class-left="order-group__left"
>
<t-image
slot="note"
src="{{personInfo.avatarUrl}}"
t-class="avatarUrl"
mode="aspectFill"
/>
</t-cell>
<t-cell
title="昵称"
arrow
note="{{personInfo.nickName}}"
data-type="name"
bind:click="onClickCell"
t-class="t-cell-class"
t-class-left="order-group__left"
/>
<t-cell
title="性别"
arrow
note="{{genderMap[personInfo.gender]}}"
data-type="gender"
bind:click="onClickCell"
t-class="t-cell-class"
t-class-left="order-group__left"
/>
<t-cell
title="手机号"
arrow
note="{{personInfo.phoneNumber ? personInfo.phoneNumber : '去绑定手机号'}}"
data-type="phoneNumber"
bind:click="onClickCell"
t-class="t-cell-class"
t-class-left="order-group__left"
/>
</t-cell-group>
<view class="person-info__wrapper">
<view class="person-info__btn" bind:tap="openUnbindConfirm">
切换账号登录
</view>
</view>
<t-select-picker
show="{{typeVisible}}"
picker-options="{{pickerOptions}}"
title="选择性别"
value="{{personInfo.gender}}"
bind:confirm="onConfirm"
bind:close="onClose"
/>
<t-toast id="t-toast" />