|
@@ -1,12 +1,27 @@
|
|
|
<wxs module="format" src="../../wxs/until.wxs"></wxs>
|
|
|
<view class="browse">
|
|
|
<van-row>
|
|
|
- <van-col span="12">传播量:{{format.formatNumber(getData.total.play_count)}}</van-col>
|
|
|
- <van-col span="12">发稿量:{{format.formatNumber(getData.total.all)}}条</van-col>
|
|
|
+ <van-col span="12" data-title="传播量" bindtap="showDetail">
|
|
|
+ 传播量:{{format.formatNumber(getData.total.play_count)}}
|
|
|
+ <van-icon color="#1AB6FF" name="warning-o" />
|
|
|
+ </van-col>
|
|
|
+ <van-col span="12">
|
|
|
+ <!-- <van-col span="12" data-title="发稿量" bindtap="showDetail"> -->
|
|
|
+ 发稿量:{{format.formatNumber(getData.total.all)}}条
|
|
|
+ <!-- <van-icon color="#1AB6FF" name="warning-o" /> -->
|
|
|
+ </van-col>
|
|
|
</van-row>
|
|
|
<van-row>
|
|
|
- <van-col span="12">点赞量:{{format.formatNumber(getData.total.digg_count)}}</van-col>
|
|
|
- <van-col span="12">评论量:{{format.formatNumber(getData.total.comment_count)}}条</van-col>
|
|
|
+ <van-col span="12">
|
|
|
+ <!-- <van-col span="12" data-title="点赞量" bindtap="showDetail"> -->
|
|
|
+ 点赞量:{{format.formatNumber(getData.total.digg_count)}}
|
|
|
+ <!-- <van-icon color="#1AB6FF" name="warning-o" /> -->
|
|
|
+ </van-col>
|
|
|
+ <van-col span="12">
|
|
|
+ <!-- <van-col span="12" data-title="评论量" bindtap="showDetail"> -->
|
|
|
+ 评论量:{{format.formatNumber(getData.total.comment_count)}}条
|
|
|
+ <!-- <van-icon color="#1AB6FF" name="warning-o" /> -->
|
|
|
+ </van-col>
|
|
|
</van-row>
|
|
|
</view>
|
|
|
<van-cell wx:if="{{eclook.show}}" title="发稿平台" />
|
|
@@ -37,6 +52,27 @@
|
|
|
<view wx:if="{{portrait.show}}" class="f2-chart">
|
|
|
<ec-canvas id="bar" width="{{width}}" height="{{height[3]}}" canvas-id="mychart-bar" ec="{{ portrait }}"></ec-canvas>
|
|
|
</view>
|
|
|
-<view wx:if="{{getData.total}}" style="padding: 0 30rpx">
|
|
|
- <van-divider contentPosition="center" fontSize="10">以上数据每周五17:00更新</van-divider>
|
|
|
-</view>
|
|
|
+
|
|
|
+<cover-view wx:if="{{diglogTitle}}" class="modolBg">
|
|
|
+ <cover-view class="local_dialog">
|
|
|
+ <cover-view class="local_dialog_title">
|
|
|
+ <cover-view class="local_dialog_close" bindtap="showDetail">
|
|
|
+ <cover-view class="local_dialog_close_left"></cover-view>
|
|
|
+ <cover-view class="local_dialog_close_right"></cover-view>
|
|
|
+ </cover-view>
|
|
|
+ <cover-view class="title">
|
|
|
+ {{diglogTitle}}
|
|
|
+ </cover-view>
|
|
|
+ </cover-view>
|
|
|
+ <cover-view class="local_dialog_body">
|
|
|
+ <cover-view style="padding-right:5px;white-space:pre-wrap;line-height: 1.5em;width:490rpx;margin: 0 auto;">
|
|
|
+ <cover-view wx:key="id" wx:for="{{detailList}}">
|
|
|
+ <cover-view style="line-height:1.8em;font-weight: bold;">{{item.platform}}:</cover-view>
|
|
|
+ <cover-view style="line-height:1.8em" wx:key="id" wx:for="{{item.list || []}}" wx:for-item="v"
|
|
|
+ wx:for-index="i">{{v.title}}:{{format.formatNumber(v.play_count)}}</cover-view>
|
|
|
+ </cover-view>
|
|
|
+ </cover-view>
|
|
|
+ <cover-view style="height:25px"></cover-view>
|
|
|
+ </cover-view>
|
|
|
+ </cover-view>
|
|
|
+</cover-view>
|