更新羽声语音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

@@ -1,11 +1,11 @@
<template>
<view class="view-page" :style="{backgroundImage : `url('${ThemeData?.app_bg ?? 'https://vespa.qxmier.com/image/bg.png'}')`}">
<view class="view-page" :style="{backgroundImage : `url('${ThemeData?.app_bg || $config.PRIMARY_BGURL}')`}">
<headerHeight />
<navBar :navTitle="`公会补贴`">
<template #rightView>
<view class="icon-right flex-line" @click="exit"
v-if="detailData && leaderStatus" >
<view @click="historyRecord" class="font-24" style="color:#FF8ACC;white-space: nowrap">
<view @click="historyRecord" class="font-24 minUnicon" style="white-space: nowrap">
历史记录
</view>
</view>
@@ -17,8 +17,7 @@
<view class="color-3 font-w500 font-32">
{{data.name}}
</view>
<view class="font-28" :style="{'color' : data.status_str === '已发放' ? '#999' : '#45D08C'}">
{{data.status_str}}
<view class="font-28" :style="{'color' : data.status_str === '已发放' ? '#999' : '#DEB52E'}">
</view>
</view>
<view class="line">
@@ -54,7 +53,7 @@
detailData: null,
searchParams: {
guild_id: 0,
token: uni.getStorageSync('token') ?? '',
token: uni.getStorageSync('token') || '',
},
ThemeData:null
}
@@ -96,6 +95,9 @@
// background-image: url('@/static/image/help/bg.png');
background-repeat: no-repeat;
background-size: 100% 100%;
.minUnicon{
color: var(--primary-color);
}
.content-view{
padding: 0 24rpx;
}
@@ -103,7 +105,7 @@
margin-top: 40rpx;
}
.cumulative {
color: #FF8ACC;
color: var(--primary-color);
}
.line {
@@ -113,8 +115,7 @@
}
.subsidy {
color: #0DFFB9;
color: var(--warn-color);
}
}
</style>