From d2bd1ea9d3f381251aab2bffe708dc9b43c8334b Mon Sep 17 00:00:00 2001 From: wpp <58198665+879356503@users.noreply.github.com> Date: Sat, 22 Mar 2025 16:16:51 +0800 Subject: [PATCH] =?UTF-8?q?CodeCheck=E9=81=97=E7=95=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/src/main/ets/common/CommonConstants.ets | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/entry/src/main/ets/common/CommonConstants.ets b/entry/src/main/ets/common/CommonConstants.ets index bea3c17..652a8b4 100644 --- a/entry/src/main/ets/common/CommonConstants.ets +++ b/entry/src/main/ets/common/CommonConstants.ets @@ -21,43 +21,43 @@ export class CommonConstants { /** * font weight is 500. */ - static readonly FONT_WEIGHT_FIVE: number = 500; + public static readonly FONT_WEIGHT_FIVE: number = 500; /** * font weight is 500. */ - static readonly FONT_WEIGHT_FOUR: number = 400; + public static readonly FONT_WEIGHT_FOUR: number = 400; /** * Index page padding top size. */ - static readonly PADDING_TOP_INDEX: number = 64; + public static readonly PADDING_TOP_INDEX: number = 64; /** * Index page padding bottom size. */ - static readonly PADDING_BOTTOM_INDEX: number = 16; + public static readonly PADDING_BOTTOM_INDEX: number = 16; /** * Width the percentage of the 100. */ - static readonly FULL_WIDTH: string = '100%'; + public static readonly FULL_WIDTH: string = '100%'; /** * Height the percentage of the 100. */ - static readonly FULL_HEIGHT: string = '100%'; + public static readonly FULL_HEIGHT: string = '100%'; /** * Breakpoint sm. */ - static readonly BREAK_POINT_SM: string = 'sm'; + public static readonly BREAK_POINT_SM: string = 'sm'; /** * Breakpoint md. */ - static readonly BREAK_POINT_MD: string = 'md'; + public static readonly BREAK_POINT_MD: string = 'md'; /** * Breakpoint lg. */ - static readonly BREAK_POINT_LG: string = 'lg'; + public static readonly BREAK_POINT_LG: string = 'lg'; /** * Routes */ - static readonly ROUTES: Route[] = [ + public static readonly ROUTES: Route[] = [ { text: $r('app.string.first_title'), to: 'application/MailBox' }, -- Gitee