1234567891011121314151617181920212223 |
- <navigationBar bind:reload='requestAgain'></navigationBar>
- <view class="worksBox">
- <view class="itemize">
- <view class="box" bindtap="jump" data-type='my'>
- <image src="/static/works-1.png" class="img" />
- <view class="count">{{count.myReadCount}}</view>
- </view>
- <view class="box" bindtap="jump" data-type='follow'>
- <image src="/static/works-2.png" class="img" />
- <view class="count">{{count.myFansReadCount}}</view>
- </view>
- <view class="box" bindtap="jump" data-type='collect'>
- <image src="/static/works-3.png" class="img" />
- <view class="count">{{count.myFavoritesCount}}</view>
- </view>
- </view>
- <!-- 优秀作品展播-->
- <view class="logo">
- <!-- <image src="/static/works.png" class="icon" /> -->优秀作品展播
- </view>
- <worksList id="worksList" worksList="{{list}}" videoType="public" tabBarPadding='true' autoPlay='{{true}}' />
- </view>
- <canvas id='share' type="2d"> </canvas>
|