feat: 出港装载

This commit is contained in:
2025-12-12 11:51:47 +08:00
parent 9e0cae4321
commit d1e54b540c
15 changed files with 923 additions and 19 deletions

View File

@@ -115,6 +115,12 @@
android:configChanges="orientation|keyboardHidden"
android:exported="false"
android:screenOrientation="userLandscape" />
<!-- 国际出港装载 -->
<activity
android:name="com.lukouguoji.gjc.activity.IntExpLoadActivity"
android:configChanges="orientation|keyboardHidden"
android:exported="false"
android:screenOrientation="userLandscape" />
<!-- 国际出港运抵 -->
<activity
android:name="com.lukouguoji.gjc.activity.IntExpArriveActivity"

View File

@@ -370,6 +370,12 @@ class HomeFragment : Fragment() {
.build(ARouterConstants.ACTIVITY_URL_INT_EXP_OUT_HANDOVER)
.navigation()
}
// 出港装载
Constant.AuthName.GjcIntExpLoad -> {
ARouter.getInstance()
.build(ARouterConstants.ACTIVITY_URL_INT_EXP_LOAD)
.navigation()
}
// 出港运抵
Constant.AuthName.GjcIntExpArrive -> {
ARouter.getInstance().build(ARouterConstants.ACTIVITY_URL_INT_EXP_ARRIVE)
@@ -689,6 +695,14 @@ class HomeFragment : Fragment() {
)
)
list.add(
RightMenu(
Constant.AuthName.GjcIntExpLoad,
com.lukouguoji.module_base.R.drawable.img_gjc_banxiangzuzhuang,
"出港装载"
)
)
list.add(
RightMenu(
Constant.AuthName.GjcIntExpArrive,