index.wxml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <cu-custom bgColor="bg-gradual-blue">
  2. <view slot="content">新增填报</view>
  3. </cu-custom>
  4. <view class="section">
  5. <form class="form">
  6. <view class="cu-bar bg-white solid-bottom">
  7. <view class="action">
  8. <text class="cuIcon-title text-orange "></text>
  9. <view>
  10. <view class="text-xl text-black"><text>车辆和贷款信息</text> <text class="text-red">(必填)</text></view>
  11. <view class="text-sm">机动车及与车辆相关的物理附属设备、服务、水费等 </view>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="cu-form-group">
  16. <view class="title">车型</view>
  17. <input name="car" placeholder="请输入车型"></input>
  18. </view>
  19. <view class="cu-bar bg-white solid-bottom">
  20. <view class="action">
  21. <text class="cuIcon-title text-orange "></text>
  22. <view>
  23. <view class="text-xl text-black"><text>申请人基本信息</text> <text class="text-red">(必填)</text></view>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="cu-bar bg-white solid-bottom">
  28. <view class="action">
  29. <text class="cuIcon-title text-orange "></text>
  30. <view>
  31. <view class="text-xl text-black"><text>紧急联系人信息</text> <text class="text-red">(必填)</text></view>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="cu-bar bg-white solid-bottom">
  36. <view class="action">
  37. <text class="cuIcon-title text-orange "></text>
  38. <view>
  39. <view class="text-xl text-black"><text>共同借款人信息</text> <text class="text-red">(必填)</text></view>
  40. </view>
  41. </view>
  42. </view>
  43. </form>
  44. </view>
  45. <!-- 功能栏 -->
  46. <van-goods-action>
  47. <van-goods-action-button type="warning" bind:click="saveFunc" text="保存" />
  48. <van-goods-action-button bind:click="submitFunc" text="提交" />
  49. </van-goods-action>