react_hsbc_teller 1.9.13 → 1.9.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/hsbc.js +1 -1
- package/package.json +1 -1
- package/packages/api/api.js +1 -1
- package/packages/pages/video/video.jsx +312 -1635
- package/packages/pages/video/video.less +4 -1
package/package.json
CHANGED
package/packages/api/api.js
CHANGED
|
@@ -237,7 +237,7 @@ class API extends Server{
|
|
|
237
237
|
async appGetUsername(params = {}){
|
|
238
238
|
// return this.axios('get', '/lang/select/2', params);
|
|
239
239
|
try{
|
|
240
|
-
let result = await this.axios('get', '/app/getUsername?userId=' + params.userId+ '&sessionId=' + params.sessionId, params);
|
|
240
|
+
let result = await this.axios('get', '/app/getUsername?userId=' + params.userId+ '&sessionId=' + params.sessionId + '&activityId=' + params.activityId, params);
|
|
241
241
|
console.log(result)
|
|
242
242
|
if(result && (result.data instanceof Object) && result.code === 200){
|
|
243
243
|
return result||[];
|