原始舱单、进港理货、出港运抵、出港装载、出港理货主单卡片 新增侧滑「回执」按钮,调用各模块 getResponse 接口后跳转 module_base 共用的只读回执页。请求同时传 prefix、no 与 wbNo,回执优先取 data、为空再取 msg,兼容后端实际返回; 回执为空时提示「暂无海关回执」不跳转。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
53 lines
2.1 KiB
XML
53 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.lukouguoji.module_base">
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
<application
|
|
android:icon="@mipmap/logot"
|
|
android:roundIcon="@mipmap/logot_round">
|
|
<activity
|
|
android:name=".ui.signature.SignatureActivity"
|
|
android:configChanges="orientation|keyboardHidden"
|
|
android:exported="false"
|
|
android:screenOrientation="userLandscape" />
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:configChanges="orientation|keyboardHidden"
|
|
android:exported="true"
|
|
android:screenOrientation="userLandscape" />
|
|
|
|
<activity
|
|
android:name=".ui.page.preview.PreviewActivity"
|
|
android:configChanges="orientation|keyboardHidden"
|
|
android:exported="true"/>
|
|
|
|
<!-- PDF预览Activity -->
|
|
<activity
|
|
android:name=".ui.page.preview.PdfPreviewActivity"
|
|
android:configChanges="orientation|keyboardHidden"
|
|
android:exported="false"
|
|
android:screenOrientation="userLandscape" />
|
|
|
|
<!-- 海关回执(只读) -->
|
|
<activity
|
|
android:name=".ui.page.customs.CustomsResponseActivity"
|
|
android:configChanges="orientation|keyboardHidden"
|
|
android:exported="false"
|
|
android:screenOrientation="userLandscape" />
|
|
|
|
<!-- 屏幕适配 -->
|
|
<meta-data
|
|
android:name="design_width_in_dp"
|
|
android:value="1152" />
|
|
<meta-data
|
|
android:name="design_height_in_dp"
|
|
android:value="720" />
|
|
</application>
|
|
|
|
</manifest> |