Commit 8524ad1764e5f3489a7950c6ee32042e6b47753b

Authored by
2 parents 6dbc1c8f 97424267

Merge branch 'zwl-develop' into 'develop'

fix: 新页面



See merge request !26
src/views/project/finance/financeProfit/ExchangeProfit/ExchangeDetail/index.vue 0 → 100644
  1 +<template>
  2 + <div>
  3 + <a-card title="汇率兑换明细表" :bordered="false">
  4 + <div class="content">
  5 + </div>
  6 + </a-card>
  7 + </div>
  8 +</template>
  9 +
  10 +<script setup lang="ts">
  11 + import { onMounted } from 'vue';
  12 +
  13 + onMounted(() => {
  14 + console.log('汇率兑换明细表页面已加载--待开发');
  15 + });
  16 +</script>
  17 +
  18 +<style scoped>
  19 +.content {
  20 + padding: 20px;
  21 + text-align: center;
  22 + color: #666;
  23 +}
  24 +</style>
0 25 \ No newline at end of file
... ...
src/views/project/finance/financeProfit/ExchangeProfit/ExchangeProfitReport/index.vue 0 → 100644
  1 +<template>
  2 + <div>
  3 + <a-card title="汇率收益利润汇总报表" :bordered="false">
  4 + <div class="content">
  5 + </div>
  6 + </a-card>
  7 + </div>
  8 +</template>
  9 +
  10 +<script setup lang="ts">
  11 + import { onMounted } from 'vue';
  12 +
  13 + onMounted(() => {
  14 + console.log('汇率收益利润汇总报表页面已加载--待开发');
  15 + });
  16 +</script>
  17 +
  18 +<style scoped>
  19 +.content {
  20 + padding: 20px;
  21 + text-align: center;
  22 + color: #666;
  23 +}
  24 +</style>
0 25 \ No newline at end of file
... ...
src/views/project/finance/financeProfit/PackageProfit/PackageProfitReport/index.vue 0 → 100644
  1 +<template>
  2 + <div>
  3 + <a-card title="包装费用净利润分析报表" :bordered="false">
  4 + <div class="content">
  5 + </div>
  6 + </a-card>
  7 + </div>
  8 +</template>
  9 +
  10 +<script setup lang="ts">
  11 + import { onMounted } from 'vue';
  12 +
  13 + onMounted(() => {
  14 + console.log('包装费用净利润分析报表页面已加载--待开发');
  15 + });
  16 +</script>
  17 +
  18 +<style scoped>
  19 +.content {
  20 + padding: 20px;
  21 + text-align: center;
  22 + color: #666;
  23 +}
  24 +</style>
0 25 \ No newline at end of file
... ...