Parcourir la source

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

master
wq il y a 2 ans
Parent
révision
1e0a0667b1

+ 2
- 2
app/src/main/java/com/huntersun/vkyes/etcopencard/project/ui/activity/ETCHandleActivity.java Voir le fichier

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

Chargement…
Annuler
Enregistrer