|
@@ -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 = () => {
|