Ver código fonte

我的钱包跳转

lifanagju_citu 9 meses atrás
pai
commit
238e4d7155

+ 1 - 1
src/views/integral/pointsManagement/components/integralShow.vue

@@ -6,8 +6,8 @@
         <div>
           <span class="ml-10 item-title">{{ val.title }}</span>
           <span v-if="val.showRules" class="ml-5 rules cursor-pointer" @click="integralRulesClick">
-            <v-icon>mdi-help-circle-outline</v-icon>
             {{ $t('points.integralRules') }}
+            <v-icon style="font-size: 16px; color: var(--color-666); line-height: 16px; margin-left: 1px;">mdi-help-circle-outline</v-icon>
           </span>
         </div>
         <div>

+ 5 - 3
src/views/mall/index.vue

@@ -5,7 +5,10 @@
       <div class="statisticsBox">
         <div class="mt-2">
           <span style="font-size: 20px; color: var(--color-333); line-height: 28px; font-weight: bold;" class="ml-10">您当前可用积分</span>
-          <span style="font-size: 14px; color: var(--color-666); line-height: 24px; cursor: pointer;" class="ml-2" @click="toPointsDetails">积分明细</span>
+          <span @click="toPointsDetails" style="cursor: pointer;">
+            <span style="font-size: 14px; color: var(--color-666); line-height: 24px;" class="ml-2">积分明细</span>
+            <v-icon style="font-size: 16px; color: var(--color-666); line-height: 16px; margin-left: 2px;">mdi-help-circle-outline</v-icon>
+          </span>
         </div>
         <div class="d-flex justify-space-between align-end my-1">
           <span style="font-size: 42px; color: #10897bba; line-height: 50px;" class="ml-10 cursor-pointer" @click="toPointsDetails">{{ accountData.point }}</span>
@@ -40,8 +43,7 @@ import { useRouter } from 'vue-router'; const router = useRouter()
 defineOptions({name: 'personal-pointsMall'})
 
 const toPointsDetails = () => {
-  // '/recruit/personal/myWallet' : '/recruit/enterprise/memberCenter/myAccount'
-  router.push({ path: '/recruit/personal/myWallet' })
+  router.push({ path: '/recruit/personal/personalCenter/wallet' })
 }
 
 const getPositionList = () => {