separate customers list in a new page

This commit is contained in:
omair saleh
2021-10-09 13:47:47 +08:00
parent cde147ab6f
commit dc9515fbe2
@@ -110,14 +110,14 @@
</list-component>
</div>
<div class="row tabsContainer tabContent hide m-l-0 m-r-0 hide" tab-name="customer-leads" v-if="$store.getters.isAdmin">
<list-component key="2" section="leadCustomerListSection" :endpoint="route('api.company.list')" :options="{'business_type': 2, with_bookings:true, Without_confirmed_payments: true, does_not_have_segments: [5]}">
<list-component key="2" section="leadCustomerListSection" :endpoint="route('api.company.list')" :options="{'business_type': 2, with_bookings:true, without_confirmed_payments: true, does_not_have_segments: [5]}">
<template slot="list" slot-scope="{data}">
<company-component :data="data"></company-component>
</template>
</list-component>
</div>
<div class="row tabsContainer tabContent m-l-0 m-r-0 hide" tab-name="inactive-customer-list">
<list-component key="2" section="inactiveCustomerListSection" :endpoint="route('api.company.list')" :options="{'business_type': 2, with_bookings:true, Without_confirmed_payments: true, segments_in: [5]}">
<list-component key="2" section="inactiveCustomerListSection" :endpoint="route('api.company.list')" :options="{'business_type': 2, with_bookings:true, without_confirmed_payments: true, segments_in: [5]}">
<template slot="list" slot-scope="{data}">
<company-component :data="data"></company-component>
</template>