12 lines
350 B
Vue
12 lines
350 B
Vue
<template>
|
|
<div class="container">
|
|
<manageList :list-func="reportApi.getReportList" :export-func="reportApi.exportReportList"
|
|
edit-permiss="privilege-user-setting" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import manageList from '../components/manage-list.vue';
|
|
import * as reportApi from '../api/report';
|
|
</script>
|