63 lines
2.0 KiB
XML
63 lines
2.0 KiB
XML
<view class="container">
|
|
<view class="section">
|
|
<view class="section-title">认证信息</view>
|
|
<view class="input-row">
|
|
<text class="label">姓名</text>
|
|
<input class="input" placeholder="请输入姓名" onInput="businessName"/>
|
|
</view>
|
|
<view class="input-row">
|
|
<text class="label">性别</text>
|
|
<input class="input" placeholder="请输入性别" onInput="xingbie"/>
|
|
</view>
|
|
<view class="input-row">
|
|
<text class="label">电子邮箱</text>
|
|
<input class="input" placeholder="请输入电子邮箱" onInput="person" />
|
|
<icon type="eye" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="section">
|
|
|
|
|
|
<view class="input-row">
|
|
<text class="label">联系方式</text>
|
|
<input class="input" placeholder="请输入联系人电话" onInput="phone"/>
|
|
</view>
|
|
<view class="input-row">
|
|
<text class="label">身份证号</text>
|
|
<input class="input" placeholder="请输入身份证号" onInput="idcard"/>
|
|
</view>
|
|
<view class="input-row">
|
|
<text class="label">擅长项目</text>
|
|
<input class="input" placeholder="请输入擅长项目" onInput="shanchang"/>
|
|
</view>
|
|
<view class="box">
|
|
<ant-list-item>
|
|
请选择省市
|
|
<ant-cascader-picker
|
|
slot="extra"
|
|
placeholder="请选择归属地"
|
|
options="{{cityList}}"
|
|
onChange="handleCascaderPickerChange"
|
|
onOk="handleCascaderOnOk"
|
|
onCancel="handleDismiss"
|
|
></ant-cascader-picker>
|
|
</ant-list-item>
|
|
</view>
|
|
|
|
</view>
|
|
<view class="section">
|
|
<view class="input-row">
|
|
<text class="label">请上传美甲师证明</text>
|
|
<ant-uploader
|
|
onChange="onChange"
|
|
onUpload="{{onUpload ? onUpload : 'onUpload'}}"
|
|
uploadingText="上传中……"
|
|
uploadfailedText="上传失败"
|
|
></ant-uploader>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="tijiao">
|
|
<view class="button" onTap="ruzhu">提交申请</view>
|
|
</view> |