2023-11-11 20:50:33 +08:00
|
|
|
<template>
|
|
|
|
<!-- 列表 -->
|
|
|
|
<ContentWrap>
|
2023-11-11 21:06:11 +08:00
|
|
|
<el-tabs tab-position="left">
|
2023-11-11 20:50:33 +08:00
|
|
|
<el-tab-pane label="拥有客户数限制">
|
|
|
|
<CustomerQuantityLimit :confType="LimitConfType.CUSTOMER_QUANTITY_LIMIT" />
|
|
|
|
</el-tab-pane>
|
|
|
|
<el-tab-pane label="锁定客户数限制">
|
|
|
|
<CustomerQuantityLimit :confType="LimitConfType.CUSTOMER_LOCK_LIMIT" />
|
|
|
|
</el-tab-pane>
|
|
|
|
</el-tabs>
|
|
|
|
</ContentWrap>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import CustomerQuantityLimit from '@/views/crm/customerLimitConfig/CustomerQuantityLimit.vue'
|
|
|
|
import { LimitConfType } from '@/views/crm/customerLimitConfig/customerLimitConf'
|
|
|
|
|
|
|
|
defineOptions({ name: 'CrmCustomerLimitConfig' })
|
|
|
|
</script>
|