You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
576 B
32 lines
576 B
package com.bt.my.order;
|
|
|
|
import com.bt.common.controller.BaseController;
|
|
import com.bt.common.model.Order;
|
|
import com.jfinal.core.Path;
|
|
|
|
@Path("/my/order")
|
|
public class MyOrderController extends BaseController {
|
|
public void index() {
|
|
render("index.html");
|
|
}
|
|
|
|
public void preview() {
|
|
Order order = getBean(Order.class);
|
|
Integer productId = getParaToInt("", 1);
|
|
|
|
|
|
//
|
|
render("preview.html");
|
|
}
|
|
|
|
public void create() {
|
|
Order order = getBean(Order.class);
|
|
Integer productId = getParaToInt("", 1);
|
|
|
|
|
|
//
|
|
render("preview.html");
|
|
}
|
|
|
|
|
|
}
|
|
|