瀏覽代碼

上线测试更改BUG

wangwenju 3 天之前
父節點
當前提交
8404f25441

+ 3 - 32
LiangZhiYUMao/pages/index/index.vue

@@ -702,14 +702,7 @@ async loadFunctionGridData() {
 
 			// 跳转到VIP页面
 			goToVip() {
-				const status = uni.getStorageSync("userInfo").status
-					if(status != 1){
-						uni.showToast({
-							title: '您的账户违反规定已被禁用',
-							icon: 'none'
-						})
-						return
-					}
+				
 				uni.navigateTo({
 					url: '/pages/vip/index'
 				})
@@ -717,14 +710,6 @@ async loadFunctionGridData() {
 
 			// 跳转到活动列表
 			goToActivityList() {
-				const status = uni.getStorageSync("userInfo").status
-				if(status != 1){
-					uni.showToast({
-						title: '您的账户违反规定已被禁用',
-						icon: 'none'
-					})
-					return
-				}
 				uni.navigateTo({
 					url: '/pages/activities/list'
 				})
@@ -732,14 +717,7 @@ async loadFunctionGridData() {
 
 			// 处理活动点击
 			handleActivityClick(activity) {
-				const status = uni.getStorageSync("userInfo").status
-				if(status != 1){
-					uni.showToast({
-						title: '您的账户违反规定已被禁用',
-						icon: 'none'
-					})
-					return
-				}
+				
 				uni.navigateTo({
 					url: `/pages/activities/detail?id=${activity.id}`
 				})
@@ -747,14 +725,7 @@ async loadFunctionGridData() {
 
 			// 跳转到成功案例列表
 			goToSuccessCaseList() {
-				const status = uni.getStorageSync("userInfo").status
-				if(status != 1){
-					uni.showToast({
-						title: '您的账户违反规定已被禁用',
-						icon: 'none'
-					})
-					return
-				}
+				
 				uni.navigateTo({
 					url: '/pages/success-case/list'
 				})

+ 1 - 1
LiangZhiYUMao/pages/matchmaker-workbench/index.vue

@@ -5,7 +5,6 @@
     <view class="header">
       <text class="header-title">红娘工作台</text>
       <view class="header-right">
-        <view class="search-icon" @click="handleSearch"></view>
         <!-- 返回用户端按钮 - 修改为与"前往红娘工作台"一致的样式 -->
         <view class="back-to-user-btn" @click="openExitPopup">
           <text class="btn-text">返回用户端</text>
@@ -419,6 +418,7 @@ export default {
       justify-content: center;
       box-shadow: 0 4rpx 12rpx rgba(255, 107, 138, 0.3);
       transition: all 0.3s ease;
+	  margin-right: 80px;
 
       &:active {
         transform: scale(0.95);

+ 4 - 3
LiangZhiYUMao/pages/plaza/detail.vue

@@ -13,9 +13,7 @@
 				<text class="main-title">💕 爱的故事</text>
 				<text class="sub-title">两只羽毛的浪漫时光</text>
 			</view>
-			<view class="navbar-right" @click="showMoreMenu">
-				<text class="more-icon">⋯</text>
-			</view>
+			
 		</view>
 		
 		<!-- 内容区域 -->
@@ -38,6 +36,9 @@
 						<text class="nickname">{{ getNickname(dynamic) }}</text>
 						<text class="time">{{ formatTime(dynamic.createdAt) }}</text>
 					</view>
+					<view class="navbar-right" @click="showMoreMenu">
+						<text class="more-icon">⋯</text>
+					</view>
 				</view>
 				
 				<!-- 动态内容 -->

+ 4 - 2
LiangZhiYUMao/pages/success-case/list.vue

@@ -211,6 +211,7 @@
 		min-height: 100vh;
 		background-color: #FFF9F9;
 		padding-top: 90rpx;
+		margin-top: 40px;
 	}
 
 	/* 自定义导航栏 */
@@ -219,17 +220,18 @@
 		top: 0;
 		left: 0;
 		right: 0;
-		height: 90rpx;
+		height: 110rpx;
 		display: flex;
 		align-items: center;
 		justify-content: space-between;
 		padding: 0 20rpx;
+		padding-top: 30px;
 		background-color: #E91E63;
 		z-index: 999;
 
 		.navbar-left,
 		.navbar-right {
-			width: 80rpx;
+			width: 100rpx;
 		}
 
 		.back-icon {