25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
<nav-bar navbar-data='{{nvabarData}}'></nav-bar>
|
|
<view class='home-page' style='padding-top: {{height}}px'>
|
|
<view>
|
|
<view class="item firstItem">
|
|
<view class="title">
|
|
<text class='titleCell'>站员姓名</text>
|
|
</view>
|
|
<view class="name">
|
|
<input value="{{name}}" maxlength='{{12}}' placeholder='请输入站员姓名' bindinput='bindNameInput' />
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title">
|
|
<text class='titleCell'>手机号码</text>
|
|
</view>
|
|
<view class="name">
|
|
<input value="{{phone}}" maxlength='{{11}}' placeholder='请输入站员手机号码' bindinput='bindPhoneInput' />
|
|
</view>
|
|
</view>
|
|
<view class="btnList">
|
|
<view class="cancelBtn" bind:tap="cancelBtnHandle">取消</view>
|
|
<view class="confirmBtn {{confirmBtn?'confirmBtnEdit':'confirmBtn'}}" bind:tap="confirmBtnHandle" >{{confirmName}}</view>
|
|
</view>
|
|
</view>
|
|
</view> |