pointsMall.vue 343 B

12345678910111213141516
  1. <!-- 积分商城 -->
  2. <template>
  3. <exchange></exchange>
  4. </template>
  5. <script setup>
  6. import exchange from './components/exchange.vue'
  7. defineOptions({name: 'personal-pointsManagement-pointsMall'})
  8. </script>
  9. <style lang="scss" scoped>
  10. .statisticsBox {
  11. padding: 10px 0;
  12. border-radius: 10px;
  13. background-color: var(--default-bgc);
  14. }
  15. </style>