From d02f5570f5d78ea2940ee3e8dca959d3abfe6f74 Mon Sep 17 00:00:00 2001 From: xingyu Date: Mon, 16 Oct 2023 15:04:05 +0800 Subject: [PATCH] style: stylelint (cherry picked from commit 1a1b70a350722cf25a00e5b659a71ead5be62114) --- .../package/designer/ProcessViewer.vue | 6 + .../components/Breadcrumb/src/Breadcrumb.vue | 1 + .../promotion/combination/record/index.vue | 6 +- src/views/mall/statistics/member/index.vue | 242 +++++++++++++++--- .../mall/trade/afterSale/detail/index.vue | 18 +- src/views/mall/trade/order/detail/index.vue | 16 +- 6 files changed, 234 insertions(+), 55 deletions(-) diff --git a/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue b/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue index a315c26f..85dc5748 100644 --- a/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue +++ b/src/components/bpmnProcessDesigner/package/designer/ProcessViewer.vue @@ -598,14 +598,17 @@ watch( stroke: #e6a23c !important; fill-opacity: 0.2 !important; } + .highlight-return.djs-shape .djs-visual > :nth-child(2) { fill: #e6a23c !important; } + .highlight-return.djs-shape .djs-visual > path { fill: #e6a23c !important; fill-opacity: 0.2 !important; stroke: #e6a23c !important; } + .highlight-return.djs-connection > .djs-visual > path { stroke: #e6a23c !important; } @@ -619,14 +622,17 @@ watch( stroke: #e6a23c !important; fill-opacity: 0.2 !important; } + :deep(.highlight-return.djs-shape .djs-visual > :nth-child(2)) { fill: #e6a23c !important; } + :deep(.highlight-return.djs-shape .djs-visual > path) { fill: #e6a23c !important; fill-opacity: 0.2 !important; stroke: #e6a23c !important; } + :deep(.highlight-return.djs-connection > .djs-visual > path) { stroke: #e6a23c !important; } diff --git a/src/layout/components/Breadcrumb/src/Breadcrumb.vue b/src/layout/components/Breadcrumb/src/Breadcrumb.vue index 1852a59b..4079a066 100644 --- a/src/layout/components/Breadcrumb/src/Breadcrumb.vue +++ b/src/layout/components/Breadcrumb/src/Breadcrumb.vue @@ -114,6 +114,7 @@ $prefix-cls: #{$elNamespace}-breadcrumb; } } } + :deep(&__item):last-child { .#{$prefix-cls}__inner { display: flex; diff --git a/src/views/mall/promotion/combination/record/index.vue b/src/views/mall/promotion/combination/record/index.vue index cc7a3b26..ec06a0b7 100644 --- a/src/views/mall/promotion/combination/record/index.vue +++ b/src/views/mall/promotion/combination/record/index.vue @@ -6,7 +6,7 @@
@@ -27,7 +27,7 @@
@@ -48,7 +48,7 @@
diff --git a/src/views/mall/statistics/member/index.vue b/src/views/mall/statistics/member/index.vue index 0d77f6c7..8dd7c593 100644 --- a/src/views/mall/statistics/member/index.vue +++ b/src/views/mall/statistics/member/index.vue @@ -44,20 +44,118 @@ - - + + +
+
+
+
+
+ 注册用户数量:{{ analyseData?.comparison?.value?.userCount || 0 }} +
+
+ 环比增长率:{{ + calculateRelativeRate( + analyseData?.comparison?.value?.userCount, + analyseData?.comparison?.reference?.userCount + ) + }}% +
+
+
+
+ {{ analyseData?.visitorCount || 0 }} + 访客 +
+
+
+
+
+
+ 活跃用户数量:{{ analyseData?.comparison?.value?.activeUserCount || 0 }} +
+
+ 环比增长率:{{ + calculateRelativeRate( + analyseData?.comparison?.value?.activeUserCount, + analyseData?.comparison?.reference?.activeUserCount + ) + }}% +
+
+
+
+ {{ analyseData?.orderUserCount || 0 }} + 下单 +
+
+
+
+
+
+
+ 充值用户数量:{{ analyseData?.comparison?.value?.rechargeUserCount || 0 }} +
+
+ 环比增长率:{{ + calculateRelativeRate( + analyseData?.comparison?.value?.rechargeUserCount, + analyseData?.comparison?.reference?.rechargeUserCount + ) + }}% +
+
+
+
客单价:{{ fenToYuan(analyseData?.atv || 0) }}
+
+
+
+
+ {{ analyseData?.payUserCount || 0 }} + 成交用户 +
+
+
+
- - + + +
- - + @@ -82,14 +180,14 @@ /> - - + @@ -119,33 +214,62 @@