ソースを参照

'2023年10月12日11:10:07'

master
wq 1年前
コミット
a8cc2f687f

バイナリ
app/debug/KyushuETC1.0_v1.1.2_debug.apk ファイルの表示


+ 2
- 2
app/debug/output-metadata.json ファイルの表示

@@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"versionCode": 11,
"versionName": "1.1.1",
"outputFile": "KyushuETC1.0_v1.1.1_debug.apk"
"versionName": "1.1.2",
"outputFile": "KyushuETC1.0_v1.1.2_debug.apk"
}
]
}

+ 1
- 0
app/src/main/java/com/huntersun/vkyes/etcopencard/project/api/bean/ResultBean.java ファイルの表示

@@ -345,6 +345,7 @@ public class ResultBean<T> {
public String vehPosImgUrl; //行驶证正面
public String vehNegImgUrl; //行驶证反面
public String vehBodyUrl; //车45°图片
public String returnUrl; //车45°图片
public String applyId; //申请单编号
public String agentIdNum; //经办人证件照号
public String status; //申请单状态 APPLY-申请中 AUDIT-审核中 CANCEL-已取消 END-结束

+ 4
- 3
app/src/main/java/com/huntersun/vkyes/etcopencard/project/ui/activity/VehicleInformationActivity.java ファイルの表示

@@ -421,8 +421,9 @@ public class VehicleInformationActivity extends AppActivity {
.into(binding.image2);
}
//车身45°照
if (!TextUtils.isEmpty(bizContent1.getVehBodyUrl())) {
imgUrl3 = bizContent1.getVehBodyUrl().replace("http://192.168.101.145:9000",MyRetrofit.Urls);
if (!TextUtils.isEmpty(bizContent1.returnUrl)) {
// imgUrl3 = bizContent1.getVehBodyUrl().replace("http://192.168.101.145:9000",MyRetrofit.Urls);
imgUrl3 = bizContent1.returnUrl.replace("http://192.168.101.145:9000",MyRetrofit.Urls);
GlideApp.with(getActivity())
.load(imgUrl3)
.into(binding.image3);
@@ -528,7 +529,7 @@ public class VehicleInformationActivity extends AppActivity {
FileUtils.getInstance(this).uploadGeneralImage(true, null, new FileUtils.OnUploadCallback() {
@Override
public void onSuccess(ResultBean.ProductInfo bizContent) {
String url = bizContent.data.getUrl().replace("http://192.168.101.145:9000",MyRetrofit.Urls);
String url = bizContent.data.returnUrl.replace("http://192.168.101.145:9000",MyRetrofit.Urls);
if (!TextUtils.isEmpty(url)) {
imgUrl3 = url;
GlideApp.with(getActivity()).load(url).into((ImageView) view);

+ 1
- 1
common.gradle ファイルの表示

@@ -9,7 +9,7 @@ android {
// 目标适配版本
//noinspection ExpiredTargetSdkVersion,OldTargetApi
targetSdkVersion 30
versionName '1.1.0'
versionName '1.1.2'
versionCode 11
}


読み込み中…
キャンセル
保存