完善客户画像,品牌分析
This commit is contained in:
@@ -120,12 +120,30 @@ export const constantRoutes = [
|
||||
{
|
||||
path: '/dealership',
|
||||
component: Layout,
|
||||
redirect: '/dealership/index',
|
||||
name: 'Dealership',
|
||||
meta: {
|
||||
title: '门店管理',
|
||||
icon: 'el-icon-s-shop'
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'index',
|
||||
name: 'Dealership',
|
||||
name: 'DealershipIndex',
|
||||
component: () => import('@/views/dealership/index'),
|
||||
meta: { title: '门店管理', icon: 'el-icon-s-shop' }
|
||||
},
|
||||
{
|
||||
path: 'brand-analysis',
|
||||
name: 'BrandAnalysis',
|
||||
component: () => import('@/views/dealership/brand-analysis'),
|
||||
meta: { title: '品牌分析', icon: 'el-icon-data-analysis' }
|
||||
},
|
||||
{
|
||||
path: 'customer-profile',
|
||||
name: 'CustomerProfile',
|
||||
component: () => import('@/views/dealership/customer-profile'),
|
||||
meta: { title: '客户画像', icon: 'el-icon-user-solid' }
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -68,13 +68,7 @@
|
||||
<el-table-column label="设备信息(最近一次)" min-width="300">
|
||||
<template slot-scope="scope">
|
||||
<div class="device-info">
|
||||
<div>联网时间: {{ scope.row.lastOnlineTime || '-' }}</div>
|
||||
<div>开机时间: {{ scope.row.lastPowerOnTime || '-' }}</div>
|
||||
<div>关机时间: {{ scope.row.lastPowerOffTime || '-' }}</div>
|
||||
<div>WIFI名称: {{ scope.row.wifiName || '-' }}</div>
|
||||
<div>未上传数量: {{ scope.row.unuploadedCount || 0 }}</div>
|
||||
<div>空间大小: {{ scope.row.storageUsed || '0GB' }}/{{ scope.row.storageSize || '0GB' }}</div>
|
||||
<div>剩余电量: {{ scope.row.remainingBattery || '-' }}</div>
|
||||
<div>
|
||||
充电状态:
|
||||
<span
|
||||
|
||||
Reference in New Issue
Block a user