Commit d0934e07 authored by zhengke's avatar zhengke

no message

parent bcb2662e
...@@ -33,6 +33,8 @@ ...@@ -33,6 +33,8 @@
<div v-for="(item,index) in headerList" :key="index" :class="selectTitle==item.id?'active':''" <div v-for="(item,index) in headerList" :key="index" :class="selectTitle==item.id?'active':''"
@click="clickTitle(item)">{{item.title}}</div> @click="clickTitle(item)">{{item.title}}</div>
</div> </div>
<!-- 管理配置 -->
<ManageConfiguration v-if="selectTitle==4"></ManageConfiguration>
<!-- 客户来源 --> <!-- 客户来源 -->
<customerSource v-if="selectTitle==1"></customerSource> <customerSource v-if="selectTitle==1"></customerSource>
<!-- 分配规则 --> <!-- 分配规则 -->
...@@ -45,16 +47,22 @@ ...@@ -45,16 +47,22 @@
import customerSource from "./customerSource"; import customerSource from "./customerSource";
import distributionRules from "./distributionRules"; import distributionRules from "./distributionRules";
import rankConfig from "./rankConfig"; import rankConfig from "./rankConfig";
import ManageConfiguration from "./ManageConfiguration";
export default { export default {
components: { components: {
customerSource, customerSource,
distributionRules, distributionRules,
rankConfig, rankConfig,
ManageConfiguration
}, },
data() { data() {
return { return {
selectTitle: 1, selectTitle: 4,
headerList: [{ headerList: [
{
title: '管理配置',
id: 4
},{
title: '客户来源', title: '客户来源',
id: 1 id: 1
}, },
......
...@@ -45,6 +45,9 @@ ...@@ -45,6 +45,9 @@
display: flex; display: flex;
align-items: center; align-items: center;
} }
/deep/.el-radio-group{
margin-bottom: 0 !important;
}
</style> </style>
<template> <template>
<div class="customerManage"> <div class="customerManage">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment