Showing
1 changed file
with
13 additions
and
8 deletions
| @@ -39,14 +39,14 @@ class AppLoginAuthInfo { | @@ -39,14 +39,14 @@ class AppLoginAuthInfo { | ||
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | interface IDataJson { | 41 | interface IDataJson { |
| 42 | - jumpType:number | ||
| 43 | - jumpUrl:string | ||
| 44 | - newsId:string | ||
| 45 | - newsObjectLevel:string | ||
| 46 | - newsObjectType:number | ||
| 47 | - newsRelId:string | ||
| 48 | - newsTitle:string | ||
| 49 | - pageId:string | 42 | + jumpType: number |
| 43 | + jumpUrl: string | ||
| 44 | + newsId: string | ||
| 45 | + newsObjectLevel: string | ||
| 46 | + newsObjectType: number | ||
| 47 | + newsRelId: string | ||
| 48 | + newsTitle: string | ||
| 49 | + pageId: string | ||
| 50 | } | 50 | } |
| 51 | 51 | ||
| 52 | /** | 52 | /** |
| @@ -209,6 +209,11 @@ function handleJsCallAppInnerLinkMethod(data: Message) { | @@ -209,6 +209,11 @@ function handleJsCallAppInnerLinkMethod(data: Message) { | ||
| 209 | let creatorId = urlParams.get('creatorId') || '' | 209 | let creatorId = urlParams.get('creatorId') || '' |
| 210 | ProcessUtils.gotoPeopleShipHomePage(creatorId) | 210 | ProcessUtils.gotoPeopleShipHomePage(creatorId) |
| 211 | break; | 211 | break; |
| 212 | + case 'app': | ||
| 213 | + if (urlParams.get('subType') === 'login') { | ||
| 214 | + ProcessUtils.gotoLoginPage() | ||
| 215 | + } | ||
| 216 | + break; | ||
| 212 | default: | 217 | default: |
| 213 | break; | 218 | break; |
| 214 | } | 219 | } |
-
Please register or login to post a comment