diff --git a/owner-frontend-service/src/main/java/com/justpickup/ownerfrontendservice/OwnerFrontendServiceApplication.java b/owner-frontend-service/src/main/java/com/justpickup/ownerfrontendservice/OwnerFrontendServiceApplication.java index b749864..698f81a 100644 --- a/owner-frontend-service/src/main/java/com/justpickup/ownerfrontendservice/OwnerFrontendServiceApplication.java +++ b/owner-frontend-service/src/main/java/com/justpickup/ownerfrontendservice/OwnerFrontendServiceApplication.java @@ -2,8 +2,10 @@ package com.justpickup.ownerfrontendservice; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.cloud.netflix.eureka.EnableEurekaClient; @SpringBootApplication +@EnableEurekaClient public class OwnerFrontendServiceApplication { public static void main(String[] args) { diff --git a/owner-frontend-service/src/main/java/com/justpickup/ownerfrontendservice/domain/order/web/OrderController.java b/owner-frontend-service/src/main/java/com/justpickup/ownerfrontendservice/domain/order/web/OrderController.java new file mode 100644 index 0000000..c4b4a08 --- /dev/null +++ b/owner-frontend-service/src/main/java/com/justpickup/ownerfrontendservice/domain/order/web/OrderController.java @@ -0,0 +1,15 @@ +package com.justpickup.ownerfrontendservice.domain.order.web; + +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.GetMapping; + +@Controller +@Slf4j +public class OrderController { + + @GetMapping("/order") + public String order() { + return "/domain/order/order"; + } +} diff --git a/owner-frontend-service/src/main/resources/templates/domain/order/order.html b/owner-frontend-service/src/main/resources/templates/domain/order/order.html new file mode 100644 index 0000000..7255fa2 --- /dev/null +++ b/owner-frontend-service/src/main/resources/templates/domain/order/order.html @@ -0,0 +1,105 @@ + + + + + + +
+ +

주문

+ + +
2022년 01년 14일
+ + +
+ +
+
+
+ 닉네임 +
+
+
+ + 메뉴1, 메뉴2, 메뉴3 + +
+

+ 오전 11:03 +

+ 상세보기 +
+ +
+
+ + + +
+
+
+ 닉네임 +
+
+
+ + 메뉴1, 메뉴2, 메뉴3, 메뉴4, 메뉴5, 메뉴6 + +
+

+ 오후 04:03 +

+ 상세보기 +
+ +
+
+ + + +
+
+
+ 닉네임 +
+
+
+ + 메뉴1, 메뉴2 + +
+

+ 오후 10:45 +

+ 상세보기 +
+ +
+
+ + +
+ + +
+ + \ No newline at end of file