doctorInfo.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <cu-custom bgColor="bg-color" isBack="{{true}}" title="请选择您的身份">
  2. <!-- <view slot="content">请选择您的身份</view> -->
  3. </cu-custom>
  4. <view class="doc_top">
  5. <view>未认证,请填写资料申请认证<text>此认证信息仅用于平台审核</text></view>
  6. <image src="/img/doctor_img1.png"></image>
  7. </view>
  8. <form bindsubmit="formSubmit">
  9. <view class="info_card">
  10. <view class="info_item">
  11. <view class="info_label">真实姓名</view>
  12. <input class="info_input" name="username" placeholder="请输入真实姓名" type='text'></input>
  13. </view>
  14. <view class="info_item">
  15. <view class="info_label">身份证号码</view>
  16. <input class="info_input" name="idCard" placeholder="请输入正确的身份证号码" type='text' bindinput='setCode' value='{{code}}'></input>
  17. </view>
  18. </view>
  19. <view class="info_card">
  20. <view class="info_item">
  21. <view class="info_label">从业单位</view>
  22. <picker mode="selector" bindchange="setHospitalType" value="{{hospital}}" range="{{hospItalList}}"
  23. range-key="name" name="hospitalId">
  24. <view class="picker">
  25. {{hospital ? hospItalList[hospital].name : '请选择'}}
  26. </view>
  27. </picker>
  28. </view>
  29. <view class="info_item">
  30. <view class="info_label">工作证件/执业证</view>
  31. <view class="doc_imgUpload" bindtap="chooseImageTap">
  32. <image src="{{imageUrl || '/img/doctor_img2.png'}}"></image>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="phone_btm">
  37. <!-- <view class="phone_btn1">完成</view> -->
  38. <button class="phone_btn1" form-type="submit">完成</button>
  39. </view>
  40. </form>