소스 검색

'2023年3月20日17:14:23'

master
wq 2 년 전
부모
커밋
1e0a0667b1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      app/src/main/java/com/huntersun/vkyes/etcopencard/project/ui/activity/ETCHandleActivity.java

+ 2
- 2
app/src/main/java/com/huntersun/vkyes/etcopencard/project/ui/activity/ETCHandleActivity.java 파일 보기

Bundle bundle = new Bundle(); Bundle bundle = new Bundle();
bundle.putString("bizContent", JSON.toJSONString(items)); bundle.putString("bizContent", JSON.toJSONString(items));
bundle.putString("orderId", getIntent().getStringExtra("orderId") + ""); bundle.putString("orderId", getIntent().getStringExtra("orderId") + "");
if (items.getIsValueCard().equals("2")){//储值卡-无需签约
if ("2".equals(items.getIsValueCard())){//储值卡-无需签约
jumpToPage(ETCHandleSonActivity.class,bundle); jumpToPage(ETCHandleSonActivity.class,bundle);
}else if (items.getIsValueCard().equals("1")){//记账卡-需要签约
}else if ("1".equals(items.getIsValueCard())){//记账卡-需要签约
jumpToPage(ContractActivity.class,bundle); jumpToPage(ContractActivity.class,bundle);
} }
} }

Loading…
취소
저장