You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
832 B
23 lines
832 B
2 months ago
|
<template>
|
||
|
<doc-alert title="【客户】客户管理、公海客户" url="https://doc.iocoder.cn/crm/customer/" />
|
||
|
<doc-alert title="【通用】数据权限" url="https://doc.iocoder.cn/crm/permission/" />
|
||
|
|
||
|
<!-- 列表 -->
|
||
|
<ContentWrap>
|
||
|
<el-tabs>
|
||
|
<el-tab-pane label="拥有客户数限制">
|
||
|
<CustomerLimitConfigList :confType="LimitConfType.CUSTOMER_QUANTITY_LIMIT" />
|
||
|
</el-tab-pane>
|
||
|
<el-tab-pane label="锁定客户数限制">
|
||
|
<CustomerLimitConfigList :confType="LimitConfType.CUSTOMER_LOCK_LIMIT" />
|
||
|
</el-tab-pane>
|
||
|
</el-tabs>
|
||
|
</ContentWrap>
|
||
|
</template>
|
||
|
<script setup lang="ts">
|
||
|
import CustomerLimitConfigList from './CustomerLimitConfigList.vue'
|
||
|
import { LimitConfType } from '@/api/crm/customer/limitConfig'
|
||
|
|
||
|
defineOptions({ name: 'CrmCustomerLimitConfig' })
|
||
|
</script>
|