loans.wxml 548 B

12345678910111213141516171819202122
  1. <!--pages/loans/loans.wxml-->
  2. <import src="../../module/header.wxml"/>
  3. <scroll-view
  4. class="conent"
  5. style="height:{{windowh}}rpx;"
  6. scroll-y="{{selectbar==''?'true':'false'}}"
  7. bindscrolltolower="{{hasloadall?'':'getMyBuy'}}"
  8. >
  9. <template
  10. is="header"
  11. data="{{title:'我要贷款',headerheight:headerheight,hasback:true}}"
  12. />
  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. </scroll-view>