1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <cu-custom bgColor="bg-gradual-blue">
- <view slot="content">新增填报</view>
- </cu-custom>
- <view class="section">
- <form class="form">
- <view class="cu-bar bg-white solid-bottom">
- <view class="action">
- <text class="cuIcon-title text-orange "></text>
- <view>
- <view class="text-xl text-black"><text>车辆和贷款信息</text> <text class="text-red">(必填)</text></view>
- <view class="text-sm">机动车及与车辆相关的物理附属设备、服务、水费等 </view>
- </view>
- </view>
- </view>
- <view class="cu-form-group">
- <view class="title">车型</view>
- <input name="car" placeholder="请输入车型"></input>
- </view>
- <view class="cu-bar bg-white solid-bottom">
- <view class="action">
- <text class="cuIcon-title text-orange "></text>
- <view>
- <view class="text-xl text-black"><text>申请人基本信息</text> <text class="text-red">(必填)</text></view>
- </view>
- </view>
- </view>
- <view class="cu-bar bg-white solid-bottom">
- <view class="action">
- <text class="cuIcon-title text-orange "></text>
- <view>
- <view class="text-xl text-black"><text>紧急联系人信息</text> <text class="text-red">(必填)</text></view>
- </view>
- </view>
- </view>
- <view class="cu-bar bg-white solid-bottom">
- <view class="action">
- <text class="cuIcon-title text-orange "></text>
- <view>
- <view class="text-xl text-black"><text>共同借款人信息</text> <text class="text-red">(必填)</text></view>
- </view>
- </view>
- </view>
- </form>
- </view>
- <!-- 功能栏 -->
- <van-goods-action>
- <van-goods-action-button type="warning" bind:click="saveFunc" text="保存" />
- <van-goods-action-button bind:click="submitFunc" text="提交" />
- </van-goods-action>
|