addXnb.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <wxs src='../../../utils/formatFuc.wxs' module="utils"></wxs>
  2. <view class="container">
  3. <view class="add-top" bindtap="goDetail">
  4. <view>上传新农保,享受福利</view>
  5. <van-icon name="arrow" size="20px" color="#4371ED"/>
  6. </view>
  7. <view class="xnb-content">
  8. <view class="title">
  9. <text>*</text>
  10. 请上传新农保:
  11. </view>
  12. <view class="tips">请上传清晰,无遮挡的新农保照片</view>
  13. <van-uploader file-list="{{ fileList }}" max-count="{{max}}" bind:after-read="afterRead" bind:delete="deleteImage" />
  14. <!-- <view class="title" style="margin-bottom:30rpx;">
  15. 2. 有效时间:
  16. </view> -->
  17. <!-- <view>{{startDate}}至{{endDate}}</view> -->
  18. <!-- <view class="select-date" bindtap="startPicker">
  19. <view>开始时间:{{startDate}}</view>
  20. <van-icon name="arrow" size="20px" color="#4371ED"/>
  21. </view>
  22. <view class="select-date" bindtap="endPicker">
  23. <view>结束时间:{{endDate}}</view>
  24. <van-icon name="arrow" size="20px" color="#4371ED"/>
  25. </view> -->
  26. <view class="tips">上传材料请体现:本人姓名,缴纳年度,另请注意商业保险不符合新农保政策</view>
  27. </view>
  28. <view class="submit-btn" bindtap="submit" >确认上传</view>
  29. </view>
  30. <van-popup
  31. show="{{ pickerShow }}"
  32. position="bottom"
  33. >
  34. <van-datetime-picker
  35. type="year-month"
  36. value="{{ currentDate }}"
  37. min-date="{{ minDate }}"
  38. bind:confirm="onConfirm"
  39. bind:cancel="onCancel"
  40. />
  41. </van-popup>