YH_0525 3 недель назад
Родитель
Сommit
f7bc35186a
1 измененных файлов с 4 добавлено и 35 удалено
  1. 4 35
      LiangZhiYUMao/pages/astrology/index.vue

+ 4 - 35
LiangZhiYUMao/pages/astrology/index.vue

@@ -51,7 +51,6 @@
 			<view class="card-item" v-for="(card, index) in cardList" :key="index" @click="handleCardClick(card)">
 				<view class="card-icon">{{ card.icon }}</view>
 				<view class="card-name">{{ card.name }}</view>
-				<view class="card-desc">{{ card.desc }}</view>
 			</view>
 		</view>
 
@@ -149,34 +148,10 @@ export default {
 			
 			// 测算卡片
 			cardList: [
-				{
-					id: 1,
-					name: '属相卡片',
-					icon: '🐷',
-					desc: '2.3万人测过',
-					type: 'zodiac'
-				},
-				{
-					id: 2,
-					name: '星座卡片',
-					icon: '♓',
-					desc: '2.3万人测过',
-					type: 'constellation'
-				},
-				{
-					id: 3,
-					name: '八字卡片',
-					icon: '☯',
-					desc: '2.3万人测过',
-					type: 'bazi'
-				},
-				{
-					id: 4,
-					name: 'MBTI卡片',
-					icon: '🧩',
-					desc: '2.3万人测过',
-					type: 'mbti'
-				}
+				{ id: 1, name: '属相卡片', icon: '🐷', type: 'zodiac' },
+				{ id: 2, name: '星座卡片', icon: '♓', type: 'constellation' },
+				{ id: 3, name: '八字卡片', icon: '☯', type: 'bazi' },
+				{ id: 4, name: 'MBTI卡片', icon: '🧩', type: 'mbti' }
 			],
 
 			// 我的爱情运势(动态计算)
@@ -516,12 +491,6 @@ export default {
 			font-size: 28rpx;
 			color: #333333;
 			font-weight: 500;
-			margin-bottom: 8rpx;
-		}
-
-		.card-desc {
-			font-size: 22rpx;
-			color: #999999;
 		}
 	}
 }