|
@@ -207,8 +207,8 @@ MyView
|
|
|
HttpHelper.get()
|
|
|
.get<HttpResult<T>>(url.url.startsWith('http') ? url.url : GlobalValue.getInstance().envUrl + url.url,
|
|
|
data ? JSON.stringify(data) : undefined, {
|
|
|
- userId: GlobalValue.getInstance().userId,
|
|
|
- clientId: GlobalValue.getInstance().getClientId(),
|
|
|
+ userId: GlobalValue.getInstance().userIds,
|
|
|
+ clientId: GlobalValue.getInstance().getClientIds(),
|
|
|
version: ConstantValue.VERSION,
|
|
|
deviceType: '01',
|
|
|
timeStamp: timeStamp + '',
|
|
@@ -237,8 +237,8 @@ HttpHelper.get()
|
|
|
HttpHelper.get()
|
|
|
.post<HttpResult<T>>(url.url.startsWith('http') ? url.url : GlobalValue.getInstance().envUrl + url.url,
|
|
|
data ? JSON.stringify(data) : undefined, {
|
|
|
- userId: GlobalValue.getInstance().userId,
|
|
|
- clientId: GlobalValue.getInstance().getClientId(),
|
|
|
+ userId: GlobalValue.getInstance().userIds,
|
|
|
+ clientId: GlobalValue.getInstance().getClientIds(),
|
|
|
version: ConstantValue.VERSION,
|
|
|
deviceType: '01',
|
|
|
timeStamp: timeStamp + '',
|