12345678910111213141516171819202122232425262728293031323334353637383940 |
- <wxs src="../../utils/filter.wxs" module="filters" />
- <view class="pkResult">
- <view class="body">
- <view class="userBox left">
- <image src="" class="avatar avatarL" />
- <view class="bodyTitle textOver">名字名字名字</view>
- <view class="bodyScore">100分</view>
- <view class="duration">
- <image src="{{vState?'/static/play-big2.png':'/static/play-big.png'}}" class="bodyPlay"
- bindtap="playAudio" data-type="victory" />
- <view class="time">{{vStart}}/{{vEnd}}</view>
- </view>
- </view>
- <view class="userBox right">
- <image src="" class="avatar avatarL" />
- <view class="bodyTitle textOver">名字名字名字</view>
- <view class="bodyScore">100分</view>
- <view class="duration">
- <image src="{{vState?'/static/play-big2.png':'/static/play-big.png'}}" class="bodyPlay"
- bindtap="playAudio" data-type="victory" />
- <view class="time">{{vStart}}/{{vEnd}}</view>
- </view>
- </view>
- </view>
- <view class="footer" wx:if="{{!isplayback}}">
- <view class="stBtn" bindtap="result" data-type="reading">
- <image src="/static/pr1.png" class="imgBtn" />
- <view class="text">重新调整</view>
- </view>
- <button class="resetBtn stBtn" open-type="share">
- <image src="/static/pr2.png" class="imgBtn" />
- <view class="text" style="color: #AC2A00;">炫耀一下</view>
- </button>
- </view>
- <view class="footer" wx:else>
- <view class="stBtn" bindtap="result" data-type="wantPlay">我也要玩</view>
- <view class="btn" bindtap="result" data-type="index">回到首页</view>
- </view>
- </view>
- <canvas id='share' type="2d"> </canvas>
|