1234567891011121314151617181920212223242526272829303132 |
- <import src="../../module/header.wxml"/>
- <template
- is="header"
- data="{{title:'好车热点',headerheight:headerheight,hasback:true}}"
- />
- <page-scroll
- className="conent"
- styleSheet="height:{{contentheight}}px;"
- scroll-y="true"
- >
- <view class="hotdt_c">
- <view class="hotdt_title">
- {{title}}
- </view>
- <view class="hotdt_author">
- <image class="hotdt_author_img" src="../../img/logo.png"/>
- <view class="hotdt_author_dt">
- <view class="hotdt_author_name">{{author}}</view>
- <view class="hotdt_author_time">
- {{time}}
- <image class="hot_car_image" src="../../img/eye.png"/>
- {{views}}
- </view>
- </view>
- </view>
- <view class="hotdt_content">
- <rich-text
- nodes="{{content}}">
- </rich-text>
- </view>
- </view>
- </page-scroll>
|