12345678910111213141516171819202122232425262728293031323334353637 |
- <cu-custom bgColor="bg-gradual-blue" isBack>
- <view slot="backText">返回</view>
- <view slot="content">{{title}}</view>
- </cu-custom>
- <view class="section">
- <view wx:for="{{value}}" wx:key="index" class="item margin-bottom-sm bg-white padding">
- <view class="type padding-bottom text-xl text-black">{{item.type}}</view>
- <view class="text-cut lheight text-lg">
- <text class="title">姓名</text>
- <text class=" text-grey">{{item.name}}</text>
- </view>
- <view class="text-cut lheight text-lg">
- <text class="title">手机号</text>
- <text class=" text-grey">{{item.tel}}</text>
- </view>
- <view class="text-cut lheight text-lg">
- <text class="title">贷款产品</text>
- <text class=" text-grey">{{item.laompany}}</text>
- </view>
- <view class="text-cut lheight text-lg">
- <text class="title">车型</text>
- <text class=" text-grey">{{item.vmodel}}</text>
- </view>
- <view class="text-cut lheight text-lg">
- <text class="title">车辆发票金额</text>
- <text class="text-grey text-price">{{item.invioce}}</text>
- </view>
- <view class="text-cut lheight text-lg">
- <text class="title">申请贷款金额</text>
- <text class="text-price text-grey">{{item.lamount}}</text>
- </view>
- <view class="btns">
- <button wx:for="{{btns}}" wx:if="{{item.type==type}}"
- class="cu-btn round bg-blue button-hover margin-left margin-top" wx:key="index">{{item.name}}</button>
- </view>
- </view>
- </view>
|