ts_aimz/pages/mine/mineAccount/mineInfo/mineInfo.wxml
2025-05-13 15:06:17 +08:00

22 lines
1.0 KiB
Plaintext

<view class="page-container">
<view class="info-container">
<view class="item">
<text class="item-title" decode>姓&emsp;&emsp;名</text>
<view class="item-content">
<input value="{{userInfo.userInfoName}}" bindinput="inputName" placeholder="请输入姓名" />
</view>
</view>
<view class="item">
<view class="item-title">联系电话</view>
<view class="item-content">
<input value="{{userInfo.contactPhone}}" bindinput="inputPhone" type="number" placeholder="请输入联系电话" />
</view>
</view>
</view>
<view class="bottom-fixed-footer">
<view class="bottom-btn-green" bind:tap="doUpdateInfo">保存</view>
</view>
</view>
<mp-toptips msg="{{errorHint}}" delay="2000" type="error" show="{{showError}}"></mp-toptips>
<mp-toptips msg="{{successHint}}" delay="2000" type="success" show="{{showSuccess}}"></mp-toptips>
<mp-toptips msg="{{infoHint}}" type="info" delay="3000" show="{{showInfo}}"></mp-toptips>