feat: 完成出港计重页面5.5寸手机端适配

- 待计重列表:三格统计、卡片单票提前运抵、筛选弹层(通道号/承运人/运单类型/代理人)
- 开始计重:预配统计卡 + PhoneFormRow 表单
- 计重记录:三格统计、筛选弹层(入库日期/代理人/特码/目的站/计重人)
- 计重明细:新增手机端全屏「修改记录」覆层,复用平板编辑链路
- 新增手机专属「运单详情」页
- 手机首页「国际」Tab 增加「出港计重」入口
- 登记后端接口缺口 7 项(#12~#18)至问题清单

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-07-29 20:09:55 +08:00
parent 5a019a55c4
commit 1eb288a703
43 changed files with 4380 additions and 1941 deletions

View File

@@ -50,5 +50,35 @@
android:exported="true"
tools:replace="android:exported" />
<!-- 出港待计重(手机版适配验证页) -->
<activity
android:name="com.lukouguoji.gjc.activity.GjcWeighingListActivity"
android:exported="true"
tools:replace="android:exported" />
<!-- 出港计重-开始计重(手机版适配验证页) -->
<activity
android:name="com.lukouguoji.gjc.activity.GjcWeighingStartActivity"
android:exported="true"
tools:replace="android:exported" />
<!-- 出港计重-计重记录(手机版适配验证页) -->
<activity
android:name="com.lukouguoji.gjc.activity.GjcWeighingRecordListActivity"
android:exported="true"
tools:replace="android:exported" />
<!-- 出港计重-计重明细(手机版适配验证页) -->
<activity
android:name="com.lukouguoji.gjc.activity.GjcWeighingRecordDetailsActivity"
android:exported="true"
tools:replace="android:exported" />
<!-- 出港计重-运单详情(手机版适配验证页) -->
<activity
android:name="com.lukouguoji.gjc.activity.GjcWeighingWbDetailActivity"
android:exported="true"
tools:replace="android:exported" />
</application>
</manifest>

View File

@@ -205,6 +205,12 @@
android:configChanges="orientation|keyboardHidden"
android:exported="false"
android:screenOrientation="unspecified" />
<!-- 出港计重-运单详情5.5寸手机版专属页面) -->
<activity
android:name="com.lukouguoji.gjc.activity.GjcWeighingWbDetailActivity"
android:configChanges="orientation|keyboardHidden"
android:exported="false"
android:screenOrientation="unspecified" />
<activity
android:name="com.lukouguoji.gjc.activity.GjcHandoverActivity"
android:configChanges="orientation|keyboardHidden"