feat: io
This commit is contained in:
@@ -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 // 是否显示序号圆圈
|
||||
}
|
||||
|
||||
7
module_base/src/main/res/drawable/bg_circle_gray.xml
Normal file
7
module_base/src/main/res/drawable/bg_circle_gray.xml
Normal 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>
|
||||
9
module_base/src/main/res/drawable/ic_arrow_right.xml
Normal file
9
module_base/src/main/res/drawable/ic_arrow_right.xml
Normal 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>
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user