feat: CRM 客户限制

This commit is contained in:
Wanwan
2023-11-11 21:06:11 +08:00
parent 6369b334e3
commit a7f86dfd8b
4 changed files with 100 additions and 82 deletions

View File

@ -1,4 +1,7 @@
<template>
<el-button type="primary" plain @click="handleQuery">
<Icon icon="ep:refresh" class="mr-5px" /> 刷新
</el-button>
<el-button
type="primary"
plain
@ -7,7 +10,13 @@
>
<Icon icon="ep:plus" class="mr-5px" /> 新增
</el-button>
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
<el-table
v-loading="loading"
:data="list"
:stripe="true"
:show-overflow-tooltip="true"
class="mt-4"
>
<el-table-column label="编号" align="center" prop="id" />
<el-table-column label="规则类型" align="center" prop="type" />
<el-table-column label="规则适用人群" align="center" prop="userNames" />
@ -122,6 +131,12 @@ const handleDelete = async (id: number) => {
const { confType } = defineProps<{ confType: LimitConfType }>()
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.pageNo = 1
getList()
}
/** 初始化 **/
onMounted(() => {
getList()

View File

@ -1,7 +1,7 @@
<template>
<!-- 列表 -->
<ContentWrap>
<el-tabs tab-position="left" style="height: 200px">
<el-tabs tab-position="left">
<el-tab-pane label="拥有客户数限制">
<CustomerQuantityLimit :confType="LimitConfType.CUSTOMER_QUANTITY_LIMIT" />
</el-tab-pane>