53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
<!--pages/apply/apply.wxml-->
|
|
<view class="apply-container">
|
|
<!-- 页面头部 -->
|
|
<view class="apply-header">
|
|
<text class="apply-title">加入货运团队</text>
|
|
<text class="apply-subtitle">请填写您的个人信息</text>
|
|
</view>
|
|
|
|
<!-- 表单内容 -->
|
|
<scroll-view class="apply-content" scroll-y>
|
|
<view class="apply-form">
|
|
<!-- 姓名输入 -->
|
|
<view class="apply-form-group">
|
|
<text class="apply-form-label">姓名</text>
|
|
<input
|
|
class="apply-form-input"
|
|
type="text"
|
|
value="{{applyForm.name}}"
|
|
data-field="name"
|
|
bindinput="onApplyFormInput"
|
|
placeholder="请输入您的真实姓名"
|
|
placeholder-class="apply-form-placeholder"
|
|
maxlength="20"
|
|
/>
|
|
<view class="apply-form-underline"></view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 手机号输入 -->
|
|
<view class="apply-form-group">
|
|
<text class="apply-form-label">手机号</text>
|
|
<input
|
|
class="apply-form-input"
|
|
type="number"
|
|
value="{{applyForm.phone}}"
|
|
data-field="phone"
|
|
bindinput="onApplyFormInput"
|
|
placeholder="请输入11位手机号码"
|
|
placeholder-class="apply-form-placeholder"
|
|
maxlength="11"
|
|
/>
|
|
<view class="apply-form-underline"></view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
|
|
<!-- 底部操作按钮 -->
|
|
<view class="apply-footer">
|
|
<button class="apply-btn-cancel" bindtap="onCancel">取消</button>
|
|
<button class="apply-btn-confirm" bindtap="onSubmit" form-type="submit">提交申请</button>
|
|
</view>
|
|
</view> |