更新
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user