feat: 初始化
This commit is contained in:
32
pages/capital/deposit/depositReport/index.scss
Normal file
32
pages/capital/deposit/depositReport/index.scss
Normal file
@ -0,0 +1,32 @@
|
||||
.swiper {
|
||||
padding: 0 18px;
|
||||
}
|
||||
.container {
|
||||
padding: 0 16px;
|
||||
padding-bottom: 24px;
|
||||
.title {
|
||||
margin: 14px 0 15px;
|
||||
}
|
||||
.filterWrapper {
|
||||
display: flex;
|
||||
column-gap: 6px;
|
||||
margin-bottom: 10px;
|
||||
.filterSelector {
|
||||
flex: 1;
|
||||
}
|
||||
.filterButton {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 91px;
|
||||
height: 34px;
|
||||
color: #fff;
|
||||
background-color: rgba(41, 187, 228, 1);
|
||||
.filterText {
|
||||
white-space: nowrap;
|
||||
margin: 0 8px 0 3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
40
pages/capital/deposit/depositReport/index.vue
Normal file
40
pages/capital/deposit/depositReport/index.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<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>
|
Reference in New Issue
Block a user