Files
HTFX-CRM-Sales/pages/partner/components/myIB/index.vue
2025-07-07 16:05:18 +08:00

38 lines
923 B
Vue

<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>