loans.wxml 544 B

1234567891011121314151617181920212223
  1. <!--pages/loans/loans.wxml-->
  2. <import src="../../module/header.wxml"/>
  3. <template
  4. is="header"
  5. data="{{title:'我要贷款',headerheight:headerheight,hasback:true}}"
  6. />
  7. <page-scroll
  8. className="content"
  9. styleSheet="height:{{windowh-headerheight}}rpx;"
  10. scroll-y="{{selectbar==''?'true':'false'}}"
  11. >
  12. <view>
  13. <view class="page-content">
  14. <image src="../../img/loans.png"/>
  15. </view>
  16. <navigator
  17. open-type="navigate"
  18. class="to_loan"
  19. url="../myloan/myloan">
  20. 第一好车贷款计算器
  21. </navigator>
  22. </view>
  23. </page-scroll>