| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div class="box">
- <el-tabs
- v-model="activeName"
- class="demo-tabs"
- >
- <el-tab-pane
- label="申请列表"
- name="Application"
- >
- <PromoterList />
- </el-tab-pane>
- <el-tab-pane
- label="审批列表"
- name="examine"
- >
- <InspectList />
- </el-tab-pane>
- </el-tabs>
- </div>
- </template>
- <script setup>
- import { ref } from 'vue'
- import PromoterList from './components/promoterList.vue'
- import InspectList from './components/inspectList.vue'
- defineOptions({
- name: 'ApproveList'
- })
- const activeName = ref('Application')
- </script>
- <style scoped>
- .box{
- height: 760px;
- background-color: #ffffff;
- }
- </style>
|