1234567891011121314151617181920212223 |
- <!--pages/loans/loans.wxml-->
- <import src="../../module/header.wxml"/>
- <template
- is="header"
- data="{{title:'我要贷款',headerheight:headerheight,hasback:true}}"
- />
- <page-scroll
- className="content"
- styleSheet="height:{{contentheight}}px;"
- scroll-y="{{selectbar==''?'true':'false'}}"
- >
- <view>
- <view class="page-content">
- <image src="../../img/loans.png"/>
- </view>
- <navigator
- open-type="navigate"
- class="to_loan"
- url="../myloan/myloan">
- 第一好车贷款计算器
- </navigator>
- </view>
- </page-scroll>
|