更新
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
</view>
|
||||
<view class="w-fill flex-line mt-24">
|
||||
<view class="" v-for="ele in detailData.user_list">
|
||||
<view class="image-view">
|
||||
<view class="image-view" @click="jumpHomePage(ele)">
|
||||
<img :src="ele.avatar" alt="" />
|
||||
</view>
|
||||
<view class="color-9 font-28 mt-24" style="text-align: center;">
|
||||
@@ -54,14 +54,6 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- <view class="edit-notice flex-line w-fill flex-spaceB">
|
||||
<view class="notice-title">
|
||||
设置置顶
|
||||
</view>
|
||||
<view >
|
||||
<switch checked color="#457AFF" style="transform:scale(0.7)"/>
|
||||
</view>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
@@ -148,6 +140,19 @@
|
||||
url: `/pages/union/memberList?guildId=${this.guildId}`
|
||||
});
|
||||
},
|
||||
jumpHomePage(data) {
|
||||
const platform = uni.getSystemInfoSync().platform;
|
||||
if (platform === 'ios') {
|
||||
window.webkit.messageHandlers.nativeHandler.postMessage({
|
||||
'action': 'jumpWebPage',
|
||||
'data': {
|
||||
userId: data.user_id
|
||||
}
|
||||
});
|
||||
} else if (platform === 'android') {
|
||||
window.Android.jumpWebPage(data.user_id);
|
||||
}
|
||||
},
|
||||
async confirmInfo(){
|
||||
if (this.guildName === '') {
|
||||
uni.showToast({
|
||||
|
||||
Reference in New Issue
Block a user