index.wxml 648 B

123456789101112131415
  1. <cu-custom isBack bgColor="bg-gradual-blue">
  2. <view slot="backText">返回</view>
  3. <view slot="content">商品详情</view>
  4. </cu-custom>
  5. <view class="section" style="margin-bottom:50px">
  6. <view class="padding-xl bg-cyan">
  7. <view class="padding-xs text-white text-xl">{{value.title}}</view>
  8. <view class="padding-xs text-white">贷款期限:{{value.month}}个月</view>
  9. </view>
  10. <view wx:for="{{value.details}}" wx:key="index" class="bg-img"
  11. style="background-image: url('{{item}}');height: 414rpx;"></view>
  12. </view>
  13. <van-goods-action>
  14. <van-goods-action-button text="立即申请" bind:click="onClickButton" />
  15. </van-goods-action>