You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
2.1 KiB
Plaintext

<view class="index">
<t-sticky>
<t-tabs value="{{tab}}" bind:change="onTabsChange">
<t-tab-panel wx:for="{{tabs}}" label="{{item}}" value="{{index}}" />
</t-tabs>
</t-sticky>
<view style="padding-bottom: 50rpx;">
<view class="list" wx:for="{{sendList}}">
<t-cell note="{{tab == 0 ? '提交时间:' + item.updateDateTime : item.jtTeamName}}" bordered="{{false}}">
<text style="color: {{item.feedback === 1 ? 'red' : '#000'}};" slot="title">{{item.jtUserName}}</text>
</t-cell>
<view class="progress" wx:if="{{item.jtType == 1 && tab == 0}}">
<t-icon wx:if="{{!item.isPlay}}" color="#0052d9" style="margin-right: 10rpx;" name="play-circle-filled" size="60rpx" data-index="{{index}}" bind:click="innerAudioRowStart" />
<t-icon wx:if="{{item.isPlay}}" color="#0052d9" style="margin-right: 10rpx;" name="stop-circle-filled" size="60rpx" data-index="{{index}}" bind:click="innerAudioRowStop" />
<text style="margin-right: 10rpx;">{{item.time}}</text>
<t-slider style="flex: 1;" value="{{item.percentage}}" step="{{0.1}}" data-index="{{index}}" bind:change="handleChange" />
<text>{{item.durationTxt}}</text>
<!-- <t-progress percentage="{{item.percentage}}" label="{{item.durationTxt}}" /> -->
</view>
<view style="width: 100%;" wx:if="{{item.jtType != 1 && tab == 0}}">
<t-image wx:for="{{item.imageUrls}}" wx:for-item="subItem" wx:for-index="subIndex" style="float: left;margin-left: 20rpx;margin-bottom: 30rpx;" src="{{subItem}}" data-images="{{item.imageUrls}}" data-index="{{subIndex}}" mode="aspectFill" width="72" height="72" bindtap="clickHandle" />
</view>
<view wx:if="{{item.remark}}" style="margin-bottom: 20rpx;margin-left: 32rpx;width: 100%;">
<text style="font-size: 32rpx;">备注:{{item.remark}}</text>
</view>
</view>
<view wx:if="{{sendList.length == 0}}">
<t-empty icon="file" description="暂无数据" />
</view>
</view>
</view>