mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-07-18 04:45:07 +08:00
21 lines
714 B
Vue
21 lines
714 B
Vue
![]() |
<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>
|