From 47171769ba8a7e953c870ac6b5bf24efb6a5e440 Mon Sep 17 00:00:00 2001
From: zhaojs <349234519@qq.com>
Date: 星期三, 14 六月 2023 14:41:40 +0800
Subject: [PATCH] no message

---
 uniapp/pages/rankinglist/xianbao.vue |   25 ++++++++++++++++++++++++-
 1 files changed, 24 insertions(+), 1 deletions(-)

diff --git a/uniapp/pages/rankinglist/xianbao.vue b/uniapp/pages/rankinglist/xianbao.vue
index 18dbfc6..6dbb8a5 100644
--- a/uniapp/pages/rankinglist/xianbao.vue
+++ b/uniapp/pages/rankinglist/xianbao.vue
@@ -1,15 +1,23 @@
 <template>
-	<view>
+	<view v-if="isshowtype">
+		<findPage></findPage>
+	</view>
+	<view v-else>
 		<web-view :webview-styles="webviewStyles" :src="webviewUrl" @message='received'></web-view>
 	</view>
 </template>
 
 <script>
+	import findPage from '@/components/sh_page/findPage.vue';
 	//var wv
 	export default {
+		components:{
+			findPage
+		},
 		data() {
 			return {
 				webviewUrl: '',
+				isshowtype:false,
 				webviewStyles: {
 					progress: {
 						color: '#EE1B14'
@@ -17,6 +25,21 @@
 				},
 			}
 		},
+		onShow()
+		{
+			// #ifdef APP-PLUS
+			
+			var showtar = getApp().globalData.ifwt == 1 ? false : true;
+			var platform = plus.os.name;
+			//showtar&&platform=='iOS'
+			if(showtar&&platform=='iOS')
+			{//璺宠浆new
+				this.isshowtype=true;
+				
+				return;
+			}
+			// #endif
+		},
 		onLoad(options) {
 			if(!this.hasLogin){
 				uni.reLaunch({

--
Gitblit v1.9.3