This commit is contained in:
yziiy
2025-08-13 10:39:47 +08:00
parent da65fde285
commit 125ab7ab9d
22 changed files with 3684 additions and 1045 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view class="view-page">
<view class="view-page" :style="{backgroundImage : `url('${ThemeData?.app_bg ?? 'https://vespa.qxmier.com/image/bg.png'}')`}">
<!-- <headerHeight /> -->
<navBar :navTitle="'查看成员'" :style="{marginTop: `${statusBarHeight}${uni.getSystemInfoSync().platform === 'ios' ? 'px': 'dp'}`}">
</navBar>
@@ -51,7 +51,8 @@
},
loading:false,
noMore:true,
dataList: []
dataList: [],
ThemeData:null
}
},
onLoad(options) {
@@ -62,6 +63,9 @@
this.guildId = guildId
this.statusBarHeight = h || uni.getStorageSync('BarHeight')
if(this.guildId) this.getList()
if (uni.getStorageSync('Theme_Data')) {
this.ThemeData = JSON.parse(uni.getStorageSync('Theme_Data'))
}
},
methods: {
jumpHomePage(data){
@@ -130,7 +134,6 @@
return
}
}
console.log(this.dataList)
},
}
}
@@ -141,7 +144,7 @@
// padding: 32rpx;
display: flex;
flex-direction: column;
background-image: url('@/static/image/help/bg.png');
// background-image: url('@/static/image/help/bg.png');
background-repeat: no-repeat;
background-size: 100% 100%;
min-height: 100vh;