Skip to content

Commit 42c96e3

Browse files
committed
统计
1 parent b270e6d commit 42c96e3

File tree

2 files changed

+78
-0
lines changed

2 files changed

+78
-0
lines changed

static/css/common.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,38 @@ a{color: #07a9fe;text-decoration: none;}
533533
}
534534
.chatArea .el-textarea__inner{
535535
border: none;
536+
}
537+
.tongji{
538+
display: flex;
539+
}
540+
.tongji .tongjiItem{
541+
background: #fff;
542+
margin: 10px;
543+
border-radius: 5px;
544+
width: 100%;
545+
}
546+
.tongji .tongjiHeader{
547+
font-size: 14px;
548+
font-weight: bold;
549+
padding: 10px 15px;
550+
border-bottom: 1px solid #e8eaec;
551+
color:#17233d;
552+
}
553+
.tongji .tongjiBody{
554+
font-size: 30px;
555+
margin: 0px 10px;
556+
padding: 10px 0px;
557+
border-bottom: 1px solid #e8eaec;
558+
color: #515a6e;
559+
}
560+
.tongji .tongjiFooter{
561+
font-size: 14px;
562+
margin: 10px 10px;
563+
color: #515a6e;
564+
}
565+
.tongji .tongjiFooter span{
566+
color: red;
567+
padding: 0 3px;
536568
}
537569
/* 定义滚动条的宽度、高度和背景色 */
538570
::-webkit-scrollbar {

static/templates/pannel.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,52 @@
11
{{template "header" }}
22
<div id="app" style="width:100%;background: #eef0f6">
33
<template>
4+
<div class="tongji">
5+
<div class="tongjiItem">
6+
<div class="tongjiHeader">
7+
全部客户
8+
</div>
9+
<div class="tongjiBody">
10+
33
11+
</div>
12+
<div class="tongjiFooter">
13+
累计客户数量<span>xx</span>
14+
</div>
15+
</div>
16+
<div class="tongjiItem">
17+
<div class="tongjiHeader">
18+
日新增客户
19+
</div>
20+
<div class="tongjiBody">
21+
33
22+
</div>
23+
<div class="tongjiFooter">
24+
累计客户数量<span>xx</span>
25+
</div>
26+
</div>
27+
<div class="tongjiItem">
28+
<div class="tongjiHeader">
29+
月新增客户
30+
</div>
31+
<div class="tongjiBody">
32+
33
33+
</div>
34+
<div class="tongjiFooter">
35+
累计客户数量<span>xx</span>
36+
</div>
37+
</div>
38+
<div class="tongjiItem">
39+
<div class="tongjiHeader">
40+
年新增客户
41+
</div>
42+
<div class="tongjiBody">
43+
33
44+
</div>
45+
<div class="tongjiFooter">
46+
累计客户数量<span>xx</span>
47+
</div>
48+
</div>
49+
</div>
450
<div style="background: #fff;margin: 10px;padding: 10px" id="visitorNums">
551

652
</div>

0 commit comments

Comments
 (0)