feat: opt 出港计重 计重明细 update

This commit is contained in:
2025-12-16 09:36:36 +08:00
parent d1ed050c76
commit b4238a04d0
5 changed files with 60 additions and 26 deletions

View File

@@ -166,15 +166,14 @@
<com.google.android.material.divider.MaterialDivider
android:layout_width="match_parent"
android:layout_height="1dp" />
android:background="#e7e7e7"
android:layout_height="1px" />
<!-- 第二部分:计重记录列表 -->
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="15dp"
android:paddingEnd="15dp"
tools:listitem="@layout/item_gjc_check_in_record" />
</LinearLayout>
@@ -227,7 +226,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{`总件数:` + viewModel.totalPc}"
android:text="@{`总件数` + viewModel.totalPc}"
android:textColor="@color/text_gray"
android:textSize="16sp" />
@@ -236,7 +235,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:text="@{`总重量:` + viewModel.totalWeight}"
android:text="@{`总重量` + viewModel.totalWeight}"
android:textColor="@color/text_gray"
android:textSize="16sp" />
@@ -245,7 +244,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:text="@{`重量误差: ` + viewModel.weightError}"
android:text="@{`重量误差` + viewModel.weightError}"
android:textColor="@color/text_red"
android:textSize="16sp" />