Sign in

canrd-outside / order-erp-front · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 1
  • Labels
  • Wiki
  • order-erp-front
  • ..
  • ExchangeProfitReport
  • index.vue
  • fix: 新页面
      97424267
    张 authored
    2025-08-11 12:15:22 +0800  
    Browse Code »
index.vue 432 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<template>
  <div>
    <a-card title="汇率收益利润汇总报表" :bordered="false">
      <div class="content">
      </div>
    </a-card>
  </div>
</template>

<script setup lang="ts">
  import { onMounted } from 'vue';

  onMounted(() => {
    console.log('汇率收益利润汇总报表页面已加载--待开发');
  });
</script>

<style scoped>
.content {
  padding: 20px;
  text-align: center;
  color: #666;
}
</style>