Procházet zdrojové kódy

feat(units): corrige margem de unidade

ebagabee před 3 týdny
rodič
revize
20aa0546b4
1 změnil soubory, kde provedl 15 přidání a 0 odebrání
  1. 15 0
      src/pages/unit/UnitActionPage.vue

+ 15 - 0
src/pages/unit/UnitActionPage.vue

@@ -1,9 +1,24 @@
 <template>
   <div>
     <DefaultHeaderPage title="Cadastro de Unidade" />
+
+    <CustomTabComponent v-model:active-tab="activeTab" :tabs />
   </div>
 </template>
 
 <script setup>
 import DefaultHeaderPage from "src/components/layout/DefaultHeaderPage.vue";
+import CustomTabComponent from "src/components/shared/CustomTabComponent.vue";
+import { ref } from "vue";
+
+const activeTab = ref("unit_data");
+
+const tabs = ref([
+  { name: "unit_data", label: "Dados da Unidade" },
+  { name: "partners", label: "Sócios" },
+  { name: "contracts", label: "Contratos" },
+  { name: "financial", label: "Financeiro" },
+  { name: "history", label: "Histórico" },
+  { name: "medias", label: "Mídias" },
+]);
 </script>