Files
2025-07-07 15:55:44 +08:00

41 lines
966 B
Vue

<template>
<NavBar />
<view class="swiper">
<HomeSwiper position="1" />
</view>
<view class="container">
<view class="title">
<PageTitle :title="$t('report.goldIn')" backTarget="/pages/capital/deposit/index" />
</view>
<ReportTable title="" url="/app/report/getReport16">
<template v-slot="{ showSearchDialog }">
<view class="filterWrapper">
<view class="filterButton" @click="showSearchDialog">
<image src="/static/filter.png" alt="" style="width: 12px; height: 13px" />
<text class="filterText">{{ $t('common.filter') }}</text>
<uni-icons type="right" size="20" color="#fff"></uni-icons>
</view>
</view>
</template>
</ReportTable>
</view>
</template>
<script>
import ReportTable from '@/pages/components/reportTable/index.vue';
export default {
name: '',
data() {
return {};
},
methods: {},
components: {
ReportTable
}
};
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>