|
@@ -1,23 +1,10 @@
|
|
|
<!-- 我的积分 -->
|
|
|
<template>
|
|
|
<div>
|
|
|
- <div class="statisticsBox">
|
|
|
- <div class="mt-2">
|
|
|
- <span style="font-size: 20px; color: #333; line-height: 28px; font-weight: bold;" class="ml-10">您当前赚取积分</span>
|
|
|
- <span style="font-size: 14px; color: #777; line-height: 24px; cursor: pointer;" class="ml-2">积分规则</span>
|
|
|
- </div>
|
|
|
- <div class="d-flex justify-space-between align-end my-1">
|
|
|
- <span style="font-size: 42px; color: #ff9300; line-height: 50px;" class="ml-10">{{ integral }}</span>
|
|
|
- <span style="font-size: 16px; color: #787d82; line-height: 24px;" class="mr-8">
|
|
|
- 积分土豪的都喜欢来这里,
|
|
|
- <span style="color: #ff7802; cursor: pointer;">积分商城</span>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <integralShow></integralShow>
|
|
|
<!-- 任务中心 -->
|
|
|
<div style="font-size: 14px; color: #777; text-align: right;" class="mr-5 mt-3 cursor-pointer" @click="router.push({ path: '/personalTaskCenter' })">《<span style=" color: var(--v-primary-base);">任务中心</span>》</div>
|
|
|
- <!-- 数据 -->
|
|
|
- <!-- <div class="d-flex mt-3"></div> -->
|
|
|
+ <!-- 积分明细 -->
|
|
|
<div class="mt-3">
|
|
|
<v-tabs v-model="tab" style="border-radius: 5px;" align-tabs="start" color="primary" bg-color="#f7f8fa" @update:model-value="handleChangeTab">
|
|
|
<v-tab :value="1"> {{ $t('publicRecruitment.whole') }}</v-tab>
|
|
@@ -32,10 +19,10 @@
|
|
|
|
|
|
<script setup>
|
|
|
import TablePage from './components/integralTable.vue'
|
|
|
+import integralShow from '@/views/personal/components/integralShow.vue'
|
|
|
import { useRouter } from 'vue-router'; const router = useRouter()
|
|
|
import { ref } from 'vue'
|
|
|
defineOptions({name: 'personal-myPublicRecruitment-myRegistration'})
|
|
|
-const integral = '135'
|
|
|
const tab = ref(0)
|
|
|
const dataList = ref([])
|
|
|
// 数据
|
|
@@ -55,11 +42,4 @@ const handleChangeTab = () => {
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
-.statisticsBox {
|
|
|
- padding: 10px 0;
|
|
|
- border-radius: 10px;
|
|
|
- background-color: var(--default-bgc);
|
|
|
- // background-color: #f3f3f3;
|
|
|
- // font-family: 宋体, SimSun;
|
|
|
-}
|
|
|
</style>
|