فهرست منبع

Merge branch 'master' of https://git.nanodreamtech.com/Boss/yizhizan-h5

7 ماه پیش
والد
کامیت
f83a3d0056
1فایلهای تغییر یافته به همراه91 افزوده شده و 1 حذف شده
  1. 91 1
      pages/my/index.vue

+ 91 - 1
pages/my/index.vue

@@ -224,7 +224,36 @@
 						</view>
 					</view>
 					<!-- 更多工具 -->
-					<view class="utils flex justify-center">
+					<!-- 更多功能区域 -->
+					<view class="more-functions">
+						<text class="section-title">更多功能</text>
+						<view class="function-grid">
+							<view class="function-item">
+								<image src="../../static/images/index/moreSkill1.svg" class="function-icon"></image>
+								<text class="function-text">猎头服务</text>
+							</view>
+							<view class="function-item">
+								<image src="../../static/images/index/moreSkill2.svg" class="function-icon"></image>
+								<text class="function-text">精选公司</text>
+							</view>
+							<view class="function-item" @click="goNav('/pages/my/ruleCenter')">
+								<image src="../../static/images/index/moreSkill3.svg" class="function-icon"></image>
+								<text class="function-text">规则中心</text>
+							</view>
+							<view class="function-item" @click="goChat">
+								<image src="../../static/images/index/moreSkill4.svg" class="function-icon"></image>
+								<text class="function-text">联系客服</text>
+							</view>
+							<!-- <view v-if="token" class="function-item" @click="goOut()">
+								<image src="../../static/images/my/icon/utils/utils8.png"
+									class="function-icon"></image>
+								<view class="function-text">
+									退出登录
+								</view>
+							</view> -->
+						</view>
+					</view>
+					<view v-if="false" class="utils flex justify-center">
 						<view class="utils-box">
 							<view class="utils-box-c">
 								<view class="util-list">
@@ -2136,4 +2165,65 @@
 			}
 		}
 	}
+	// 更多功能区域
+	.more-functions {
+		margin: 0 32rpx;
+		padding: 24rpx 48rpx 48rpx 48rpx;
+		/* background: #fff;
+		border-radius: 24rpx; */
+		
+		.section-title {
+			color: rgba(29, 33, 41, 1);
+			font-family: DM Sans;
+			font-size: 28rpx;
+			font-weight: 500;
+			line-height: 44rpx;
+			letter-spacing: 0%;
+			text-align: left;
+		}
+		
+		.function-grid {
+			margin-top: 24rpx;
+			display: flex;
+			justify-content: space-between;
+			border-top: 0.5px solid rgba(238, 238, 238, 1);
+			padding-top: 16rpx;
+			
+			.function-item {
+				display: flex;
+				flex-direction: column;
+				align-items: center;
+				gap: 16rpx;
+				
+				.function-icon {
+					width: 48rpx;
+					height: 48rpx;
+				}
+				
+				.function-text {
+					color: #333;
+					font-size: 24rpx;
+					font-weight: 500;
+				}
+			}
+		}
+	}
+	
+	// 联系信息
+	.contact-info {
+		margin: 0 40rpx 120rpx 40rpx;
+		padding: 40rpx;
+		
+		.contact-text, .legal-text, .icp-text {
+			display: block;
+			color: rgba(153, 153, 153, 1);
+			font-family: DM Sans;
+			font-size: 18rpx;
+			font-weight: 400;
+			line-height: 1.6;
+			letter-spacing: 0%;
+			text-align: center;
+			margin-bottom: 8rpx;
+		}
+	}
 </style>