Parcourir la source

feat: 文案调整

longyang il y a 1 semaine
Parent
commit
ddde644c38

BIN
src/assets/image/logo-simple.png


+ 3 - 3
src/components/NewUserGuide/steps/ActivityGuide.vue

@@ -61,9 +61,9 @@ export default {
   data() {
     return {
       activities: [
-        { id: 1, icon: '🎮', name: '节日答题', reward: 50, tag: '限时' },
-        { id: 2, icon: '🎡', name: '转盘抽奖', reward: 100, tag: '热门' },
-        { id: 3, icon: '📝', name: '节日签到', reward: 30, tag: '每日' },
+        { id: 3, icon: '📝', name: '每日答题', reward: 30, tag: '每日' },
+        { id: 1, icon: '🎮', name: '每周竞技', reward: 50, tag: '热门' },
+        { id: 2, icon: '🎡', name: '节日活动', reward: 100, tag: '限时' },
       ],
     }
   },

+ 1 - 0
src/components/NewUserGuide/steps/CouponGuideV2.vue

@@ -112,6 +112,7 @@ export default {
 }
 .screenshot-img {
   width: 100%;
+  min-height: 100px;
   border-radius: 8px;
   border: 1px solid #f0e6d8;
   box-shadow: 0 2px 8px rgba(0,0,0,0.06);

+ 18 - 6
src/components/NewUserGuide/steps/PointsMallGuide.vue

@@ -14,9 +14,10 @@
       <!-- 热门商品示意 -->
       <div class="goods-preview">
         <div class="goods-item" v-for="item in goods" :key="item.id">
-          <div class="goods-emoji">{{ item.emoji }}</div>
+          <img v-if="item.img" :src="item.img" class="goods-img" />
+          <span v-else class="goods-emoji">{{ item.emoji }}</span>
           <div class="goods-name">{{ item.name }}</div>
-          <div class="goods-points">{{ item.points }} 积分</div>
+          <!-- <div class="goods-points">{{ item.points }} 积分</div> -->
         </div>
       </div>
     </div>
@@ -46,9 +47,9 @@ export default {
   data() {
     return {
       goods: [
-        { id: 1, emoji: '☕', name: '精品咖啡', points: 50 },
-        { id: 2, emoji: '🎧', name: '无线耳机', points: 800 },
-        { id: 3, emoji: '🧴', name: '护肤套装', points: 300 },
+        { id: 1, img: require('@/assets/image/logo-simple.png'), name: '纪念品', points: 50 },
+        { id: 2, emoji: '🎧', name: '生活用品', points: 800 },
+        { id: 3, emoji: '🧴', name: '数码产品', points: 300 },
       ],
     }
   },
@@ -86,7 +87,18 @@ export default {
   transition: all 0.25s;
 }
 .goods-item:hover { background: #fff4ec; transform: translateY(-2px); }
-.goods-emoji { font-size: 26px; margin-bottom: 6px; }
+.goods-emoji {
+  font-size: 26px;
+  margin-bottom: 6px;
+  display: block;
+  height: 36px;
+  line-height: 36px;
+}
+.goods-img {
+  height: 36px;
+  margin-bottom: 6px;
+  display: block;
+}
 .goods-name { font-size: 12px; color: #4e5969; font-weight: 500; margin-bottom: 4px; }
 .goods-points { font-size: 12px; color: #f76b1c; font-weight: 700; }
 </style>

+ 2 - 2
src/components/NewUserGuide/steps/RewardGuide.vue

@@ -55,9 +55,9 @@ export default {
     return {
       hasClaimed: null,
       rewards: [
-        { id: 1, icon: '💰', name: '积分奖励', value: '+200 积分' },
+        { id: 1, icon: '💰', name: '积分奖励', value: '+1000 积分' },
         { id: 2, icon: '🏅', name: '引导完成成就徽章', value: '新手成就解锁' },
-        { id: 3, icon: '🎫', name: '专属礼品券', value: '满 100 积分可用' },
+        // { id: 3, icon: '🎫', name: '专属礼品券', value: '满 100 积分可用' },
       ],
     }
   },

+ 3 - 2
src/components/NewUserGuide/steps/SignInGuide.vue

@@ -5,8 +5,9 @@
       <div class="step2-badge">Step 2</div>
       <h2 class="step2-title">每日签到,积分到手</h2>
       <p class="step2-desc">
-        每天来签到,轻松赚取积分奖励!<br />
-        <strong>连续签到</strong>还能获得额外加成 🎁
+        当月工作日满签可领取额外奖励大礼包
+        <!-- 每天来签到,轻松赚取积分奖励!<br />
+        <strong>连续签到</strong>还能获得额外加成 🎁 -->
       </p>
 
       <!-- 签到日历示意 -->