시술후기 문구 고객후기로 변경
This commit is contained in:
@@ -29,8 +29,8 @@ error.delete=삭제 중 오류가 발생했습니다.
|
||||
# 모듈별 메시지
|
||||
# =============================================================================
|
||||
|
||||
# 시술후기
|
||||
procedureReview.error.noData=시술후기 정보가 없습니다.
|
||||
# 고객후기
|
||||
procedureReview.error.noData=고객후기 정보가 없습니다.
|
||||
procedureReview.category.error=카테고리 정보 조회 실패
|
||||
|
||||
# 예약/접수 관련 (Reservation)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/* ================================================
|
||||
시술후기 등록/수정 전용 스타일
|
||||
고객후기 등록/수정 전용 스타일
|
||||
================================================ */
|
||||
|
||||
/* ── 전체 컨테이너 ── */
|
||||
@@ -308,14 +308,17 @@
|
||||
.procedure-review-form {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.procedure-review-form .image-panel {
|
||||
flex: none;
|
||||
}
|
||||
|
||||
.procedure-review-form .image-panel .images-row {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.procedure-review-form .image-panel .images-row .image-card {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -219,7 +219,7 @@ function fn_loadQuillContent(content) {
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* 시술후기 등록
|
||||
* 고객후기 등록
|
||||
****************************************************************************/
|
||||
function fn_insertProcedureReview() {
|
||||
if ("Y" != insertUseYn) {
|
||||
@@ -248,7 +248,7 @@ function fn_insertProcedureReview() {
|
||||
return;
|
||||
}
|
||||
|
||||
modalEvent.info("등록", "시술후기 정보를 등록하시겠습니까?", function () {
|
||||
modalEvent.info("등록", "고객후기 정보를 등록하시겠습니까?", function () {
|
||||
let encodedContent = btoa(unescape(encodeURIComponent(content)));
|
||||
let paramData = {
|
||||
"menuClass": menuClass,
|
||||
|
||||
@@ -9,7 +9,7 @@ let procedureReviewSelectId = "";
|
||||
let procedureReviewSelectCategoryNo = "";
|
||||
|
||||
/****************************************************************************
|
||||
* 시술후기 정보 리스트 조회
|
||||
* 고객후기 정보 리스트 조회
|
||||
****************************************************************************/
|
||||
function fn_selectListProcedureReviewJson() {
|
||||
let paramData = {
|
||||
@@ -140,7 +140,7 @@ function fn_procedureReviewPaginReset() {
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* 시술후기 삭제
|
||||
* 고객후기 삭제
|
||||
****************************************************************************/
|
||||
function fn_deleteProcedureReview() {
|
||||
if ("Y" != deleteUseYn) {
|
||||
@@ -153,7 +153,7 @@ function fn_deleteProcedureReview() {
|
||||
return false;
|
||||
}
|
||||
|
||||
modalEvent.info("삭제", "선택한 시술후기 정보를 삭제하시겠습니까?", function () {
|
||||
modalEvent.info("삭제", "선택한 고객후기 정보를 삭제하시겠습니까?", function () {
|
||||
let paramData = {
|
||||
"menuClass": menuClass,
|
||||
"muProcedureReviewId": procedureReviewSelectId
|
||||
@@ -190,7 +190,7 @@ function fn_deleteProcedureReview() {
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* 검색 엔터 시술후기
|
||||
* 검색 엔터 고객후기
|
||||
****************************************************************************/
|
||||
function fn_procedureReviewEnter(e) {
|
||||
if (e.which) {
|
||||
|
||||
@@ -219,11 +219,11 @@ function fn_loadQuillContent(content) {
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* 시술후기 상세 조회
|
||||
* 고객후기 상세 조회
|
||||
****************************************************************************/
|
||||
function fn_selectProcedureReview() {
|
||||
if (true != fn_emptyCheck(muProcedureReviewId)) {
|
||||
modalEvent.warning("수정", "시술후기 정보가 없습니다.");
|
||||
modalEvent.warning("수정", "고객후기 정보가 없습니다.");
|
||||
return;
|
||||
}
|
||||
let paramData = {
|
||||
@@ -247,7 +247,7 @@ function fn_selectProcedureReview() {
|
||||
fn_loadQuillContent(photoData.content);
|
||||
$("#hashtag").val(photoData.hashtag);
|
||||
} else {
|
||||
modalEvent.warning("수정", "조회된 시술후기 데이터가 없습니다.");
|
||||
modalEvent.warning("수정", "조회된 고객후기 데이터가 없습니다.");
|
||||
}
|
||||
} else {
|
||||
alert("수정 오류: " + data.msgDesc);
|
||||
@@ -260,7 +260,7 @@ function fn_selectProcedureReview() {
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* 시술후기 수정
|
||||
* 고객후기 수정
|
||||
****************************************************************************/
|
||||
function fn_updateProcedureReview() {
|
||||
if ("Y" != updateUseYn) {
|
||||
@@ -288,7 +288,7 @@ function fn_updateProcedureReview() {
|
||||
return;
|
||||
}
|
||||
|
||||
modalEvent.info("수정", "시술후기 정보를 수정하시겠습니까?", function () {
|
||||
modalEvent.info("수정", "고객후기 정보를 수정하시겠습니까?", function () {
|
||||
let encodedContent = btoa(unescape(encodeURIComponent(content)));
|
||||
let paramData = {
|
||||
"menuClass": menuClass,
|
||||
|
||||
@@ -259,7 +259,7 @@
|
||||
</th:block>
|
||||
<th:block layout:fragment="layout_content">
|
||||
<div class="center_box">
|
||||
<p class="page_title" style="float:none; display:block; width:100%;">시술후기 등록</p>
|
||||
<p class="page_title" style="float:none; display:block; width:100%;">고객후기 등록</p>
|
||||
|
||||
<div class="pr-single-form">
|
||||
<!-- 구분 & 제목 -->
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
<th:block layout:fragment="layout_content">
|
||||
<!-- 센터쪽 -->
|
||||
<div class="center_box">
|
||||
<p class="page_title">시술후기</p>
|
||||
<p class="page_title">고객후기</p>
|
||||
|
||||
<div class="filter_box">
|
||||
<div class="form_box">
|
||||
|
||||
@@ -261,7 +261,7 @@
|
||||
</th:block>
|
||||
<th:block layout:fragment="layout_content">
|
||||
<div class="center_box">
|
||||
<p class="page_title" style="float:none; display:block; width:100%;">시술후기 수정</p>
|
||||
<p class="page_title" style="float:none; display:block; width:100%;">고객후기 수정</p>
|
||||
|
||||
<div class="pr-single-form">
|
||||
<!-- 구분 & 제목 -->
|
||||
|
||||
Reference in New Issue
Block a user