diff --git a/.claude/settings.local.json b/.claude/settings.local.json
index df3ef8d..e97fc72 100644
--- a/.claude/settings.local.json
+++ b/.claude/settings.local.json
@@ -111,7 +111,9 @@
"mcp__apifox__read_project_oas_4h0w3b",
"mcp__apifox__read_project_oas_ref_resources_4h0w3b",
"mcp__apifox__read_project_oas_6i29va",
- "mcp__apifox__read_project_oas_ref_resources_6i29va"
+ "mcp__apifox__read_project_oas_ref_resources_6i29va",
+ "mcp__plugin_claude-mem_mcp-search__smart_search",
+ "Bash(echo \"exit:$?\")"
],
"deny": [],
"ask": []
diff --git a/CLAUDE.md b/CLAUDE.md
index 4baf0c0..a1cec22 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -402,6 +402,55 @@ fun toggleAllExpand() {
| `radiobtn_unchecked_style` | 未选中 | 透明 + 黑色边框圆 |
| ~~`radiobtn_checked_gray`~~ | ❌ 禁用 | 灰色实心圆(错误样式) |
+#### 含子列表的列表项 UI 规范(以 `item_int_exp_storage_use.xml` 为基准)
+
+**主列表项卡片**:
+
+| 部位 | 属性 | 标准值 |
+|------|------|--------|
+| 外层容器 | marginHorizontal / marginTop | 10dp / 10dp |
+| 卡片背景 | background | `@drawable/bg_white_radius_8` |
+| 内容区 | padding | **10dp** |
+| 选中图标 | 尺寸 / marginEnd | 40×40dp / 10dp |
+| 选中图标 | 切换资源 | `img_plane_s`(选中)/ `img_plane`(未选中)|
+| KV 文字 | textSize | **15sp**(Key 和 Value 均需显式设置)|
+| 首要字段值(运单号)| textColor | `@color/colorPrimary` |
+| 其他字段 | textColor | 无需设置(继承默认 text_normal)|
+| 两行间距 | layout_marginTop | 10dp |
+
+**展开/折叠按钮(`iv_show`)**:
+
+| 属性 | 标准值 |
+|------|--------|
+| layout_height | **18dp** |
+| padding | **4dp** |
+| layout_marginBottom | 5dp(**不设 marginTop**)|
+| src | `@mipmap/img_down` |
+| 显示控制 | `visible="@{bean.subList != null && !bean.subList.empty}"` |
+
+**子列表区域**:
+
+- 容器:`layout_marginTop="5dp"`,`background="#e3f6e0"`
+- 表头行:`layout_marginVertical="10dp"`,`paddingHorizontal="10dp"`
+- 表头文字:`textSize="14sp"`,`textColor="@color/text_normal"`,`textStyle="bold"`,`gravity="center"`
+- 表头下方分隔线:`MaterialDivider` 高度 1px,`background="@color/c999999"`
+- 子列表项 padding:`paddingHorizontal="10dp"`,`paddingVertical="8dp"`
+- 子列表文字:`textSize="14sp"`,`textColor="@color/text_normal"`,`gravity="center"`,`layout_gravity="center_vertical"`
+
+**子列表复选框(关键)**:
+
+```xml
+
+```
+
+> `loadImage` 和 `android:src` **均须**使用 `_style` 系列,**禁止**使用 `_gray` 系列(参见上方复选框样式表)
+
**参考文件**: `module_gjc/.../IntExpStorageUseActivity.kt`、`IntExpStorageUseViewModel.kt`
---
diff --git a/app/src/main/java/com/lukouguoji/aerologic/ui/fragment/HomeFragment.kt b/app/src/main/java/com/lukouguoji/aerologic/ui/fragment/HomeFragment.kt
index 4a8d487..c631f7e 100644
--- a/app/src/main/java/com/lukouguoji/aerologic/ui/fragment/HomeFragment.kt
+++ b/app/src/main/java/com/lukouguoji/aerologic/ui/fragment/HomeFragment.kt
@@ -840,14 +840,14 @@ class HomeFragment : Fragment() {
list.add(
RightMenu(
Constant.AuthName.IntImpTally,
- R.mipmap.img_bwjx,
+ R.drawable.img_gjc_chugang_lihuo,
"理货报告"
)
)
list.add(
RightMenu(
Constant.AuthName.GjjWareHouseActivity,
- R.mipmap.gnj_cang_ku_icon,
+ R.drawable.gjc_cang_ku_icon,
"进港仓库"
)
)
@@ -861,14 +861,14 @@ class HomeFragment : Fragment() {
list.add(
RightMenu(
Constant.AuthName.IntImpPickUpDLV,
- R.mipmap.gnj_cang_ku_icon,
+ R.drawable.img_gjc_chuku_jiaojie,
"提取出库"
)
)
list.add(
RightMenu(
Constant.AuthName.GjjQueryListActivity,
- R.mipmap.img_bwjx,
+ R.drawable.gjc_query_icon,
"进港查询"
)
)
diff --git a/app/src/main/res/layout/item_log_query.xml b/app/src/main/res/layout/item_log_query.xml
index d25dda6..0a63802 100644
--- a/app/src/main/res/layout/item_log_query.xml
+++ b/app/src/main/res/layout/item_log_query.xml
@@ -29,15 +29,17 @@
android:gravity="center_vertical">
+ android:text="关键字:"
+ android:textSize="15sp"
+ completeSpace="@{4}" />
+ android:text="@{bean.key}"
+ android:textSize="15sp" />
@@ -48,15 +50,17 @@
android:gravity="center_vertical">
+ android:text="日志类型:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.logType}"
+ android:textSize="15sp" />
@@ -67,15 +71,17 @@
android:gravity="center_vertical">
+ android:text="操作员:"
+ android:textSize="15sp"
+ completeSpace="@{4}" />
+ android:text="@{bean.opId}"
+ android:textSize="15sp" />
@@ -86,15 +92,17 @@
android:gravity="center_vertical">
+ android:text="操作时间:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.opTime}"
+ android:textSize="15sp" />
@@ -107,15 +115,17 @@
android:layout_marginTop="10dp">
+ android:text="操作内容:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.content}"
+ android:textSize="15sp" />
diff --git a/app/src/main/res/layout/item_uld_list.xml b/app/src/main/res/layout/item_uld_list.xml
index 5cf5eeb..9e7f379 100644
--- a/app/src/main/res/layout/item_uld_list.xml
+++ b/app/src/main/res/layout/item_uld_list.xml
@@ -46,7 +46,7 @@
android:layout_weight="1"
android:orientation="vertical">
-
+
@@ -59,16 +59,18 @@
android:gravity="center_vertical">
+ android:text="ULD编号:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:textColor="@color/colorPrimary"
+ android:textSize="15sp" />
@@ -80,16 +82,18 @@
android:gravity="center_vertical">
+ android:text="状态:"
+ android:textSize="15sp"
+ completeSpace="@{3}" />
+ android:textColor='@{bean.status.equals("0") ? @color/text_green : @color/red}'
+ android:textSize="15sp" />
@@ -101,15 +105,17 @@
android:gravity="center_vertical">
+ android:text="自重:"
+ android:textSize="15sp"
+ completeSpace="@{3}" />
+ android:text="@{bean.uldWeight}"
+ android:textSize="15sp" />
@@ -121,15 +127,17 @@
android:gravity="center_vertical">
+ android:text="所属航司:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.carrier}"
+ android:textSize="15sp" />
@@ -141,21 +149,23 @@
android:gravity="center_vertical">
+ android:text="最大装载容积:"
+ android:textSize="15sp"
+ completeSpace="@{7}" />
+ android:text="@{bean.maxVolume}"
+ android:textSize="15sp" />
-
+
+ android:text="最大载重:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.maxWeight}"
+ android:textSize="15sp" />
@@ -189,15 +201,17 @@
android:gravity="center_vertical">
+ android:text="备注:"
+ android:textSize="15sp"
+ completeSpace="@{3}" />
+ android:text="@{bean.remark}"
+ android:textSize="15sp" />
diff --git a/module_gjc/src/main/res/layout/item_gjc_assemble_allocate.xml b/module_gjc/src/main/res/layout/item_gjc_assemble_allocate.xml
index 0dcd778..8664848 100644
--- a/module_gjc/src/main/res/layout/item_gjc_assemble_allocate.xml
+++ b/module_gjc/src/main/res/layout/item_gjc_assemble_allocate.xml
@@ -51,12 +51,14 @@
@@ -72,12 +74,14 @@
@@ -94,12 +98,14 @@
@@ -123,12 +129,14 @@
@@ -144,12 +152,14 @@
@@ -165,12 +175,14 @@
diff --git a/module_gjc/src/main/res/layout/item_gjc_box_weighing.xml b/module_gjc/src/main/res/layout/item_gjc_box_weighing.xml
index fd0743d..aac4405 100644
--- a/module_gjc/src/main/res/layout/item_gjc_box_weighing.xml
+++ b/module_gjc/src/main/res/layout/item_gjc_box_weighing.xml
@@ -50,11 +50,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="ULD编号:" />
@@ -72,11 +74,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="架子车号:" />
@@ -93,11 +97,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="总重:" />
@@ -114,11 +120,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="装机重量:" />
@@ -135,11 +143,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="货重:" />
@@ -164,11 +174,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="航班日期:" />
@@ -185,11 +197,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="航班号:" />
@@ -206,11 +220,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="目的港:" />
@@ -227,11 +243,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="过磅人:" />
@@ -248,11 +266,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="过磅时间:" />
diff --git a/module_gjc/src/main/res/layout/item_gjc_inspection.xml b/module_gjc/src/main/res/layout/item_gjc_inspection.xml
index 9cfe480..d0322ba 100644
--- a/module_gjc/src/main/res/layout/item_gjc_inspection.xml
+++ b/module_gjc/src/main/res/layout/item_gjc_inspection.xml
@@ -53,12 +53,14 @@
@@ -75,12 +77,14 @@
@@ -96,12 +100,14 @@
@@ -117,12 +123,14 @@
@@ -138,12 +146,14 @@
@@ -167,12 +177,14 @@
@@ -188,12 +200,14 @@
@@ -209,12 +223,14 @@
@@ -239,12 +255,14 @@
@@ -260,6 +278,7 @@
@@ -267,6 +286,7 @@
android:id="@+id/tv_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:textStyle="bold"
tools:text="已通过" />
diff --git a/module_gjc/src/main/res/layout/item_gjc_query.xml b/module_gjc/src/main/res/layout/item_gjc_query.xml
index 387390e..be2d2bc 100644
--- a/module_gjc/src/main/res/layout/item_gjc_query.xml
+++ b/module_gjc/src/main/res/layout/item_gjc_query.xml
@@ -1,298 +1,318 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/module_gjc/src/main/res/layout/item_gjc_un_load.xml b/module_gjc/src/main/res/layout/item_gjc_un_load.xml
index eb552cf..b4c1bea 100644
--- a/module_gjc/src/main/res/layout/item_gjc_un_load.xml
+++ b/module_gjc/src/main/res/layout/item_gjc_un_load.xml
@@ -48,7 +48,7 @@
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="运单号:"
- android:textColor="@color/weak_grey"
+ android:textSize="15sp"
android:textStyle="bold" />
@@ -68,12 +69,14 @@
+ android:text="件数:"
+ android:textSize="15sp" />
+ android:text="@{bean.pc}"
+ android:textSize="15sp" />
@@ -85,12 +88,14 @@
+ android:text="重量:"
+ android:textSize="15sp" />
+ android:text="@{bean.weight}"
+ android:textSize="15sp" />
@@ -102,12 +107,14 @@
+ android:text="目的港:"
+ android:textSize="15sp" />
+ android:text="@{bean.dest}"
+ android:textSize="15sp" />
@@ -119,12 +126,14 @@
+ android:text="代理:"
+ android:textSize="15sp" />
+ android:text="@{bean.agent}"
+ android:textSize="15sp" />
@@ -144,12 +153,14 @@
+ android:text="特码:"
+ android:textSize="15sp" />
+ android:text="@{bean.spcode}"
+ android:textSize="15sp" />
@@ -161,12 +172,14 @@
+ android:text="业务类型:"
+ android:textSize="15sp" />
+ android:text="@{bean.businesstype}"
+ android:textSize="15sp" />
@@ -178,12 +191,14 @@
+ android:text="品名(中):"
+ android:textSize="15sp" />
+ android:text="@{bean.goods}"
+ android:textSize="15sp" />
diff --git a/module_gjc/src/main/res/layout/item_gjc_weighing.xml b/module_gjc/src/main/res/layout/item_gjc_weighing.xml
index def4fe2..0baac7f 100644
--- a/module_gjc/src/main/res/layout/item_gjc_weighing.xml
+++ b/module_gjc/src/main/res/layout/item_gjc_weighing.xml
@@ -57,11 +57,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="运单号:" />
@@ -79,11 +81,13 @@
completeSpace="@{4}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="代理人:" />
@@ -124,11 +130,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="预配件数:" />
@@ -145,11 +153,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="预配重量:" />
@@ -174,11 +184,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="计划航班:" />
@@ -195,11 +207,13 @@
completeSpace="@{4}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="航程:" />
@@ -216,11 +230,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="预计起飞:" />
@@ -246,11 +262,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="业务类型:" />
@@ -267,11 +285,13 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textSize="15sp"
android:text="品名(中):" />
+ android:text="运单号:"
+ android:textSize="15sp" />
@@ -73,12 +75,14 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="预配件数:" />
+ android:text="预配件数:"
+ android:textSize="15sp" />
@@ -94,12 +98,14 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="预配重量:" />
+ android:text="预配重量:"
+ android:textSize="15sp" />
@@ -115,12 +121,14 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="入库件数:" />
+ android:text="入库件数:"
+ android:textSize="15sp" />
@@ -136,12 +144,14 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="入库重量:" />
+ android:text="入库重量:"
+ android:textSize="15sp" />
@@ -165,12 +175,14 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="代理人:" />
+ android:text="代理人:"
+ android:textSize="15sp" />
@@ -186,12 +198,14 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="特码:" />
+ android:text="特码:"
+ android:textSize="15sp" />
@@ -207,12 +221,14 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="收运人:" />
+ android:text="收运人:"
+ android:textSize="15sp" />
@@ -228,12 +244,14 @@
completeSpace="@{5}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="入库时间:" />
+ android:text="入库时间:"
+ android:textSize="15sp" />
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 c0ef3de..4a6d8c7 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
@@ -34,7 +34,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
- android:padding="15dp"
+ android:padding="10dp"
android:gravity="center_vertical">
@@ -75,14 +75,14 @@
completeSpace="@{4}"
android:text="运单号:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
@@ -101,14 +101,14 @@
completeSpace="@{5}"
android:text="状态:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -126,7 +126,7 @@
completeSpace="@{5}"
android:text="代理:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -154,14 +154,14 @@
completeSpace="@{5}"
android:text="件数:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -179,14 +179,14 @@
completeSpace="@{4}"
android:text="重量:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -214,14 +214,14 @@
completeSpace="@{4}"
android:text="航程:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -239,14 +239,14 @@
completeSpace="@{5}"
android:text="计重状态:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -264,14 +264,14 @@
completeSpace="@{5}"
android:text="运抵状态:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -289,14 +289,14 @@
completeSpace="@{5}"
android:text="运单类型:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -314,14 +314,14 @@
completeSpace="@{4}"
android:text="分单数:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -335,10 +335,9 @@
diff --git a/module_gjc/src/main/res/layout/item_int_exp_arrive_sub.xml b/module_gjc/src/main/res/layout/item_int_exp_arrive_sub.xml
index 7b11583..f8f8163 100644
--- a/module_gjc/src/main/res/layout/item_int_exp_arrive_sub.xml
+++ b/module_gjc/src/main/res/layout/item_int_exp_arrive_sub.xml
@@ -29,12 +29,11 @@
diff --git a/module_gjc/src/main/res/layout/item_int_exp_assemble.xml b/module_gjc/src/main/res/layout/item_int_exp_assemble.xml
index e7bea4a..85660cd 100644
--- a/module_gjc/src/main/res/layout/item_int_exp_assemble.xml
+++ b/module_gjc/src/main/res/layout/item_int_exp_assemble.xml
@@ -41,7 +41,7 @@
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
- android:padding="15dp">
+ android:padding="10dp">
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -106,14 +106,14 @@
completeSpace="@{4}"
android:text="货重:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -131,14 +131,14 @@
completeSpace="@{4}"
android:text="件数:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -156,14 +156,14 @@
completeSpace="@{5}"
android:text="复磅状态:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -181,14 +181,14 @@
completeSpace="@{5}"
android:text="回填状态:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -216,14 +216,14 @@
completeSpace="@{5}"
android:text="航班日期:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -241,14 +241,14 @@
completeSpace="@{4}"
android:text="航班号:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -266,14 +266,14 @@
completeSpace="@{4}"
android:text="组装人:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -291,14 +291,14 @@
completeSpace="@{5}"
android:text="组装区:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -316,14 +316,14 @@
completeSpace="@{5}"
android:text="组装时间:"
android:textColor="@color/text_normal"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -337,10 +337,9 @@
diff --git a/module_gjc/src/main/res/layout/item_int_exp_assemble_uld.xml b/module_gjc/src/main/res/layout/item_int_exp_assemble_uld.xml
index 2afa041..b025cb6 100644
--- a/module_gjc/src/main/res/layout/item_int_exp_assemble_uld.xml
+++ b/module_gjc/src/main/res/layout/item_int_exp_assemble_uld.xml
@@ -18,10 +18,11 @@
+ android:padding="10dp">
+ android:textSize="15sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -126,7 +127,7 @@
@@ -134,75 +135,75 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text='@{"总重:"}'
- android:textColor="@color/text_gray"
- android:textSize="14sp" />
+ android:textColor="@color/text_normal"
+ android:textSize="15sp" />
+ android:textColor="@color/text_normal"
+ android:textSize="15sp" />
+ android:textColor="@color/text_normal"
+ android:textSize="15sp" />
+ android:textColor="@color/text_normal"
+ android:textSize="15sp" />
+ android:textColor="@color/text_normal"
+ android:textSize="15sp" />
+ android:textColor="@color/text_normal"
+ android:textSize="15sp" />
+ android:textColor="@color/text_normal"
+ android:textSize="15sp" />
+ android:textColor="@color/text_normal"
+ android:textSize="15sp" />
+ android:textColor="@color/text_normal"
+ android:textSize="15sp" />
+ android:textColor="@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 d6c9ac3..84e1ac4 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
@@ -18,11 +18,12 @@
+ android:padding="10dp">
@@ -87,7 +88,7 @@
android:layout_height="wrap_content"
android:text="状态:"
android:textColor="@color/text_normal"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{5}" />
+ android:textSize="15sp" />
@@ -112,7 +113,7 @@
android:layout_height="wrap_content"
android:text="件数:"
android:textColor="@color/text_normal"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{4}" />
+ android:textSize="15sp" />
@@ -137,7 +138,7 @@
android:layout_height="wrap_content"
android:text="重量:"
android:textColor="@color/text_normal"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{5}" />
+ android:textSize="15sp" />
@@ -172,7 +173,7 @@
android:layout_height="wrap_content"
android:text="特码:"
android:textColor="@color/text_normal"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{4}" />
+ android:textSize="15sp" />
@@ -197,7 +198,7 @@
android:layout_height="wrap_content"
android:text="航班日期:"
android:textColor="@color/text_normal"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{5}" />
+ android:textSize="15sp" />
@@ -222,7 +223,7 @@
android:layout_height="wrap_content"
android:text="航班号:"
android:textColor="@color/text_normal"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{4}" />
+ android:textSize="15sp" />
@@ -247,7 +248,7 @@
android:layout_height="wrap_content"
android:text="品名(中):"
android:textColor="@color/text_normal"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{5}" />
+ android:textSize="15sp" />
diff --git a/module_gjc/src/main/res/layout/item_int_exp_move.xml b/module_gjc/src/main/res/layout/item_int_exp_move.xml
index 8ad1dd6..1139536 100644
--- a/module_gjc/src/main/res/layout/item_int_exp_move.xml
+++ b/module_gjc/src/main/res/layout/item_int_exp_move.xml
@@ -27,7 +27,7 @@
android:layout_height="wrap_content"
android:background="@drawable/bg_white_radius_8"
android:orientation="horizontal"
- android:padding="15dp"
+ android:padding="10dp"
android:gravity="center_vertical">
@@ -65,12 +65,14 @@
@@ -87,12 +89,14 @@
@@ -108,12 +112,14 @@
@@ -129,12 +135,14 @@
@@ -150,12 +158,14 @@
@@ -229,12 +243,14 @@
@@ -274,12 +292,14 @@
@@ -61,13 +62,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="ULD编码:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp"/>
@@ -84,13 +85,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="架子车号:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -107,13 +108,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="总重:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -130,13 +131,13 @@
android:layout_height="wrap_content"
completeSpace="@{4}"
android:text="货重:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -153,13 +154,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="航班信息:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -186,13 +187,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="目的港:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -209,13 +210,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="库位号:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -232,14 +233,14 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="复磅状态:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -256,13 +257,13 @@
android:layout_height="wrap_content"
completeSpace="@{4}"
android:text="交接人:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -279,13 +280,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="交接时间:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
diff --git a/module_gjc/src/main/res/layout/item_int_exp_storage_use.xml b/module_gjc/src/main/res/layout/item_int_exp_storage_use.xml
index 3a221c7..906784f 100644
--- a/module_gjc/src/main/res/layout/item_int_exp_storage_use.xml
+++ b/module_gjc/src/main/res/layout/item_int_exp_storage_use.xml
@@ -73,14 +73,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="运单号:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -96,13 +96,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="航班信息:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -118,13 +118,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="航程:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -140,7 +140,7 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="品名(英):"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -164,13 +164,13 @@
android:layout_height="wrap_content"
completeSpace="@{4}"
android:text="重量:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -195,13 +195,13 @@
android:layout_height="wrap_content"
completeSpace="@{4}"
android:text="代理人:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -217,13 +217,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="件数:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -239,13 +239,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="清仓正常:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -261,13 +261,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="入库时间:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -283,13 +283,13 @@
android:layout_height="wrap_content"
completeSpace="@{4}"
android:text="库位数:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -303,10 +303,9 @@
diff --git a/module_gjc/src/main/res/layout/item_int_exp_storage_use_sub.xml b/module_gjc/src/main/res/layout/item_int_exp_storage_use_sub.xml
index 21e5f28..e139817 100644
--- a/module_gjc/src/main/res/layout/item_int_exp_storage_use_sub.xml
+++ b/module_gjc/src/main/res/layout/item_int_exp_storage_use_sub.xml
@@ -27,7 +27,7 @@
android:layout_height="20dp"
android:layout_gravity="center_vertical"
android:layout_weight="0.5"
- loadImage="@{bean.checked.get() ? @drawable/radiobtn_checked_gray : @drawable/radiobtn_unchecked_gray}"
+ loadImage="@{bean.checked.get() ? @drawable/radiobtn_checked_style : @drawable/radiobtn_unchecked_style}"
android:src="@drawable/radiobtn_unchecked_style" />
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 ca48189..5664755 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
@@ -19,56 +19,56 @@
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
@@ -77,10 +77,9 @@
diff --git a/module_gjc/src/main/res/layout/item_int_exp_tally_sub.xml b/module_gjc/src/main/res/layout/item_int_exp_tally_sub.xml
index d2d612c..426a7ce 100644
--- a/module_gjc/src/main/res/layout/item_int_exp_tally_sub.xml
+++ b/module_gjc/src/main/res/layout/item_int_exp_tally_sub.xml
@@ -29,12 +29,11 @@
diff --git a/module_gjj/src/main/res/layout/item_gjj_manifest.xml b/module_gjj/src/main/res/layout/item_gjj_manifest.xml
index 62d0fe5..c15712c 100644
--- a/module_gjj/src/main/res/layout/item_gjj_manifest.xml
+++ b/module_gjj/src/main/res/layout/item_gjj_manifest.xml
@@ -64,7 +64,7 @@
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="运单号:"
- android:textColor="@color/weak_grey"
+ android:textSize="15sp"
android:textStyle="bold" />
@@ -84,12 +85,14 @@
+ android:text="始发站:"
+ android:textSize="15sp" />
+ android:text="@{bean.origin}"
+ android:textSize="15sp" />
@@ -101,12 +104,14 @@
+ android:text="目的港:"
+ android:textSize="15sp" />
+ android:text="@{bean.dest}"
+ android:textSize="15sp" />
@@ -118,12 +123,14 @@
+ android:text="代理:"
+ android:textSize="15sp" />
+ android:text="@{bean.agent}"
+ android:textSize="15sp" />
@@ -135,12 +142,14 @@
+ android:text="运单件数:"
+ android:textSize="15sp" />
+ android:text='@{bean.awbpc + ""}'
+ android:textSize="15sp" />
@@ -160,12 +169,14 @@
+ android:text="实到件数:"
+ android:textSize="15sp" />
+ android:text='@{bean.pc + ""}'
+ android:textSize="15sp" />
@@ -177,12 +188,14 @@
+ android:text="实到重量:"
+ android:textSize="15sp" />
+ android:text='@{bean.weight + ""}'
+ android:textSize="15sp" />
@@ -194,12 +207,14 @@
+ android:text="特码:"
+ android:textSize="15sp" />
+ android:text="@{bean.spCode}"
+ android:textSize="15sp" />
@@ -211,12 +226,14 @@
+ android:text="业务类型:"
+ android:textSize="15sp" />
+ android:text="@{bean.businessType}"
+ android:textSize="15sp" />
@@ -228,12 +245,14 @@
+ android:text="品名:"
+ android:textSize="15sp" />
+ android:text="@{bean.goods}"
+ android:textSize="15sp" />
@@ -246,9 +265,9 @@
diff --git a/module_gjj/src/main/res/layout/item_gjj_tally.xml b/module_gjj/src/main/res/layout/item_gjj_tally.xml
index 75bf6fc..4c41554 100644
--- a/module_gjj/src/main/res/layout/item_gjj_tally.xml
+++ b/module_gjj/src/main/res/layout/item_gjj_tally.xml
@@ -52,13 +52,14 @@
@@ -73,11 +74,13 @@
@@ -90,11 +93,13 @@
@@ -107,11 +112,13 @@
@@ -124,10 +131,12 @@
@@ -150,11 +159,13 @@
@@ -167,11 +178,13 @@
@@ -184,11 +197,13 @@
@@ -201,11 +216,13 @@
@@ -218,11 +235,13 @@
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 9b14738..3db4583 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
@@ -74,12 +74,14 @@
@@ -96,12 +98,14 @@
@@ -116,12 +120,14 @@
@@ -136,12 +142,14 @@
@@ -156,12 +164,14 @@
@@ -184,12 +194,14 @@
@@ -204,12 +216,14 @@
@@ -224,12 +238,14 @@
@@ -244,12 +260,14 @@
@@ -264,12 +282,14 @@
@@ -292,8 +312,9 @@
diff --git a/module_gjj/src/main/res/layout/item_int_imp_accident_visa.xml b/module_gjj/src/main/res/layout/item_int_imp_accident_visa.xml
index 328c5f7..ef929b3 100644
--- a/module_gjj/src/main/res/layout/item_int_imp_accident_visa.xml
+++ b/module_gjj/src/main/res/layout/item_int_imp_accident_visa.xml
@@ -70,14 +70,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="航班日期:"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{5}" />
+ android:textSize="15sp" />
@@ -92,14 +92,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="始发站:"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{4}" />
+ android:textSize="15sp" />
@@ -114,14 +114,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="运单总件数:"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{6}" />
+ android:textSize="15sp" />
@@ -136,14 +136,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="不正常件数:"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{6}" />
+ android:textSize="15sp" />
@@ -158,8 +158,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="运单号:"
- android:textColor="@color/colorPrimary"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{5}" />
+ android:textSize="15sp" />
@@ -191,14 +190,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="航班号:"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{5}" />
+ android:textSize="15sp" />
@@ -213,14 +212,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="目的站:"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{4}" />
+ android:textSize="15sp" />
@@ -235,14 +234,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="运单总重量:"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{6}" />
+ android:textSize="15sp" />
@@ -257,14 +256,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="经办人:"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{6}" />
+ android:textSize="15sp" />
@@ -279,14 +278,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="经办时间:"
- android:textSize="16sp"
+ android:textSize="15sp"
completeSpace="@{5}" />
+ android:textSize="15sp" />
diff --git a/module_gjj/src/main/res/layout/item_int_imp_loading_list.xml b/module_gjj/src/main/res/layout/item_int_imp_loading_list.xml
index 3249b4c..d62973c 100644
--- a/module_gjj/src/main/res/layout/item_int_imp_loading_list.xml
+++ b/module_gjj/src/main/res/layout/item_int_imp_loading_list.xml
@@ -1,341 +1,323 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/module_gjj/src/main/res/layout/item_int_imp_manifest.xml b/module_gjj/src/main/res/layout/item_int_imp_manifest.xml
index 017f3ff..7c48c26 100644
--- a/module_gjj/src/main/res/layout/item_int_imp_manifest.xml
+++ b/module_gjj/src/main/res/layout/item_int_imp_manifest.xml
@@ -1,498 +1,471 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/module_gjj/src/main/res/layout/item_int_imp_pick_up_dlv.xml b/module_gjj/src/main/res/layout/item_int_imp_pick_up_dlv.xml
index 0f28deb..237961f 100644
--- a/module_gjj/src/main/res/layout/item_int_imp_pick_up_dlv.xml
+++ b/module_gjj/src/main/res/layout/item_int_imp_pick_up_dlv.xml
@@ -58,14 +58,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="运单号:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
@@ -82,13 +82,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="代理人:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -104,13 +104,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="航班信息:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -126,13 +126,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="件数:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -148,13 +148,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="重量:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -178,13 +178,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="提货单号:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -200,13 +200,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="库位:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -222,13 +222,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="提取时间:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -244,7 +244,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="品名(中):"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
diff --git a/module_gjj/src/main/res/layout/item_int_imp_pick_up_record.xml b/module_gjj/src/main/res/layout/item_int_imp_pick_up_record.xml
index fc957c0..e004b58 100644
--- a/module_gjj/src/main/res/layout/item_int_imp_pick_up_record.xml
+++ b/module_gjj/src/main/res/layout/item_int_imp_pick_up_record.xml
@@ -71,14 +71,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="运单号:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -94,13 +94,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="件数:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -116,13 +116,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="重量:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -138,13 +138,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="计费重量:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -160,13 +160,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="代理:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -190,13 +190,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="特码:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -212,13 +212,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="服务费:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -234,13 +234,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="仓储费:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -256,13 +256,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="总金额:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -278,13 +278,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="提取时间:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
diff --git a/module_gjj/src/main/res/layout/item_int_imp_query.xml b/module_gjj/src/main/res/layout/item_int_imp_query.xml
index f6c6265..716daab 100644
--- a/module_gjj/src/main/res/layout/item_int_imp_query.xml
+++ b/module_gjj/src/main/res/layout/item_int_imp_query.xml
@@ -60,12 +60,14 @@
@@ -82,12 +84,14 @@
@@ -103,12 +107,14 @@
@@ -124,12 +130,14 @@
@@ -145,12 +153,14 @@
@@ -174,12 +184,14 @@
@@ -195,12 +207,14 @@
@@ -216,12 +230,14 @@
@@ -237,12 +253,14 @@
@@ -258,12 +276,14 @@
diff --git a/module_gjj/src/main/res/layout/item_int_imp_storage_use.xml b/module_gjj/src/main/res/layout/item_int_imp_storage_use.xml
index 4aa4ed0..aa58580 100644
--- a/module_gjj/src/main/res/layout/item_int_imp_storage_use.xml
+++ b/module_gjj/src/main/res/layout/item_int_imp_storage_use.xml
@@ -73,14 +73,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="运单号:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -96,13 +96,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="航班信息:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -118,13 +118,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="航程:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -140,7 +140,7 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="品名(英):"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -164,13 +164,13 @@
android:layout_height="wrap_content"
completeSpace="@{4}"
android:text="重量:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -195,13 +195,13 @@
android:layout_height="wrap_content"
completeSpace="@{4}"
android:text="代理人:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -217,13 +217,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="件数:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -239,13 +239,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="清仓正常:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -261,13 +261,13 @@
android:layout_height="wrap_content"
completeSpace="@{5}"
android:text="入库时间:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -283,13 +283,13 @@
android:layout_height="wrap_content"
completeSpace="@{4}"
android:text="库位数:"
- android:textSize="16sp" />
+ android:textSize="15sp" />
+ android:textSize="15sp" />
@@ -303,10 +303,9 @@
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 92d191d..a093ead 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
@@ -38,7 +38,7 @@
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
- android:padding="15dp">
+ android:padding="10dp">
@@ -98,12 +100,14 @@
@@ -119,12 +123,14 @@
@@ -140,12 +146,14 @@
@@ -161,12 +169,14 @@
@@ -192,12 +202,14 @@
@@ -213,12 +225,14 @@
@@ -234,12 +248,14 @@
@@ -255,12 +271,14 @@
@@ -276,12 +294,14 @@
@@ -304,10 +324,9 @@
diff --git a/module_hangban/src/main/java/com/lukouguoji/hangban/page/query/list/HbQueryListViewHolder.kt b/module_hangban/src/main/java/com/lukouguoji/hangban/page/query/list/HbQueryListViewHolder.kt
index 043bb09..88b039e 100644
--- a/module_hangban/src/main/java/com/lukouguoji/hangban/page/query/list/HbQueryListViewHolder.kt
+++ b/module_hangban/src/main/java/com/lukouguoji/hangban/page/query/list/HbQueryListViewHolder.kt
@@ -12,13 +12,20 @@ class HbQueryListViewHolder(view: View) :
val bean = getItemBean(item)!!
binding.bean = bean
- // 到达航班显示橙色
- val color = if (bean.beArrival()) {
- android.graphics.Color.parseColor("#FF8C00")
+ val ctx = binding.root.context
+ if (bean.beArrival()) {
+ // 到达航班:所有文字显示橙色
+ setTextColorRecursive(binding.ll, android.graphics.Color.parseColor("#FF8C00"))
} else {
- android.graphics.Color.parseColor("#333333")
+ // 非到达航班:使用 text_gray (#666666)
+ setTextColorRecursive(binding.ll, ctx.getColor(com.lukouguoji.hangban.R.color.text_gray))
+ binding.tvFnoValue.setTextColor(ctx.getColor(com.lukouguoji.hangban.R.color.colorPrimary))
+ val redColor = ctx.getColor(com.lukouguoji.hangban.R.color.text_red)
+ binding.tvEstTakeoffNext.setTextColor(redColor)
+ binding.tvActualTakeoffNext.setTextColor(redColor)
+ binding.tvEstArrivalNext.setTextColor(redColor)
+ binding.tvActualArrivalNext.setTextColor(redColor)
}
- setTextColorRecursive(binding.ll, color)
notifyItemClick(position, binding.ll)
}
diff --git a/module_hangban/src/main/res/layout/item_hb_query_list.xml b/module_hangban/src/main/res/layout/item_hb_query_list.xml
index 1402e8a..b414f14 100644
--- a/module_hangban/src/main/res/layout/item_hb_query_list.xml
+++ b/module_hangban/src/main/res/layout/item_hb_query_list.xml
@@ -36,10 +36,12 @@
android:layout_weight="1"
android:orientation="vertical">
+
+
+ android:text="航班日期:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.fdate}"
+ android:textSize="15sp" />
+
+ android:text="航班号:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.fno}"
+ android:textSize="15sp" />
+
+ android:text="航程:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.range}"
+ android:textSize="15sp" />
+
+ android:text="地区类型:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.getCountryTypeName()}"
+ android:textSize="15sp" />
+
+ android:text="计划起飞:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.scheduledTackOffHM}"
+ android:textSize="15sp" />
+
+
+ android:text="预计起飞:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.estimatedTakeOffHM}"
+ android:textSize="15sp" />
+
+ android:text="实际起飞:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.actualTakeOffHM}"
+ android:textSize="15sp" />
+
+ android:text="计划降落:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.scheduledArrivalHM}"
+ android:textSize="15sp" />
+
+ android:text="预计降落:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.estimatedArrivalHM}"
+ android:textSize="15sp" />
+
+ android:text="实际降落:"
+ android:textSize="15sp"
+ completeSpace="@{5}" />
+ android:text="@{bean.actualArrivalHM}"
+ android:textSize="15sp" />