loans.wxml 536 B

12345678910111213141516171819202122
  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. styleSheet="height:{{windowh-headerheight}}rpx;"
  9. scroll-y="{{selectbar==''?'true':'false'}}"
  10. >
  11. <view class="content">
  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. </view>
  22. </page-scroll>