liugl
2020-07-15 431ee316c05208b787befbd7b0b4097abe999c3f
app/src/main/java/com/okgoincar/slab/MySlabBaseActivity.java
@@ -155,6 +155,24 @@
        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