feat: 初始化

This commit is contained in:
George
2025-07-07 16:05:18 +08:00
commit c169958240
986 changed files with 132574 additions and 0 deletions

View File

@ -0,0 +1,17 @@
::-webkit-scrollbar {
display: none;
}
.filterButton {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 10px;
width: 100%;
height: 34px;
color: #fff;
background-color: rgba(41, 187, 228, 1);
.filterText {
white-space: nowrap;
margin: 0 8px 0 3px;
}
}

View File

@ -0,0 +1,37 @@
<template>
<view>
<ReportTable url="/app/partners/queryMyAgentList" timeRangeStart="create_time_start" timeRangeEnd="create_time_end" :visible="visible">
<template v-slot="{ showSearchDialog }">
<view class="filterButton" @click="showSearchDialog">
<image src="/static/filter.png" alt="" style="width: 12px; height: 13px" />
<text class="filterText">筛选</text>
<uni-icons type="right" size="20" color="#fff"></uni-icons>
</view>
</template>
</ReportTable>
</view>
</template>
<script>
import ReportTable from '@/pages/components/reportTable/index.vue';
import { getstatCustomerNum } from '@/services/partner/myClient.ts';
export default {
name: 'MyIB',
props: {
visible: {
type: Boolean,
required: true,
default: false
}
},
data() {
return {};
},
methods: {},
components: { ReportTable }
};
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>