You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
396 B
27 lines
396 B
![]()
2 years ago
|
<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>
|