管理系统PC前端
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.
dm-manage-web/src/views/finance/administration/index.vue

36 lines
676 B

2 years ago
<template>
2 years ago
<div class="p20">
<el-card shadow="always" :body-style="{ padding: '20px' }">
<SearchForm ref="SearchForm" @search="getTableList" />
</el-card>
2 years ago
</div>
</template>
<script>
import SearchForm from './components/SearchForm.vue';
export default {
components: {
SearchForm
},
data() {
return {
searchForm: {
pageNum: 1,
pageSize: 20
}
};
2 years ago
},
methods: {
getTableList() {
const tempForm = this.$refs.SearchForm.searchForm;
const params = { ...this.searchForm, ...tempForm };
console.log(params);
// api.list(params)
}
2 years ago
}
};
</script>
<style lang="scss" scoped>
</style>