| | |
| | | startActivity(intent); |
| | | } |
| | | |
| | | /*** |
| | | * type 1:普通单 2:该派单 |
| | | * @param orderId |
| | | * @param orderType |
| | | * @param time |
| | | * @param type |
| | | */ |
| | | public void showOrder(String orderId, String orderType,int time,int type) { |
| | | // Bundle bundle = creatBundleString("orderId", orderId); |
| | | // bundle.putString("orderType", orderType); |
| | | Intent intent = new Intent(this,SlabGetOrderFragment.class); |
| | | intent.putExtra("orderId",orderId); |
| | | intent.putExtra("orderType",orderType); |
| | | intent.putExtra("time",time); |
| | | intent.putExtra("type",type); |
| | | startActivity(intent); |
| | | } |
| | | |
| | | |
| | | |
| | | @Override |