This commit is contained in:
qsh
2023-03-21 00:53:28 +08:00
parent 953377e655
commit 955687d473
171 changed files with 7149 additions and 7341 deletions

View File

@@ -0,0 +1,26 @@
<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>