feat: CRM 客户限制

This commit is contained in:
Wanwan
2023-11-11 20:50:33 +08:00
parent b63e2a9efb
commit 6369b334e3
7 changed files with 427 additions and 2 deletions

View File

@ -0,0 +1,20 @@
<template>
<!-- 列表 -->
<ContentWrap>
<el-tabs tab-position="left" style="height: 200px">
<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>