更新羽声语音h5

This commit is contained in:
yziiy
2025-10-23 16:04:28 +08:00
parent f77801f9a1
commit 4fc72fbffe
228 changed files with 5384 additions and 4065 deletions

View File

@@ -14,10 +14,6 @@
@click="toggleSort"
>
<text>时间</text>
<!-- <view class="sort-icon">
<text v-if="sortOrder === 'asc'"></text>
<text v-else-if="sortOrder === 'desc'"></text>
</view> -->
</view>
<view class="header-item">累计流水</view>
<view class="header-item">获得补贴</view>
@@ -33,7 +29,7 @@
<view class="row-item">{{ item.total_transaction }}</view>
<view class="row-item">{{ item.subsidy_amount }}</view>
<view class="row-item">
<text :class="'status-' + item.status">{{ item.status_str }}</text>
<text :class="`status-${item.status_str === '已发放' ? 0 : 1}`">{{ item.status_str }}</text>
</view>
</view>
@@ -202,13 +198,12 @@ export default {
}
.status-0 {
color: #FF9900;
color: #999;
}
.status-1 {
color: #19be6b;
color: var(--subss-color);
}
.status-2 {
color: #FA3534;
}