forked from qq865738120/easyUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
article.wxml
33 lines (31 loc) · 1.1 KB
/
article.wxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!--article/article.wxml-->
<import src="/towxml/entry.wxml"/>
<view wx:if="{{ isLoading }}" class='loading'>
<e-loading type='wave' color='#36BCBC'/>
<view style='font-size: 28rpx; color: #666; margin-top: 30rpx;'>本文由cutey.net.cn提供</view>
</view>
<block wx:else>
<view class='title'>{{ title }}</view>
<view class='author'>{{ author }}</view>
<view class='sub'>
<e-enhance-text
icon-cus='iconfont icon-chakan'
titleFontSize='26'
title='{{ watch }}'>
</e-enhance-text>
<text style='color: #999; font-size: 24rpx;'>{{ time }}</text>
</view>
<template is="entry" data="{{...content}}"/>
<e-suspension-button
bindbuttontap='onSuspensionTap'
openType='{{ isShare ? "" : "share" }}'
top='900'
left='650'
img-cus='iconfont {{ isShare ? "icon-shouye1" : "icon-fenxiangkaobei" }}'
imgMargin='26'
color='rgba(254, 144, 54, 0.35)'
theme='shine1'
removable='true'>
</e-suspension-button >
<text style='color: #a8a8a8; width: 100%; text-align: center; margin: 60rpx 0 40rpx 0'>成为博主,请立即访问cutey.net.cn</text>
</block>