apply.wxml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <view class='gcs-box'>
  2. <!-- 个人资料 -->
  3. <view class="gcs-info card">
  4. <form bindsubmit="formSubmit">
  5. <view class="card-header">
  6. <view class="title">xxx申请</view>
  7. </view>
  8. <view class="card-body">
  9. <view class="info-item">
  10. <view class="item-title">店铺名称</view>
  11. <view class="item-content">
  12. <input name="head_name" value="{{headInfo.head_name}}" bindfocus="iptFocus" bindblur="iptBlur" data-name="headName" placeholder="请输入团长名称" />
  13. </view>
  14. </view>
  15. <view class="info-item">
  16. <view class="item-title">老板名称</view>
  17. <view class="item-content">
  18. <input name="boss_name" value="{{headInfo.boss_name}}" bindfocus="iptFocus" bindblur="iptBlur" data-name="bossName" placeholder="请输入团长名称" />
  19. </view>
  20. </view>
  21. <view class="bot-line {{currentFocus=='bossName'?'focus':''}}"></view>
  22. <view class="info-item">
  23. <view class="item-title">手机号</view>
  24. <view class="item-content">
  25. <input name="head_mobile" type="number" value="{{headInfo.head_mobile}}" bindfocus="iptFocus" bindblur="iptBlur" data-name="headMobile" placeholder="请输入手机号" />
  26. </view>
  27. </view>
  28. <view class="bot-line {{currentFocus=='headMobile'?'focus':''}}"></view>
  29. <view class='info-item'>
  30. <view class="item-title">营业执照(图片)</view>
  31. <i-choose-image bind:on-changeImage="changeImg" bind:on-chooseImage="chooseImage" imgMax="{{imgMax}}" key="evaluate" token="{{token}}"></i-choose-image>
  32. </view>
  33. <view class='info-item'>
  34. <view class="item-title">其他证件(图片)</view>
  35. <component-choose-image bind:on-changeImage="changeImgOther" bind:on-chooseImage="chooseImageOther" imgMax="{{imgMax}}" key="other" token="{{token}}"></component-choose-image>
  36. </view>
  37. </view>
  38. <view class="edit-btn">
  39. <button loading="{{btnLoading}}" form-type="submit">保存</button>
  40. </view>
  41. </form>
  42. </view>
  43. </view>