loans.wxml 515 B

123456789101112131415161718192021
  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="conent"
  9. styleSheet="height:{{windowh-headerheight}}rpx;"
  10. scroll-y="{{selectbar==''?'true':'false'}}"
  11. >
  12. <view class="page-content">
  13. <image src="../../img/loans.png"/>
  14. </view>
  15. <navigator
  16. open-type="navigate"
  17. class="to_loan"
  18. url="../myloan/myloan">
  19. 好一车贷款计算器
  20. </navigator>
  21. </page-scroll>