From d499b10b0d6063bcf4118aac85fa8212b28df5ff Mon Sep 17 00:00:00 2001 From: tk Date: Mon, 24 Jun 2024 22:14:16 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E7=B1=BB=09=E5=9E=8B=E3=80=91?= =?UTF-8?q?=EF=BC=9Afeat=20=E3=80=90=E4=B8=BB=09=E9=A2=98=E3=80=91?= =?UTF-8?q?=EF=BC=9A=E7=BB=9F=E8=AE=A1=E9=A1=B5=E9=9D=A2=20=E3=80=90?= =?UTF-8?q?=E6=8F=8F=09=E8=BF=B0=E3=80=91=EF=BC=9A=20=09[=E5=8E=9F?= =?UTF-8?q?=E5=9B=A0]=EF=BC=9A=E5=A2=9E=E5=8A=A0=E6=9F=A5=E8=AF=A2=20?= =?UTF-8?q?=E6=97=A5=20=E6=9C=88=20=E5=B9=B4=E7=BB=9F=E8=AE=A1=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=20=09[=E8=BF=87=E7=A8=8B]=EF=BC=9A=20=09[=E5=BD=B1?= =?UTF-8?q?=E5=93=8D]=EF=BC=9A=20=E3=80=90=E7=BB=93=09=E6=9D=9F=E3=80=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # 类型 包含: # feat:新功能(feature) # fix:修补bug # docs:文档(documentation) # style: 格式(不影响代码运行的变动) # refactor:重构(即不是新增功能,也不是修改bug的代码变动) # test:增加测试 # chore:构建过程或辅助工具的变动 --- src/styles/index.scss | 27 ++ .../layout/components/main/order/stat.vue | 337 ++++++++++++++++-- 2 files changed, 338 insertions(+), 26 deletions(-) diff --git a/src/styles/index.scss b/src/styles/index.scss index 2edba9b..2768855 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -154,6 +154,14 @@ label { color: $brand-color; } +.fc-s { + color: $success-color; +} + +.fc-w { + color: $warning-color; +} + .fc-m { color: $maintext-color; } @@ -306,6 +314,25 @@ label { border-radius: 2px; } +.ofh { + overflow: hidden; +} + +.ofa { + overflow: auto; +} + +.no-select { + -webkit-user-select: none; + /* Chrome/Safari */ + -moz-user-select: none; + /* Firefox */ + -ms-user-select: none; + /* Internet Explorer/Edge */ + user-select: none; + /* Standard */ +} + //m-l-0 p-l-0 马根 帕丁 $position: ( "t":"top", diff --git a/src/views/layout/components/main/order/stat.vue b/src/views/layout/components/main/order/stat.vue index f0d562f..7577f42 100644 --- a/src/views/layout/components/main/order/stat.vue +++ b/src/views/layout/components/main/order/stat.vue @@ -5,30 +5,120 @@ - - - + -
-
-
-
成交额
-
¥23441.44
+
+ +
+
+
+
+
营业额
+
+
¥{{ dayPaidTotal }}
+
+
+
+
收款单
+
+
{{ dayPaid.length }}单
+
+
+
+
退款额
+
+
¥{{ dayRefundTotal }}
+
+
+
+
已退单
+
+
{{ dayRefund.length }}单
+
-
-
退款额
-
¥23441.44
-
-
-
订单总数
-
18单
+
+
-
-
+
+ + + +
+ +
+
+
+
+
营业额
+
+
¥{{ 23441.44 }}
+
+
+
+
收款单
+
+
18单
+
+
+
+
退款额
+
+
¥{{ 23441.44 }}
+
+
+
+
已退单
+
+
18单
+
+
+
+
+
+
+
+
+ + +
+ +
+
+
+
+
营业额
+
+
¥{{ 23441.44 }}
+
+
+
+
收款单
+
+
18单
+
+
+
+
退款额
+
+
¥{{ 23441.44 }}
+
+
+
+
已退单
+
+
18单
+
+
+
+
+
@@ -38,25 +128,211 @@