Sfoglia il codice sorgente

feat: 新增审批管理页

wyf 10 mesi fa
parent
commit
16df7abcc0

+ 18 - 0
src/views/system/authorization/Authorization.vue

@@ -0,0 +1,18 @@
+<template>
+  <div class="safety-platform-container">
+    <header class="safety-platform-container__header">
+      <div class="breadcrumb-title"> 审批管理 </div>
+    </header>
+    <main class="safety-platform-container__main">
+      <AuthorizationList />
+    </main>
+  </div>
+</template>
+
+<script setup lang="ts">
+  import AuthorizationList from './components/AuthorizationList.vue';
+</script>
+
+<style lang="scss" scoped>
+  @use '@/styles/page-details-layout.scss' as *;
+</style>

+ 12 - 0
src/views/system/authorization/components/AuthorizationList.vue

@@ -0,0 +1,12 @@
+<template>
+  <div class="authorization-list">
+    <el-button type="primary" @click="handleCreateAuthorizationList" :icon="Plus">添加审批流程</el-button>
+  </div>
+</template>
+
+<script setup lang="ts">
+  import { Plus } from '@element-plus/icons-vue';
+  const handleCreateAuthorizationList = () => {};
+</script>
+
+<style scoped></style>