Files
dm-manage-web/src/views/finance/administration/index.vue
2023-03-21 00:53:28 +08:00

27 lines
396 B
Vue

<template>
<div>
<el-card shadow="always" :body-style="{ padding: '20px' }" />
<SearchForm />
</div>
</template>
<script>
import SearchForm from './components/SearchForm.vue';
export default {
components: {
SearchForm
},
data() {
return {
searchForm: {
pageNum: 1,
pageSize: 20
}
};
}
};
</script>
<style lang="scss" scoped>
</style>