diff --git a/apps/web-ele/src/adapter/component/index.ts b/apps/web-ele/src/adapter/component/index.ts index 0804f9f69..03845253a 100644 --- a/apps/web-ele/src/adapter/component/index.ts +++ b/apps/web-ele/src/adapter/component/index.ts @@ -163,6 +163,7 @@ const withDefaultPlaceholder = ( // 这里需要自行根据业务组件库进行适配,需要用到的组件都需要在这里类型说明 export type ComponentType = + | 'ApiCascader' | 'ApiSelect' | 'ApiTreeSelect' | 'Checkbox' @@ -184,7 +185,6 @@ export type ComponentType = | 'TimePicker' | 'TreeSelect' | 'Upload' - | 'ApiCascader' | BaseFormComponentType; async function initComponentAdapter() { diff --git a/apps/web-ele/src/views/mall/statistics/product/components/product-summary.vue b/apps/web-ele/src/views/mall/statistics/product/components/product-summary.vue index bc1562551..1a7717144 100644 --- a/apps/web-ele/src/views/mall/statistics/product/components/product-summary.vue +++ b/apps/web-ele/src/views/mall/statistics/product/components/product-summary.vue @@ -242,6 +242,7 @@ const loadOverview = () => { totalTitle: '昨日数据', totalValue: trendSummary.value?.reference?.orderPayCount || 0, value: trendSummary.value?.value?.orderPayCount || 0, + tooltip: '在选定条件下,成功付款订单的商品件数之和', }, { icon: SvgBellIcon, @@ -249,6 +250,7 @@ const loadOverview = () => { totalTitle: '昨日数据', totalValue: trendSummary.value?.reference?.afterSaleCount || 0, value: trendSummary.value?.value?.orderPayPrice || 0, + tooltip: '在选定条件下,成功付款订单的商品金额之和', }, { icon: SvgBellIcon, @@ -256,6 +258,7 @@ const loadOverview = () => { totalTitle: '昨日数据', totalValue: trendSummary.value?.reference?.afterSaleCount || 0, value: trendSummary.value?.value?.afterSaleCount || 0, + tooltip: '在选定条件下,成功退款的商品件数之和', }, { icon: SvgBellIcon, @@ -263,6 +266,7 @@ const loadOverview = () => { totalTitle: '昨日数据', totalValue: trendSummary.value?.reference?.afterSaleRefundPrice || 0, value: trendSummary.value?.value?.afterSaleRefundPrice || 0, + tooltip: '在选定条件下,成功退款的商品金额之和', }, ]; }; diff --git a/apps/web-ele/src/views/mall/statistics/trade/index.vue b/apps/web-ele/src/views/mall/statistics/trade/index.vue index dd0e7eb2b..bfd20d4bf 100644 --- a/apps/web-ele/src/views/mall/statistics/trade/index.vue +++ b/apps/web-ele/src/views/mall/statistics/trade/index.vue @@ -1,7 +1,63 @@