index.wxml 681 B

1234567891011121314
  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:{{Ios ? '50px' : '118px'}};">
  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. <image wx:for="{{value.details}}" wx:key="index" style="width: 100%;" src="{{item}}" mode="widthFix" class="image" />
  11. </view>
  12. <van-goods-action custom-class="goods-ios">
  13. <van-goods-action-button text="立即申请" bind:click="onClickButton" />
  14. </van-goods-action>