|
@@ -28,6 +28,8 @@ public class UserPageController extends BaseController {
|
|
|
private static final String REPAIR_FORM = "user-center/repair/form";
|
|
|
/** 申请维修 */
|
|
|
private static final String REPAIR_FORM_USER = "user-center/repair/form-user";
|
|
|
+ /** 维修详情 */
|
|
|
+ private static final String REPAIR_DETAIL = "user-center/repair/detail";
|
|
|
/** 地址管理 */
|
|
|
private static final String ADDRESS_LIST = "user-center/address/list";
|
|
|
/** 添加地址 */
|
|
@@ -77,6 +79,12 @@ public class UserPageController extends BaseController {
|
|
|
return REPAIR_LIST;
|
|
|
}
|
|
|
|
|
|
+ /** 用户维修详情 */
|
|
|
+ @GetMapping("/user/repair/form.html")
|
|
|
+ public String repairDetail() {
|
|
|
+ return REPAIR_DETAIL;
|
|
|
+ }
|
|
|
+
|
|
|
/** 用户申请维修 */
|
|
|
@GetMapping("/user/repair/form.html")
|
|
|
public String repairFormUser() {
|