From 6ac33e0208562845015029d99715296ef5849b92 Mon Sep 17 00:00:00 2001 From: xingyu4j Date: Tue, 4 Nov 2025 20:12:24 +0800 Subject: [PATCH] fix: type cell dict props --- apps/web-antd/src/views/mall/promotion/banner/data.ts | 4 ++-- apps/web-ele/src/views/mall/promotion/banner/data.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/web-antd/src/views/mall/promotion/banner/data.ts b/apps/web-antd/src/views/mall/promotion/banner/data.ts index a168e6492..0490be5dd 100644 --- a/apps/web-antd/src/views/mall/promotion/banner/data.ts +++ b/apps/web-antd/src/views/mall/promotion/banner/data.ts @@ -145,7 +145,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] { cellRender: { name: 'CellDict', props: { - dictType: DICT_TYPE.COMMON_STATUS, + type: DICT_TYPE.COMMON_STATUS, }, }, }, @@ -156,7 +156,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] { cellRender: { name: 'CellDict', props: { - dictType: DICT_TYPE.PROMOTION_BANNER_POSITION, + type: DICT_TYPE.PROMOTION_BANNER_POSITION, }, }, }, diff --git a/apps/web-ele/src/views/mall/promotion/banner/data.ts b/apps/web-ele/src/views/mall/promotion/banner/data.ts index 37f5ac085..fe053472c 100644 --- a/apps/web-ele/src/views/mall/promotion/banner/data.ts +++ b/apps/web-ele/src/views/mall/promotion/banner/data.ts @@ -141,7 +141,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] { cellRender: { name: 'CellDict', props: { - dictType: DICT_TYPE.COMMON_STATUS, + type: DICT_TYPE.COMMON_STATUS, }, }, }, @@ -152,7 +152,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] { cellRender: { name: 'CellDict', props: { - dictType: DICT_TYPE.PROMOTION_BANNER_POSITION, + type: DICT_TYPE.PROMOTION_BANNER_POSITION, }, }, },