diff --git a/css/default_shop.css b/css/default_shop.css
index 151f8d75d..bb065d41a 100644
--- a/css/default_shop.css
+++ b/css/default_shop.css
@@ -570,6 +570,51 @@ input.required:focus {border:1px solid #b8c9c2;background:#21272e !important;col
#sit_rel {margin:0 0 10px;padding:10px 10px 0}
#sit_rel h2 {margin:0 0 10px}
+/* 사용후기 모음 */
+#sps {zoom:1}
+#sps ol {margin:0;padding:0;border-top:1px solid #e9e9e9;list-style:none}
+#sps li {position:relative;padding:10px;border-bottom:1px solid #e9e9e9}
+#sps li:after {display:block;visibility:hidden;clear:both;content:""}
+
+.sps_img {float:left;margin:0 10px 0 0;width:80px}
+.sps_img span {position:absolute;font-size:0;line-height:0}
+
+.sps_section {float:left;width:630px}
+
+#sps dl {margin:5px 0 10px;zoom:1}
+#sps dl:after {display:block;visibility:hidden;clear:both;content:""}
+#sps dt {float:left}
+#sps dd {float:left;margin:0 20px 0 5px}
+#sps dd img {position:relative;top:-2px}
+
+.sps_section p {padding:0;width:100%;height:20px;overflow:hidden}
+.sps_con_full {padding:0;height:auto !important}
+.sps_con_btn {margin:5px 0 0;text-align:right}
+.sps_con_btn button {margin:0;padding:5px;border:0;background:#565e60;color:#fff}
+
+/* 마이페이지 */
+#smb_my {}
+
+#smb_my_ov {margin:0 0 20px}
+#smb_my_ov h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
+#smb_my_act {margin:0 0 10px;;zoom:1}
+#smb_my_act:after {display:block;visibility:hidden;clear:both;content:""}
+#smb_my_act ul {float:right;margin:0;padding:0;list-style:none}
+#smb_my_act li {float:left;margin:0 0 0 4px}
+#smb_my_ov dl {margin:0;border:1px solid #e9e9e9;background:#f5f6fa;zoom:1}
+#smb_my_ov dl:after {display:block;visibility:hidden;clear:both;content:''}
+#smb_my_ov dt {float:left;padding:7px 10px;width:100px;border-bottom:1px solid #e9e9e9;font-weight:bold}
+#smb_my_ov dd {float:left;margin:0;padding:7px 10px;width:220px;border-bottom:1px solid #e9e9e9}
+#smb_my_ovaddt {border-bottom:0 !important}
+#smb_my_ovaddd {width:590px !important;border-bottom:0 !important}
+
+#smb_my_od {margin:0 0 20px}
+#smb_my_od h2 {margin:0 0 10px}
+
+#smb_my_wish h2 {margin:0 0 10px}
+
+.smb_my_img {width:90px;text-align:center}
+
/* 장바구니 */
#sod_bsk {}
.sod_bsk_img {width:90px;text-align:center}
diff --git a/shop/itemuselist.php b/shop/itemuselist.php
index 99808df33..8c2edabc8 100644
--- a/shop/itemuselist.php
+++ b/shop/itemuselist.php
@@ -21,85 +21,87 @@ if ($page == "") { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페
$from_record = ($page - 1) * $rows; // 시작 열을 구함
?>
-
+
-
-
-
-
-
-
-
- |
-
- | 번호 |
- 상품후기 |
- 작성자 |
- 작성일 |
- 평가점수 |
-
- |
- 전체 사용후기 목록입니다.
- $thumb = new g4_thumb(G4_DATA_PATH.'/itemuse', 500);
- $is_content = $thumb->run($row['is_content']);
- $is_time = substr($row['is_time'], 2, 14);
- $small_image = $row['it_id']."_s";
+ run($row['is_content']);
+ $is_time = substr($row['is_time'], 2, 14);
+ $small_image = $row['it_id']."_s";
+
+ $row2 = sql_fetch(" select it_name from {$g4['shop_item_table']} where it_id = '{$row['it_id']}' ");
+ $it_href = G4_SHOP_URL."/item.php?it_id={$row['it_id']}";
+
+ if ($i == 0) echo '';
+ ?>
+ -
+
+
+
+
+
+
+
+ - 작성자
+
+ - 작성일
+
+ - 평가점수
+ 
+
+
+
+
+
+
+
+
+
+
+ 0) echo '
';
+ if ($i == 0) echo '자료가 없습니다.
';
+ ?>
+
+
- echo "
-
- | $num |
-
-
- |
- {$row['is_name']} |
- ".substr($row['is_time'],0,10)." |
-  |
-
- $is_content |
- |
- ";
-}
-if ($i == 0)
- echo "| 자료가 없습니다. |
";
-?>
-
-
+
+
diff --git a/shop/listtype.php b/shop/listtype.php
index 9ae046201..635183118 100644
--- a/shop/listtype.php
+++ b/shop/listtype.php
@@ -6,31 +6,25 @@ if (G4_IS_MOBILE) {
return;
}
-include_once('./_head.php');
-
$type = $_REQUEST['type'];
if ($type == 1) $g4['title'] = "히트상품";
else if ($type == 2) $g4['title'] = "추천상품";
-else if ($type == 3) $g4['title'] = "신규상품";
-else if ($type == 4) $g4['title'] = "포인트상품";
-else if ($type == 5) $g4['title'] = "사은품상품";
+else if ($type == 3) $g4['title'] = "최신상품";
+else if ($type == 4) $g4['title'] = "인기상품";
+else if ($type == 5) $g4['title'] = "할인상품";
else
alert('상품유형이 아닙니다.');
+include_once('./_head.php');
+
// 한페이지에 출력하는 이미지수 = $list_mod * $list_row
-$list_mod = 4; // 한줄에 이미지 몇개씩 출력?
+$list_mod = 3; // 한줄에 이미지 몇개씩 출력?
$list_row = 5; // 한 페이지에 몇라인씩 출력?
-$img_width = 100; // 출력이미지 폭
-$img_height = 100; // 출력이미지 높이
+$img_width = 230; // 출력이미지 폭
+$img_height = 230; // 출력이미지 높이
?>
-

" border="0">
-
-
-
-
-
-
-

+
-
-
- | 님의 마이페이지입니다. |
-
- "; } ?>
-
-  |
-
-
+
+ 회원정보 개요
+
+
+
+
+ - 회원권한
+
+ - 보유포인트
+ - 점
+ - 연락처
+
+ - E-Mail
+
+ - 최종접속일시
+
+ - 회원가입일시
+
+ - 주소
+
+
+
+
+
+
+
+ 최근 위시리스트
+
+
+
+
+ | 이미지 |
+ 상품명 |
+ 보관일시 |
+
+
+
+ 0)
+ echo " |
";
+
+ $image = get_it_image($row['it_id']."_s", 70, 70, $row['it_id']);
+ ?>
+
+
+ |
+ |
+ |
+
+
+ 보관 내역이 없습니다. | ";
+ ?>
+
+
+
+
+
-
- |
-
- | 보유포인트 |
- : 점 |
- 쪽지함 |
- : 쪽지보기 |
-
-
- | 주소 |
- : |
- 회원권한 |
- : |
-
-
- | 연락처 |
- : |
- 최종접속일시 |
- : |
-
-
- | E-mail |
- : |
- 회원가입일시 |
- : |
-
- |
-
-
-
-
-
-  |
-  |
-
-
-
-
-
-
-
-
-  |
-  |
-
- |
-
- | 상품명 |
- 보관일시 |
-
- |
-0)
- echo " |
";
-
- $image = get_it_image($row['it_id']."_s", 50, 50, $row['it_id']);
-
- echo "";
- echo "| $image | ";
- echo "".stripslashes($row['it_name'])." | ";
- echo "$row[wi_time] | ";
- echo "
";
-}
-
-if ($i == 0)
- echo "| 보관 내역이 없습니다. |
";
-?>
- |
-
-
-
\ No newline at end of file