You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
<!-- 列表 -- >
< ContentWrap >
< el -tabs >
< el -tab -pane label = "拥有客户数限制" >
<!-- TODO @ wanwan : CustomerLimitConfigList , 因为它是列表哈 -- >
< CustomerLimitConfDetails :confType ="LimitConfType.CUSTOMER_QUANTITY_LIMIT" / >
< / e l - t a b - p a n e >
< el -tab -pane label = "锁定客户数限制" >
< CustomerLimitConfDetails :confType ="LimitConfType.CUSTOMER_LOCK_LIMIT" / >
< / e l - t a b - p a n e >
< / e l - t a b s >
< / ContentWrap >
< / template >
< script setup lang = "ts" >
import CustomerLimitConfDetails from '@/views/crm/customerLimitConfig/CustomerLimitConfDetails.vue'
import { LimitConfType } from '@/views/crm/customerLimitConfig/customerLimitConf'
defineOptions ( { name : 'CrmCustomerLimitConfig' } )
< / script >