This commit is contained in:
2025-11-27 17:49:14 +08:00
parent 0fbb9c3704
commit d69f964464
7 changed files with 145 additions and 98 deletions

View File

@@ -26,7 +26,7 @@
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal"
android:padding="16dp">
android:padding="10dp">
<!-- ========== 左侧区域30%========== -->
<LinearLayout
@@ -34,17 +34,28 @@
android:layout_height="match_parent"
android:layout_weight="0.3"
android:layout_marginEnd="8dp"
android:background="@drawable/bg_white_radius_8"
android:orientation="vertical">
<!-- 组装信息列表 -->
<!-- 搜索框 -->
<com.lukouguoji.module_base.ui.weight.search.layout.PadSearchLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:background="@color/color_f2"
hint='@{"请输入搜索内容"}'
type="@{SearchLayoutType.INPUT}"
value="@={viewModel.searchText}" />
<!-- 组装信息和组装位置卡片 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@drawable/bg_white_radius_8"
android:orientation="vertical"
android:padding="16dp">
<!-- 组装信息标题 -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -60,22 +71,15 @@
android:layout_marginBottom="8dp"
app:dividerColor="@color/line" />
<!-- 组装信息列表 -->
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_assemble_info"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
<!-- 组装位置选择 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:background="@drawable/bg_white_radius_8"
android:orientation="vertical"
android:padding="16dp">
android:layout_weight="1"
android:layout_marginBottom="16dp" />
<!-- 组装位置标题 -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -91,6 +95,7 @@
android:layout_marginBottom="8dp"
app:dividerColor="@color/line" />
<!-- 组装位置列表 -->
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_assemble_position"
android:layout_width="match_parent"
@@ -106,17 +111,6 @@
android:layout_marginStart="8dp"
android:orientation="vertical">
<!-- 搜索框 -->
<com.lukouguoji.module_base.ui.weight.search.layout.PadSearchLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
hint='@{"请输入运单号"}'
icon="@{@drawable/scan_code}"
setOnIconClickListener="@{(v) -> viewModel.scanWaybill()}"
type="@{SearchLayoutType.INPUT}"
value="@={viewModel.searchWaybillNo}" />
<!-- 运单列表 -->
<LinearLayout
android:layout_width="match_parent"
@@ -356,40 +350,41 @@
type="@{DataLayoutType.INPUT}"
value="@={viewModel.waybillInfo.goodsName}" />
</LinearLayout>
</LinearLayout>
<!-- 底部操作按钮 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="64dp"
android:gravity="center"
android:layout_marginTop="15dp"
android:orientation="horizontal"
android:paddingHorizontal="16dp">
<TextView
style="@style/tv_bottom_btn"
android:layout_width="120dp"
android:layout_height="44dp"
android:layout_marginEnd="8dp"
android:background="@drawable/bg_blue_radius_4"
android:onClick="@{() -> viewModel.onUnloadClick()}"
android:text="卸货"
android:textSize="16sp" />
<TextView
style="@style/tv_bottom_btn"
android:layout_width="120dp"
android:layout_height="44dp"
android:layout_marginStart="8dp"
android:background="@drawable/bg_red_radius_4"
android:onClick="@{() -> viewModel.onLoadClick()}"
android:text="装货"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<!-- 底部操作按钮 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="64dp"
android:background="@color/white"
android:gravity="center"
android:orientation="horizontal"
android:paddingHorizontal="16dp">
<TextView
style="@style/tv_bottom_btn"
android:layout_width="0dp"
android:layout_height="44dp"
android:layout_marginEnd="8dp"
android:layout_weight="1"
android:background="@drawable/bg_blue_radius_4"
android:onClick="@{() -> viewModel.onUnloadClick()}"
android:text="卸货"
android:textSize="16sp" />
<TextView
style="@style/tv_bottom_btn"
android:layout_width="0dp"
android:layout_height="44dp"
android:layout_marginStart="8dp"
android:layout_weight="1"
android:background="@drawable/bg_red_radius_4"
android:onClick="@{() -> viewModel.onLoadClick()}"
android:text="装货"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
</layout>

View File

@@ -3,7 +3,6 @@
<data>
<import type="android.view.View" />
<import type="com.lukouguoji.module_base.ui.weight.data.layout.DataLayoutType" />
<variable
name="bean"
type="com.lukouguoji.module_base.bean.AssembleInfoBean" />
@@ -17,43 +16,46 @@
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_vertical"
android:paddingVertical="8dp">
android:paddingVertical="12dp"
android:paddingHorizontal="8dp">
<!-- 号圆圈 -->
<!-- 号圆圈 -->
<TextView
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_marginEnd="8dp"
android:background="@drawable/bg_circle_yellow"
android:layout_width="28dp"
android:layout_height="28dp"
android:layout_marginEnd="12dp"
android:background="@drawable/bg_circle_gray"
android:gravity="center"
android:text="@{String.valueOf(position + 1)}"
android:textColor="@color/white"
android:textSize="16sp"
android:textStyle="bold" />
android:textSize="14sp"
android:textStyle="bold"
android:visibility="@{bean.showIndex ? View.VISIBLE : View.GONE}" />
<!-- 运单-->
<com.lukouguoji.module_base.ui.weight.data.layout.PadDataLayoutNew
<!-- ULD编-->
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginEnd="8dp"
enable="@{false}"
required="@{false}"
title='@{"运单号:"}'
titleLength="@{5}"
type="@{DataLayoutType.INPUT}"
value="@={bean.waybillNo}" />
android:text="@{bean.uldNo}"
android:textColor="@color/text_normal"
android:textSize="15sp" />
<!-- 件数 -->
<com.lukouguoji.module_base.ui.weight.data.layout.PadDataLayoutNew
android:layout_width="0dp"
<!-- 重量信息 -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.6"
enable="@{false}"
required="@{false}"
title='@{"件数:"}'
titleLength="@{3}"
type="@{DataLayoutType.INPUT}"
value="@={bean.pieces}" />
android:layout_marginStart="12dp"
android:text="@{bean.weightInfo}"
android:textColor="@{bean.isOrange ? @color/text_orange : @color/colorPrimary}"
android:textSize="15sp" />
<!-- 箭头图标 -->
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginStart="8dp"
android:src="@drawable/ic_arrow_right"
android:visibility="@{bean.hasArrow ? View.VISIBLE : View.GONE}" />
</LinearLayout>
</layout>