From c77c6a817b4117afee99060480525776a729bdee Mon Sep 17 00:00:00 2001 From: YANG JIANKUAN Date: Fri, 22 May 2026 11:10:47 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E5=9B=BD=E9=99=85=E5=87=BA=E6=B8=AF/?= =?UTF-8?q?=E8=BF=9B=E6=B8=AF=E5=88=97=E8=A1=A8=E7=8A=B6=E6=80=81=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E6=8C=89=E5=80=BC=E5=8F=98=E8=89=B2(01=E7=BB=BF/W?= =?UTF-8?q?=E8=93=9D)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- module_gjc/src/main/res/layout/item_int_exp_arrive.xml | 2 +- module_gjc/src/main/res/layout/item_int_exp_load.xml | 2 +- module_gjc/src/main/res/layout/item_int_exp_tally.xml | 2 +- module_gjj/src/main/res/layout/item_int_arr_air_manifest.xml | 3 ++- module_gjj/src/main/res/layout/item_int_imp_tally.xml | 3 ++- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/module_gjc/src/main/res/layout/item_int_exp_arrive.xml b/module_gjc/src/main/res/layout/item_int_exp_arrive.xml index e232c74..d244a2f 100644 --- a/module_gjc/src/main/res/layout/item_int_exp_arrive.xml +++ b/module_gjc/src/main/res/layout/item_int_exp_arrive.xml @@ -108,7 +108,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@{bean.declareStatus}" - android:textColor="@color/text_normal" + android:textColor="@{`01`.equals(bean.declareStatus) ? @color/text_green : (`W`.equals(bean.declareStatus) ? @color/text_blue : @color/text_normal)}" android:textSize="15sp" /> diff --git a/module_gjc/src/main/res/layout/item_int_exp_load.xml b/module_gjc/src/main/res/layout/item_int_exp_load.xml index 84e1ac4..dd96bc9 100644 --- a/module_gjc/src/main/res/layout/item_int_exp_load.xml +++ b/module_gjc/src/main/res/layout/item_int_exp_load.xml @@ -95,7 +95,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@{bean.loadStatus}" - android:textColor="@color/text_normal" + android:textColor="@{`01`.equals(bean.loadStatus) ? @color/text_green : (`W`.equals(bean.loadStatus) ? @color/text_blue : @color/text_normal)}" android:textSize="15sp" /> diff --git a/module_gjc/src/main/res/layout/item_int_exp_tally.xml b/module_gjc/src/main/res/layout/item_int_exp_tally.xml index 38b8242..0915572 100644 --- a/module_gjc/src/main/res/layout/item_int_exp_tally.xml +++ b/module_gjc/src/main/res/layout/item_int_exp_tally.xml @@ -25,7 +25,7 @@ - + diff --git a/module_gjj/src/main/res/layout/item_int_arr_air_manifest.xml b/module_gjj/src/main/res/layout/item_int_arr_air_manifest.xml index 9539265..1e856bd 100644 --- a/module_gjj/src/main/res/layout/item_int_arr_air_manifest.xml +++ b/module_gjj/src/main/res/layout/item_int_arr_air_manifest.xml @@ -107,7 +107,8 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="15sp" - android:text="@{manifest.mftStatus ?? ``}" /> + android:text="@{manifest.mftStatus ?? ``}" + android:textColor="@{`01`.equals(manifest.mftStatus) ? @color/text_green : (`W`.equals(manifest.mftStatus) ? @color/text_blue : @color/text_normal)}" /> diff --git a/module_gjj/src/main/res/layout/item_int_imp_tally.xml b/module_gjj/src/main/res/layout/item_int_imp_tally.xml index 5fa4a96..ecfd5cb 100644 --- a/module_gjj/src/main/res/layout/item_int_imp_tally.xml +++ b/module_gjj/src/main/res/layout/item_int_imp_tally.xml @@ -109,7 +109,8 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="15sp" - android:text="@{bean.status}" /> + android:text="@{bean.status}" + android:textColor="@{`01`.equals(bean.status) ? @color/text_green : (`W`.equals(bean.status) ? @color/text_blue : @color/text_normal)}" />