Files
im-uniapp/pages/workbench/profit/profit.vue
2025-08-20 16:07:18 +08:00

28 lines
546 B
Vue

<template>
<view>
<profit-filter @filter-change="handleFilterChange"></profit-filter>
<profit-list :filterParams="currentFilterParams"></profit-list>
</view>
</template>
<script>
import ProfitFilter from './components/ProfitFilter.vue'
import ProfitList from './components/ProfitList.vue'
export default {
components: {
ProfitFilter,
ProfitList
},
data() {
return {
currentFilterParams: {}
}
},
methods: {
handleFilterChange(params) {
this.currentFilterParams = params
}
}
}
</script>