From c24433c6d771e7383d43643c7871a71b4a17a0bc Mon Sep 17 00:00:00 2001 From: wpp <58198665+879356503@users.noreply.github.com> Date: Sat, 22 Mar 2025 16:08:19 +0800 Subject: [PATCH] =?UTF-8?q?CodeCheck=E9=81=97=E7=95=99=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/ets/constants/ListDataConstants.ets | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/entry/src/main/ets/constants/ListDataConstants.ets b/entry/src/main/ets/constants/ListDataConstants.ets index ba7e702..938e316 100644 --- a/entry/src/main/ets/constants/ListDataConstants.ets +++ b/entry/src/main/ets/constants/ListDataConstants.ets @@ -20,61 +20,61 @@ export class ListDataConstants { /** * Tab adaptive uri. */ - static readonly TAB_ADAPTIVE_URI: string = 'AdaptiveTabCenteringIndex'; + public static readonly TAB_ADAPTIVE_URI: string = 'AdaptiveTabCenteringIndex'; /** * Table adaptive uri. */ - static readonly TABLE_ADAPTIVE_URI: string = 'TableAdaptiveExtensionIndex'; + public static readonly TABLE_ADAPTIVE_URI: string = 'TableAdaptiveExtensionIndex'; /** * Double tab adaptive uri. */ - static readonly DOUBLE_TAB_ADAPTIVE_URI: string = 'DoubleTabAdaptiveCenteringIndex'; + public static readonly DOUBLE_TAB_ADAPTIVE_URI: string = 'DoubleTabAdaptiveCenteringIndex'; /** * Recommendation tab list. */ - static readonly RECOMMENDATION_TAB_LIST: Resource[] = + public static readonly RECOMMENDATION_TAB_LIST: Resource[] = [$r('app.string.recommendation'), $r('app.string.all_time'), $r('app.string.focus_news'), $r('app.string.calendar'), $r('app.string.follow'), $r('app.string.share_a')]; /** * Stock options tab list 1. */ - static readonly STOCK_OPTIONS_LIST1: Resource[] = + public static readonly STOCK_OPTIONS_LIST1: Resource[] = [$r('app.string.share_a'), $r('app.string.global'), $r('app.string.share_b'), $r('app.string.share_c'), $r('app.string.e_mul_f'), $r('app.string.futures')]; /** * Stock options tab list 2. */ - static readonly STOCK_OPTIONS_LIST2: Resource[] = + public static readonly STOCK_OPTIONS_LIST2: Resource[] = [$r('app.string.large_market'), $r('app.string.plate'), $r('app.string.chinext_board'), $r('app.string.science'), $r('app.string.beijing_stock_exchange')]; /** * Indicator name list. */ - static readonly INDICATOR_NAME_LIST: Resource[] = + public static readonly INDICATOR_NAME_LIST: Resource[] = [$r('app.string.indicator_name'), $r('app.string.x_changhong'), $r('app.string.x_technology'), $r('app.string.x_satellite')]; /** * Indicator name column. */ - static readonly INDICATOR_NAME_COLUMN: Resource[] = + public static readonly INDICATOR_NAME_COLUMN: Resource[] = [$r('app.string.core_indicators'), $r('app.string.industry_affiliation'), $r('app.string.latest_stock_price'), $r('app.string.price_fluctuation_range'), $r('app.string.earning_ratio')]; /** * Stock index data 1. */ - static readonly STOCK_INDEX_DATA1: Resource[] = + public static readonly STOCK_INDEX_DATA1: Resource[] = [$r('app.string.blank'), $r('app.string.computer'), $r('app.string.price'), $r('app.string.range1'), $r('app.string.earning1')]; /** * Stock index data 2. */ - static readonly STOCK_INDEX_DATA2: Resource[] = + public static readonly STOCK_INDEX_DATA2: Resource[] = [$r('app.string.blank'), $r('app.string.computer'), $r('app.string.price'), $r('app.string.range2'), $r('app.string.earning2')]; /** * Stock index data 3. */ - static readonly STOCK_INDEX_DATA3: Resource[] = + public static readonly STOCK_INDEX_DATA3: Resource[] = [$r('app.string.blank'), $r('app.string.computer'), $r('app.string.price'), $r('app.string.range2'), $r('app.string.earning2')]; } \ No newline at end of file -- Gitee