|
@@ -164,26 +164,31 @@ onShareAppMessage(() => ({}))
|
|
|
color: 'white',
|
|
|
path: '/pages/home/agent/report-infos/index',
|
|
|
},
|
|
|
- { label: '重点跟进设计师', color: '#FF523F' },
|
|
|
- { label: '全部设计师', color: '#7199FF' },
|
|
|
- { label: '本月新增设计师', color: '#FFE786' },
|
|
|
- { label: '超过30天未跟进', color: '#89F4E3' },
|
|
|
- { label: '超过60天未产生积分设计师', color: '#FFBA6A' },
|
|
|
- { label: '超过60天未消耗积分设计师', color: '#C494FF' },
|
|
|
- { label: '未成交过设计师', color: '#FF9EE2' },
|
|
|
+ { label: '重点跟进设计师', color: '#FF523F', path: '/pages/designer/index' },
|
|
|
+ { label: '全部设计师', color: '#7199FF', path: '/pages/designer/index' },
|
|
|
+ { label: '本月新增设计师', color: '#FFE786', path: '/pages/designer/index' },
|
|
|
+ { label: '超过30天未跟进', color: '#89F4E3', path: '/pages/designer/index' },
|
|
|
+ {
|
|
|
+ label: '超过60天未产生积分设计师',
|
|
|
+ color: '#FFBA6A',
|
|
|
+ path: '/pages/designer/index',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '超过60天未消耗积分设计师',
|
|
|
+ color: '#C494FF',
|
|
|
+ path: '/pages/designer/index',
|
|
|
+ },
|
|
|
+ { label: '未成交过设计师', color: '#FF9EE2', path: '/pages/designer/index' },
|
|
|
]"
|
|
|
:key="label"
|
|
|
>
|
|
|
- <div
|
|
|
- class="h-12 bg-white rounded-lg shadow flex items-center hover:bg-[#fff6f5]"
|
|
|
- @click="it.path ? router.push(it.path) : toDesigner"
|
|
|
- >
|
|
|
+ <div class="h-12 bg-white rounded-lg shadow flex items-center hover:bg-[#fff6f5]">
|
|
|
<div
|
|
|
class="w-1.5 h-12 rounded-tl-lg rounded-bl-lg shadow"
|
|
|
:style="{ background: color }"
|
|
|
></div>
|
|
|
<div class="flex-1 mx-3">
|
|
|
- <SectionHeading :title="label" :end-arrow="true" size="sm"></SectionHeading>
|
|
|
+ <SectionHeading :title="label" :path="it.path" size="sm"></SectionHeading>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|