fix: 出港装载列表始发站锁定、目的站改为下拉可选

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-29 16:19:42 +08:00
parent e9bef08309
commit 23b4a5ec31
2 changed files with 24 additions and 24 deletions

View File

@@ -52,24 +52,24 @@
value="@={viewModel.flightNo}"
setUpperCaseAlphanumeric="@{true}" />
<!-- 始发站(下拉选择:始发港 + 经停港 -->
<com.lukouguoji.module_base.ui.weight.search.layout.PadSearchLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
hint='@{"始发站"}'
type="@{SearchLayoutType.SPINNER}"
list="@{viewModel.depPortList}"
value="@={viewModel.depPort}" />
<!-- 目的站(航班查询自动填充,不可编辑) -->
<!-- 始发站(航班查询自动填充,锁定不可编辑 -->
<com.lukouguoji.module_base.ui.weight.search.layout.PadSearchLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
enable="@{false}"
hint='@{"目的站"}'
hint='@{"始发站"}'
type="@{SearchLayoutType.INPUT}"
value="@={viewModel.depPort}" />
<!-- 目的站(下拉选择:目的港 + 经停港) -->
<com.lukouguoji.module_base.ui.weight.search.layout.PadSearchLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
hint='@{"目的站"}'
type="@{SearchLayoutType.SPINNER}"
list="@{viewModel.destPortList}"
value="@={viewModel.destPort}" />
<!-- 运单号 -->