三方支付逻辑修改,ui调整

This commit is contained in:
wushaocheng
2022-10-25 00:08:31 +08:00
parent 0044039bfe
commit 899b7da76a
10 changed files with 217 additions and 97 deletions

View File

@@ -3,6 +3,7 @@ package com.yizhuan.xchat_android_core;
import android.text.TextUtils;
import com.yizhuan.xchat_android_core.manager.AvRoomDataManager;
import com.yizhuan.xchat_android_core.utils.Logger;
/**
* 请求接口接口地址
@@ -512,8 +513,8 @@ public class UriProvider {
/**
* 第三方支付
*/
public static String getOfficialPay(int type) {
return JAVA_WEB_URL.concat("/peko/modules/pay/index.html?channelType=" + type);
public static String getOfficialPay(int type, String deviceId) {
return JAVA_WEB_URL.concat("/peko/modules/pay/index.html?channelType=" + type + "&deviceId=" + deviceId);
}
}