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

@@ -1,9 +1,12 @@
package com.lukouguoji.module_base.bean
/**
* 组装信息Bean左侧列表
* 组装信息Bean(左侧列表)
*/
class AssembleInfoBean {
var waybillNo: String = "" // 运单
var pieces: String = "" // 件数
var uldNo: String = "" // ULD编
var weightInfo: String = "" // 重量信息(如100/290kg)
var hasArrow: Boolean = false // 是否显示箭头(可点击)
var isOrange: Boolean = false // 是否橙色文字
var showIndex: Boolean = true // 是否显示序号圆圈
}

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#999999" />
</shape>

View File

@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="20dp"
android:height="20dp"
android:viewportWidth="20"
android:viewportHeight="20">
<path
android:fillColor="#999999"
android:pathData="M8,4L8,16L12,10L8,4Z"/>
</vector>

View File

@@ -32,6 +32,7 @@
<color name="text_pink">#EA6BE1</color>
<color name="text_red">#d9001b</color>
<color name="text_green">#4CAF50</color>
<color name="text_orange">#FF9800</color>
<color name="color_bottom_layout">#5c6890</color>
<color name="color_f2">#F2F2F2</color>