12345678910111213141516171819202122232425262728293031323334353637 |
- <!--logs.wxml-->
- <view class="registeredBox">
- <view class="itemBox">
- <t-input label="slot" model:value="{{name}}"><text slot="label">姓名<text style="color: #e34d59"> *</text></text></t-input>
- <t-input label="slot" model:value="{{email}}"><text slot="label">账号<text style="color: #e34d59"> *</text></text></t-input>
- <t-input label="slot" type="password" model:value="{{password}}"><text slot="label">密码<text style="color: #e34d59"> *</text></text></t-input>
- <t-input label="slot" model:value="{{nickname}}"><text slot="label">昵称<text style="color: #e34d59"> *</text></text></t-input>
- <t-input label="slot" model:value="{{mobile}}"><text slot="label">手机号<text style="color: #e34d59"> *</text></text></t-input>
- <t-input label="性别" model:value="{{sex_zh}}" bindtap="selectSex" disabled/>
- <t-input wx:if="{{user_type === 'FL002'}}" label="slot" model:value="{{car}}"><text slot="label">车牌号<text style="color: #e34d59"> *</text></text></t-input>
- <t-input wx:if="{{user_type == 'FL001' && user_type}}" label="slot" model:value="{{address}}"><text slot="label">地址<text style="color: #e34d59"> *</text></text></t-input>
- <t-input wx:if="{{user_type !== 'FL001' && user_type}}" label="slot" model:value="{{address}}"><text slot="label">回收站<text style="color: #e34d59"> *</text></text></t-input>
- </view>
- <view class="btnBox">
- <t-button class="content-margin-left" bind:tap="userSave" theme="primary">保存</t-button>
- </view>
- </view>
- <t-picker
- visible="{{sexVisible}}"
- title="选择性别"
- cancelBtn="取消"
- confirmBtn="确认"
- bindchange="onPickerChange"
- bindconfirm="onPickerConfirm"
- bindcancel="onPickerCancel"
- >
- <t-picker-item options="{{sexs}}" value="{{sex}}" bindchange="onColumnChange"></t-picker-item>
- </t-picker>
- <t-toast id="t-toast" />
|