拓恒河湖长制全民护河平台WEB端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
2.3KB

  1. <!--package_mine/pages/approveId/index.wxml-->
  2. <view class="approve_container">
  3. <text class="approve_title">请提交你的申请信息</text>
  4. <view class="form_container">
  5. <view class="form_item {{formRules.applyName.warning ? 'warning' : ''}}">
  6. <text><text style="color: red;">* </text>姓名:</text>
  7. <view class="value_box">
  8. <input style="width: 100%;height: 100%;" type="text" maxlength="100" placeholder="请输入您的姓名" placeholder-style="font-size: 24rpx; color: #A6A6A6;" adjust-position="{{true}}" value="{{form.applyName}}" data-name="applyName" name="applyName" bindblur="bindValue" />
  9. </view>
  10. <text class="tips">请输入您的姓名</text>
  11. </view>
  12. <view class="form_item {{formRules.applyPhone.warning ? 'warning' : ''}}">
  13. <text><text style="color: red;">* </text>电话:</text>
  14. <view class="value_box">
  15. <input style="width: 100%;height: 100%;" maxlength="11" type="text" placeholder="请输入您的电话" placeholder-style="font-size: 24rpx; color: #A6A6A6;" adjust-position="{{true}}" value="{{form.applyPhone}}" data-name="applyPhone" name="applyPhone" bindblur="bindValue" />
  16. </view>
  17. <text class="tips">请输入您的电话</text>
  18. </view>
  19. <view class="use_purpose">
  20. <text>申请理由:</text>
  21. <textarea maxlength="200" style="width:460rpx; height: 160rpx;" type="text" adjust-position="{{true}}" placeholder="请输入申请理由" placeholder-style="font-size: 24rpx; color: #A6A6A6;" value="{{form.applyRemark}}" data-name="applyRemark" name="applyRemark" bindblur="bindValue" />
  22. <text class="tips">请输入申请理由</text>
  23. </view>
  24. </view>
  25. <view class="safe_box">
  26. <label class="checkbox" bindtap="checkBoxChange">
  27. <checkbox value="{{checkAgree}}" /><text>同意</text>
  28. </label>
  29. <text style="color: #2a82e4;" bindtap="showAgree">《用户服务协议》</text>和<text style="color: #2a82e4;" bindtap="showConceal">《隐私政策》</text>
  30. </view>
  31. <view class="btn_list">
  32. <button disabled="{{!checkAgree}}" class="btn_item submit_btn" bindtap="submit">确认</button>
  33. <button class="btn_item cancel_btn" bindtap="returnLastPage">取消</button>
  34. </view>
  35. </view>