1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="main" style="height:{{infoHeight}}px;">
- <view class="one">
- <form bindsubmit="onSubmit" catchreset="onReset">
- <view class="content" style="display: none;">
- <view class="left">
- <text class="icon iconfont icon-quxiantongxunlu"></text>
- </view>
- <view class="right">
- <input name="county_id" value="{{form.county_id}}" disabled></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-quxiantongxunlu"></text>
- </view>
- <view class="right">
- <picker class="picker" bindchange="countyChange" name="county_name" value="{{form.county_name}}" range="{{countyList}}" range-key="name">
- <view>{{form.county_name||'选择所属区县'}}</view>
- </picker>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-xingming"></text>
- </view>
- <view class="right">
- <input name="name" value="{{form.name}}" placeholder='请输入姓名' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-dianhua"></text>
- </view>
- <view class="right">
- <input type='number' name="phone" value="{{form.phone}}" maxlength="11" placeholder='请输入联系电话' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-dianziyouxiang1"></text>
- </view>
- <view class="right">
- <input name="email" value="{{form.email}}" placeholder='请输入电子邮箱' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-dizhi"></text>
- </view>
- <view class="right">
- <input name="address" value="{{form.address}}" placeholder='请输入联系地址' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="save">
- <button type="warn" size="mini" formType="reset">取消保存</button>
- <button type="primary" size="mini" formType="submit">提交保存</button>
- </view>
- </form>
- </view>
- </view>
- </mobile-main>
|