From 96823abe1433b1e639da1ffa45521fb58b630b46 Mon Sep 17 00:00:00 2001
From: zhaojs <349234519@qq.com>
Date: 星期六, 03 六月 2023 10:51:44 +0800
Subject: [PATCH] no message

---
 uniapp/pages/mine/mine.vue |  114 +++++++++++++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 102 insertions(+), 12 deletions(-)

diff --git a/uniapp/pages/mine/mine.vue b/uniapp/pages/mine/mine.vue
index dd7451d..9ba1257 100644
--- a/uniapp/pages/mine/mine.vue
+++ b/uniapp/pages/mine/mine.vue
@@ -81,8 +81,8 @@
 					</view>
 				</view>
 			</view>
-
 			<view class="account-assets-container rowCenCen borderBox" v-if="!showtar || platform!='iOS'">
+			
 				<view class="cardBac-container rowStaBet borderBox">
 					<view class="left-content">
 						<view class="balance">
@@ -124,19 +124,39 @@
 					</view>
 				</view>
 			</view>
-
+			
+			<view class="vip-info-container rowCenBet" v-if="!showtar || platform!='iOS'">
+			<view class="left-info" v-if="user.level != 3">
+			  鍗囩骇绛夌骇鍙嬁鏇撮珮鏀剁泭
+			</view>
+			<view class="left-info" v-else>
+			  鎮ㄥ凡缁忔槸鏈�楂樼瓑绾�,蹇幓閭�璇峰ソ鍙嬭禋浣i噾鍚�!
+			</view>
+			<view class="rt-btn rowCenCen" @tap="golevelRules()" v-if="user.level != 3">
+			  <image class="vipimg" src="../../static/images/goods/vip.png" mode="aspectFill"></image>
+			  <view class="level-txt">
+			    绔嬪嵆鍗囩骇
+			  </view>
+			</view>
+			<view class="rt-btn rowCenCen" @tap="golevelRules()" v-else>
+			  <image class="vipimg" src="../../static/images/goods/vip.png" mode="aspectFill"></image>
+			  <view class="level-txt">
+			    绔嬪嵆鏌ョ湅
+			  </view>
+			</view>
+			</view>
 			<view class="swiper-container borderBox" v-if="bannerList.length>0">
 				<swiper class="banerContent" :autoplay="true" :interval="3000" :duration="1000" circular>
 					<swiper-item v-for="(items,index) in bannerList" :key="index" @tap="goUrl(items)">
 						<view class="swiper-items defIcon">
-							<image :src="items.pic" mode="aspectFit"></image>
+							<image :src="items.image" mode="aspectFit"></image>
 						</view>
 					</swiper-item>
 				</swiper>
 			</view>
 
-			<view style="justify-content:end;padding-left:10px" class="matter-tranform-container rowCenCen" v-if="wuLiaoList.length>0">
-				<!-- <view class="pushing-matter rowCen" @tap="goUrl(wuLiaoList[0])">
+		<!--	<view style="justify-content:end;padding-left:10px" class="matter-tranform-container rowCenCen" v-if="wuLiaoList.length>0">
+				 <view class="pushing-matter rowCen" @tap="goUrl(wuLiaoList[0])">
 					<view class="leftIteminfo">
 						<view class="itemName">
 							{{wuLiaoList[0].mname}}
@@ -149,7 +169,7 @@
 						<image :src="wuLiaoList[0].image" mode="aspectFill"></image>
 					</view>
 				</view>
-				<view class="centerBorder"></view> -->
+				<view class="centerBorder"></view> 
 				<view  class="pushing-matter rowCen" @tap="goUrl(wuLiaoList[1])">
 					<view class="leftIteminfo">
 						<view class="itemName">
@@ -165,7 +185,7 @@
 				</view>
 				 
 			
-			</view>
+			</view>-->
 
 			<view class="commonFunctions-container" v-if="cygnList.length>0">
 				<view class="card-title">
@@ -312,7 +332,11 @@
 				}).catch(function (err) {
 				})
 			},
-			
+			golevelRules() {
+			 uni.navigateTo({
+			   url: '../goods/privilege'
+			 })
+			},
 			getuserInfo() {
 				var that = this;
 				this.$u.api.getUserInfo({}).then(e => {
@@ -322,18 +346,19 @@
 					console.log(err)
 				})
 			},
-
 			getbanner() {
 				// banner鏁版嵁
 				var that = this;
 				this.$u.api.getBanner({type:'2'}).then(e => {
 					if(e.code == 1)return that.$alert(e.msg);
+					console.log(e.data.info)
 					that.bannerList = e.data.info;
 				}).catch(function (err) {
 				})
 			},
 
 			centerInfo() {
+				  this.user = uni.getStorageSync('userInfo');
 				var that = this;
 				this.$u.api.userHomemenu({}).then(e => {
 					var res = e.data.list;
@@ -381,7 +406,40 @@
 			},
 
 			goUrl(info) {
-				util.goUrl(info,this)
+				console.log(info)
+				if(info.url_type == 15)
+				{//寰俊瀹㈡湇
+					let wechat = null
+					let parameter = info.parameter_json;
+					plus.share.getServices(res => {
+						wechat = res.find(i => i.id === 'weixin')
+						if (wechat) {
+							wechat.openCustomerServiceChat({
+								corpid: parameter.cmark, //浼佷笟ID
+								url: parameter.url, //瀹㈡湇鍦板潃
+							}, src => {
+								console.log("success:", JSON.stringify(src))
+							}, err => {
+								console.log("error:", JSON.stringify(err))
+							})
+						} else {
+							uni.showToast({
+								title: '褰撳墠鐜涓嶆敮鎸佸井淇℃搷浣�',
+								icon: "error"
+							});
+						}
+					}, function() {
+						uni.showToast({
+							title: "鑾峰彇鏈嶅姟澶辫触锛屼笉鏀寔璇ユ搷浣溿��" + JSON.stringify(e),
+							icon: 'none'
+						})
+						});
+				}
+				else
+				{
+					util.goUrl(info,this)
+				}
+				
 			},
 
 			
@@ -668,10 +726,42 @@
 				}
 			}
 		}
-
+		.vip-info-container {
+		  width: 100%;
+		  height: 60rpx;
+		  background: #FFF2CF;
+		 border-radius: 16rpx;
+		  padding: 0 20rpx;
+		  margin-bottom: 20rpx;
+		
+		  .left-info {
+		    font-size: 24rpx;
+		    font-weight: 500;
+		    color: #593A0F;
+		  }
+		
+		  .rt-btn {
+		    width: 152rpx;
+		    height: 44rpx;
+		    background-color: rgba(0, 0, 0, 0.6);
+		    border-radius: 22rpx;
+		
+		    .vipimg {
+		      width: 27rpx;
+		      height: 24rpx;
+		    }
+		
+		    .level-txt {
+		      font-size: 24rpx;
+		      font-weight: 500;
+		      color: #FFFFFF;
+		      margin-left: 10rpx;
+		    }
+		  }
+		}
 		.mine-under-container {
 			width: 100%;
-			margin-top: 85rpx;
+			margin-top: 95rpx;
 			padding: 0 30rpx;
 
 			.nav-container {

--
Gitblit v1.9.3