integralShow.vue 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <!-- -->
  2. <template>
  3. <div class="statisticsBox">
  4. <div class="mt-2">
  5. <span style="font-size: 20px; color: #333; line-height: 28px; font-weight: bold;" class="ml-10">您当前赚取积分</span>
  6. <span style="font-size: 14px; color: #777; line-height: 24px; cursor: pointer;" class="ml-2">积分规则</span>
  7. </div>
  8. <div class="d-flex justify-space-between align-end my-1">
  9. <span style="font-size: 42px; color: #ff9300; line-height: 50px;" class="ml-10 cursor-pointer" @click="router.push({ path: '/myPublicRecruitment', query: { tab: 2 } })">{{ integral }}</span>
  10. <span style="font-size: 16px; color: #787d82; line-height: 24px;" class="mr-8">
  11. 积分土豪的都喜欢来这里,
  12. <span style="color: #ff7802; cursor: pointer;">积分商城</span>
  13. </span>
  14. </div>
  15. </div>
  16. </template>
  17. <script setup>
  18. import { useRouter } from 'vue-router'; const router = useRouter()
  19. defineOptions({name: 'myRegistration-integralShow'})
  20. const integral = '135'
  21. </script>
  22. <style lang="scss" scoped>
  23. .statisticsBox {
  24. padding: 10px 0;
  25. border-radius: 10px;
  26. background-color: var(--default-bgc);
  27. // background-color: #f3f3f3;
  28. // font-family: 宋体, SimSun;
  29. }
  30. </style>