更新羽声语音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,6 +1,5 @@
<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 || baseBgUrl}')`}">
<headerHeight />
<navBar :navTitle="`历史记录`">
</navBar>
@@ -12,6 +11,7 @@
<script>
import headerHeight from '@/component/headerHeight.vue';
import baseBgUrl from '@/static/image/general/fy_bg.jpg';
import http from '@/until/http.js';
import navBar from '@/component/nav.vue';
import tableView from '@/component/newTable.vue'
@@ -24,6 +24,7 @@ export default {
data() {
return {
guildId: null,
baseBgUrl,
dataList: [],
pageConfig: {
currentPage: 1,
@@ -31,7 +32,7 @@ export default {
},
searchParams: {
guild_id: 0,
token: uni.getStorageSync('token') ?? ''
token: uni.getStorageSync('token') || ''
},
ThemeData: null
}