From f5de4a53134674f9174c1190b0583477b0faa0bb Mon Sep 17 00:00:00 2001 From: Dao Duc Date: Wed, 14 Jan 2026 17:31:59 +0700 Subject: [PATCH] update 14/01 --- next.config.ts | 11 +- src/app/[slug]/page.tsx | 10 +- src/app/cart/page.tsx | 2 +- src/app/layout.tsx | 4 +- src/app/send-cart/page.tsx | 2 +- src/app/tin-tuc/page.tsx | 2 +- .../{ArticleDetail => detail}/index.tsx | 0 src/components/home/Category/index.tsx | 36 +- src/components/home/Deal/index.tsx | 133 +- src/components/home/Slider/ImageList.tsx | 18 + src/components/home/Slider/index.tsx | 77 +- src/components/home/index.tsx | 13 +- src/components/other/Header/Cart.tsx | 69 +- src/components/other/Header/Menu.tsx | 25 - src/components/other/Header/index.tsx | 12 +- .../{shared => other/menu}/MenuItem.tsx | 0 src/components/other/menu/index.tsx | 31 + src/components/product/Category/index.tsx | 14 +- .../{Product => productList}/index.tsx | 0 .../{ProductDetail => detail}/index.tsx | 0 src/components/shared/DealItem.tsx | 80 + src/components/shared/FancyboxTrigger.tsx | 27 - src/components/shared/ImageItem.tsx | 18 + src/data/articles.ts | 0 src/data/articles/index.tsx | 1271 ++ src/data/{banner.ts => banner/index.tsx} | 8 +- .../{categories.ts => categories/index.tsx} | 0 src/data/deals/index.tsx | 829 ++ src/data/product-list.ts | 2189 --- src/data/products/index.tsx | 11910 ++++++++++++++++ src/hooks/useCart.ts | 53 + src/hooks/useDealItem.ts | 26 + src/lib/utils.tsx | 20 + src/services/cart.ts | 48 + src/styles/pc_style.css | 4 + src/types/deal.ts | 8 + 36 files changed, 14527 insertions(+), 2423 deletions(-) rename src/components/article/{ArticleDetail => detail}/index.tsx (100%) create mode 100644 src/components/home/Slider/ImageList.tsx delete mode 100644 src/components/other/Header/Menu.tsx rename src/components/{shared => other/menu}/MenuItem.tsx (100%) create mode 100644 src/components/other/menu/index.tsx rename src/components/product/Category/{Product => productList}/index.tsx (100%) rename src/components/product/{ProductDetail => detail}/index.tsx (100%) create mode 100644 src/components/shared/DealItem.tsx delete mode 100644 src/components/shared/FancyboxTrigger.tsx create mode 100644 src/components/shared/ImageItem.tsx delete mode 100644 src/data/articles.ts create mode 100644 src/data/articles/index.tsx rename src/data/{banner.ts => banner/index.tsx} (99%) rename src/data/{categories.ts => categories/index.tsx} (100%) create mode 100644 src/data/deals/index.tsx delete mode 100644 src/data/product-list.ts create mode 100644 src/data/products/index.tsx create mode 100644 src/hooks/useCart.ts create mode 100644 src/hooks/useDealItem.ts create mode 100644 src/lib/utils.tsx create mode 100644 src/services/cart.ts create mode 100644 src/types/deal.ts diff --git a/next.config.ts b/next.config.ts index e9ffa30..f2007ca 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,16 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: 'hoanghapccdn.com', + pathname: '/media/**', + }, + ], + }, + }; export default nextConfig; diff --git a/src/app/[slug]/page.tsx b/src/app/[slug]/page.tsx index 7c86185..351c6c8 100644 --- a/src/app/[slug]/page.tsx +++ b/src/app/[slug]/page.tsx @@ -2,11 +2,11 @@ import { notFound } from "next/navigation"; import { findBySlug } from "@/lib/slug/slugMap"; -import ProductCategory from "@/components/product/Category"; -import ProductDetail from "@/components/product/ProductDetail"; -import ArticleCategory from "@/components/article/Category"; -import ArticleDetail from "@/components/article/ArticleDetail"; -import ArticleHome from "@/components/article/Home"; +import ProductCategory from "@/components/product/category"; +import ProductDetail from "@/components/product/detail"; +import ArticleCategory from "@/components/article/category"; +import ArticleDetail from "@/components/article/detail"; +import ArticleHome from "@/components/article/home"; export default async function SlugPage({ params, diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index c934af4..2611e69 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -1,5 +1,5 @@ -import CartHome from "@/components/cart/Home"; +import CartHome from "@/components/cart/home"; export default function Home() { return ( diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 30b8ffa..b2661be 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,7 @@ import type { Metadata } from "next"; import type { ReactNode } from 'react'; -import Header from "@/components/other/Header"; -import Footer from "@/components/other/Footer"; +import Header from "@/components/other/header"; +import Footer from "@/components/other/footer"; import '../styles/globals.css'; export const metadata: Metadata = { diff --git a/src/app/send-cart/page.tsx b/src/app/send-cart/page.tsx index d41b313..1887f9c 100644 --- a/src/app/send-cart/page.tsx +++ b/src/app/send-cart/page.tsx @@ -1,5 +1,5 @@ -import SendResult from "@/components/cart/Send"; +import SendResult from "@/components/cart/send"; export default function SendCartPage() { return ( diff --git a/src/app/tin-tuc/page.tsx b/src/app/tin-tuc/page.tsx index 9b5a150..13e58d3 100644 --- a/src/app/tin-tuc/page.tsx +++ b/src/app/tin-tuc/page.tsx @@ -1,5 +1,5 @@ -import ArticleHome from "@/components/article/Home"; +import ArticleHome from "@/components/article/home"; export default function Home() { return ( diff --git a/src/components/article/ArticleDetail/index.tsx b/src/components/article/detail/index.tsx similarity index 100% rename from src/components/article/ArticleDetail/index.tsx rename to src/components/article/detail/index.tsx diff --git a/src/components/home/Category/index.tsx b/src/components/home/Category/index.tsx index e4c9637..33b9e63 100644 --- a/src/components/home/Category/index.tsx +++ b/src/components/home/Category/index.tsx @@ -1,16 +1,32 @@ +import { categories } from "@/data/categories"; + export default function FeaturedProductCategories() { + const {all_category} = categories.product; + return ( -
-

Danh mục nổi bật

+ <> + {all_category && +
+

Danh mục nổi bật

-
- - - PC Thiết Kế Đồ Họa - - - PC ThiếtPC Thiết Kế Đồ HọaPC Thiết Kế Đồ HọaPC Thiết Kế Đồ HọaPC Thiết Kế Đồ HọaPC Thiết Kế Đồ HọaPC Thiết Kế Đồ HọaPC Thiết Kế Đồ HọaPC Thiết Kế Đồ HọaPC Thiết Kế Đồ Họa +
+ {all_category + .filter( (item:any) => item.is_featured === 1 ) + .map( (item:any) => + + + + + {item.title} + + + ) + } +
-
+ } + ) } \ No newline at end of file diff --git a/src/components/home/Deal/index.tsx b/src/components/home/Deal/index.tsx index 36a8666..0c2e43b 100644 --- a/src/components/home/Deal/index.tsx +++ b/src/components/home/Deal/index.tsx @@ -1,88 +1,67 @@ 'use client'; import { Swiper, SwiperSlide } from 'swiper/react'; import { Navigation, Pagination, Autoplay } from 'swiper/modules'; +import { dealList } from "@/data/deals" +import DealItem from "@/components/shared/DealItem" + +export default function Collection() { + + const data = dealList.filter(item => item.total > 0) ?? []; -export default function Deal() { return ( -
-
-
-
-
- -

Cấu hình Flash Sale

-
- -
-

00

00

00

00

-
-
- - Xem tất cả -
- -
-
-
-
-
- - - -
- - - - -
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum eveniet reprehenderit, in maiores quaerat soluta mollitia - -
-
-

48.990.000 đ

- 52.000.000 đ - -6% -
- - -
- -
- - Còn: 3/5 sản phẩm -
- -
- Quà tặng: - Màn hình Coolest Maste và chuột không dây Logitech -
-
+ data.map( (item:any) => ( +
+
+
+
+
+ +

{item.collection_info.title}

- -
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum eveniet reprehenderit, in maiores quaerat soluta mollitia

48.990.000 đ

52.000.000 đ-6%
Còn: 3/5 sản phẩm
Quà tặng:Màn hình Coolest Maste và chuột không dây Logitech
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum eveniet reprehenderit, in maiores quaerat soluta mollitia

48.990.000 đ

52.000.000 đ-6%
Còn: 3/5 sản phẩm
Quà tặng:Màn hình Coolest Maste và chuột không dây Logitech
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum eveniet reprehenderit, in maiores quaerat soluta mollitia

48.990.000 đ

52.000.000 đ-6%
Còn: 3/5 sản phẩm
Quà tặng:Màn hình Coolest Maste
- - +
+

00

00

00

00

+
+
+ + Xem tất cả +
+ +
+
+
+
+
+ + + { item.list.map( (deal:any) => + + + + )} + + +
-
+ )) ) } \ No newline at end of file diff --git a/src/components/home/Slider/ImageList.tsx b/src/components/home/Slider/ImageList.tsx new file mode 100644 index 0000000..fcd9dd1 --- /dev/null +++ b/src/components/home/Slider/ImageList.tsx @@ -0,0 +1,18 @@ +import ImageItem from '@/components/shared/ImageItem'; + +type Props = { + data?: any[]; + className?: string; +}; + +export default function BannerList({ data = [], className = '' }: Props) { + if (!data.length) return null; + + return ( +
+ {data.map((item) => ( + + ))} +
+ ); +} diff --git a/src/components/home/Slider/index.tsx b/src/components/home/Slider/index.tsx index 0eccf03..244f83e 100644 --- a/src/components/home/Slider/index.tsx +++ b/src/components/home/Slider/index.tsx @@ -1,8 +1,16 @@ 'use client'; import { Swiper, SwiperSlide } from 'swiper/react'; import { Navigation, Pagination, Autoplay } from 'swiper/modules'; +import { banner } from '@/data/banner' +import ImageItem from '@/components/shared/ImageItem'; +import ImageList from './ImageList'; export default function Slider() { + const bannerSlider = banner.homepage['2022_home_slider'] ?? []; + const bannerRight = banner.homepage['2022_home_right_slider'] ?? []; + const bannerUnder = banner.homepage['2022_home_under_slider'] ?? []; + const underSlider = banner.homepage['2022_4_under_slider'] ?? []; + return(
@@ -19,29 +27,14 @@ export default function Slider() { }} pagination={{ clickable: true }} > - - - - - - - - - - - - - - - - - - - - - - - + { + bannerSlider.map((item:any) => + + + + ) + } +
@@ -58,34 +51,22 @@ export default function Slider() {
-
- - - + - - - -
- -
- - - - - -
+
+ -
- - - - - - - -
+
) } \ No newline at end of file diff --git a/src/components/home/index.tsx b/src/components/home/index.tsx index 9a2486c..e13bc53 100644 --- a/src/components/home/index.tsx +++ b/src/components/home/index.tsx @@ -1,10 +1,11 @@ -import Slider from "./Slider"; -import Deal from "./Deal"; -import FeaturedProductCategories from "./Category"; -import ProductCategories from "./Product"; -import Article from "./Article"; +import Slider from "./slider"; +import Deal from "./deal"; +import FeaturedProductCategories from "./category"; +import ProductCategories from "./product"; +import Article from "./article"; -export default function Home() { +export default function HomePage() { + return(
diff --git a/src/components/other/Header/Cart.tsx b/src/components/other/Header/Cart.tsx index 6abbf0e..4e2d2c4 100644 --- a/src/components/other/Header/Cart.tsx +++ b/src/components/other/Header/Cart.tsx @@ -1,21 +1,64 @@ import Link from "next/link"; +import { useCart } from "@/hooks/useCart"; +import { getAllProducts, formatPrice } from "@/lib/utils" -export default function Cart(){ - return( +export default function Cart() { + + const { cartCount, cartIds, loading } = useCart(); + const allProducts = getAllProducts(); + + const productsInCart = allProducts.filter(p => cartIds.includes(p.id) ); + console.log(productsInCart); + + return ( <> -
- - - 0 - - Giỏ
Hàng
- +
+ + + {cartCount} + + Giỏ
Hàng
+ -
-

Tổng tiền hàng (3 sản phẩm): 10.770.000đ

THANH TOÁN NGAY
+ {productsInCart.length > 0 && +
+
+ + {productsInCart.map((item:any) => +
+ + image + + +
+ + {item.productName} + + +

+ x1 + + {item.price > 0 ? formatPrice(item.price) +'đ' : 'Liên hệ'} + +

+
+
+ )} + +

1 số sp không có trong DB tĩnh

+
+ +
+

+ Tổng tiền hàng + ({cartCount} sản phẩm): + 10.770.000đ +

+ THANH TOÁN NGAY +
+
+ }
-
- ) } \ No newline at end of file diff --git a/src/components/other/Header/Menu.tsx b/src/components/other/Header/Menu.tsx deleted file mode 100644 index d9fba81..0000000 --- a/src/components/other/Header/Menu.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import Link from "next/link" -import { categories } from "@/data/categories"; -import MenuItem from "@/components/shared/MenuItem"; - -export default function Menu(){ - const { all_category } = categories.product; - - return( -
-

- Danh mục -

- -
-
    -
  • PC Chuyên Dụng
    • PC Photo Editing
      • Photoshop
      • lightroom
      • stable
      • PC Photo Editing
      • PC Photo Editing
    • PC Rendering
      • logo
      • logo
      • logo
      • logo
    • PC Machine Learning / AI
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
    • Server, Máy Ảo, Giả Lập
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
    • PC Architecture, CAD
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
    • PC Video Editing
      • logo
      • logo
      • logo
      • logo
    • PC 3D Design, Animation
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
    • PC Visualization
      • logo
      • logo
      • logo
      • logo
    • PC Đẹp
      • logo
      • logo
      • logo
  • - - { all_category.map( item => ( - - )) } -
-
-
- ) -} \ No newline at end of file diff --git a/src/components/other/Header/index.tsx b/src/components/other/Header/index.tsx index ac825f8..e38c2df 100644 --- a/src/components/other/Header/index.tsx +++ b/src/components/other/Header/index.tsx @@ -5,7 +5,7 @@ import useFancybox from '@/lib/useFancyBox'; import Link from 'next/link'; import Logo from "./Logo"; -import Menu from "./Menu"; +import Menu from "@/components/other/menu"; import Search from "./Search"; import Cart from "./Cart"; import Account from "./Account"; @@ -41,17 +41,18 @@ export default function Header() {
+
- Hotline
Mua Hàng
-
+ @@ -92,14 +93,13 @@ export default function Header() { Bảo Hành Tận Nhà - Feedback - +
diff --git a/src/components/shared/MenuItem.tsx b/src/components/other/menu/MenuItem.tsx similarity index 100% rename from src/components/shared/MenuItem.tsx rename to src/components/other/menu/MenuItem.tsx diff --git a/src/components/other/menu/index.tsx b/src/components/other/menu/index.tsx new file mode 100644 index 0000000..31d55cd --- /dev/null +++ b/src/components/other/menu/index.tsx @@ -0,0 +1,31 @@ +import Link from "next/link" +import { categories } from "@/data/categories"; +import MenuItem from "./MenuItem"; + +export default function Menu(){ + const { all_category } = categories.product; + + return( +
+

+ Danh mục +

+ +
+
    +
  • + PC Chuyên Dụng
    • PC Photo Editing
      • Photoshop
      • lightroom
      • stable
      • PC Photo Editing
      • PC Photo Editing
    • PC Rendering
      • logo
      • logo
      • logo
      • logo
    • PC Machine Learning / AI
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
    • Server, Máy Ảo, Giả Lập
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
    • PC Architecture, CAD
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
    • PC Video Editing
      • logo
      • logo
      • logo
      • logo
    • PC 3D Design, Animation
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
      • logo
    • PC Visualization
      • logo
      • logo
      • logo
      • logo
    • PC Đẹp
      • logo
      • logo
      • logo
    +
  • + + { + all_category + .filter( item => item.id != 1 ) + .map( item => ( + + )) + } +
+
+
+ ) +} \ No newline at end of file diff --git a/src/components/product/Category/index.tsx b/src/components/product/Category/index.tsx index 0d02394..d18cb50 100644 --- a/src/components/product/Category/index.tsx +++ b/src/components/product/Category/index.tsx @@ -1,10 +1,10 @@ -import ProductFilter from "./Filter"; -import Static from "./Static"; -import FAQ from "./FAQ"; -import Banner from "./Banner"; -import SortByCollection from "./Sort"; -import ProductList from "./Product"; -import Paging from "./Paging"; +import ProductFilter from "./filter"; +import Static from "./static"; +import FAQ from "./faq"; +import Banner from "./banner"; +import SortByCollection from "./sort"; +import ProductList from "./productList"; +import Paging from "./paging"; export default function ProductCategory({ slug }: { slug: string }) { diff --git a/src/components/product/Category/Product/index.tsx b/src/components/product/Category/productList/index.tsx similarity index 100% rename from src/components/product/Category/Product/index.tsx rename to src/components/product/Category/productList/index.tsx diff --git a/src/components/product/ProductDetail/index.tsx b/src/components/product/detail/index.tsx similarity index 100% rename from src/components/product/ProductDetail/index.tsx rename to src/components/product/detail/index.tsx diff --git a/src/components/shared/DealItem.tsx b/src/components/shared/DealItem.tsx new file mode 100644 index 0000000..28fac7f --- /dev/null +++ b/src/components/shared/DealItem.tsx @@ -0,0 +1,80 @@ +'use client'; +import Link from "next/link"; +import { formatPrice } from "@/lib/utils"; +import { useDealItem } from "@/hooks/useDealItem" +import { useCart } from '@/hooks/useCart'; + + +export default function DealItem( {item} : any) { + const deal = useDealItem(item); + if (!deal) return null; + + const { addToCart, isInCart } = useCart(); + + const { + productInfo, + price, + marketPrice, + discount, + remain, + saleRemainPercent, + specialOffer, + } = deal; + + const discountView = discount > 0 ? (<> + {formatPrice(marketPrice)} đ + -{discount}% + + ) : null; + + return ( +
+ + { + + +
+ + { productInfo.productName } + + +
+
+

{formatPrice(price)} đ

+ + {discountView} +
+ + +
+ +
+ + Còn: + {remain}/{item.quantity} + sản phẩm + +
+ + {specialOffer && ( +
+ Quà tặng: + +
+
+ )} +
+
+ ) +} \ No newline at end of file diff --git a/src/components/shared/FancyboxTrigger.tsx b/src/components/shared/FancyboxTrigger.tsx deleted file mode 100644 index f4da814..0000000 --- a/src/components/shared/FancyboxTrigger.tsx +++ /dev/null @@ -1,27 +0,0 @@ -'use client'; - -import React from 'react'; - -type Props = { - target: string; - group?: string; - children: React.ReactNode; - className?: string; -}; - -export default function FancyboxTrigger({ - target, - group = 'default', - children, - className -}: Props) { - return ( - - {children} - - ); -} \ No newline at end of file diff --git a/src/components/shared/ImageItem.tsx b/src/components/shared/ImageItem.tsx new file mode 100644 index 0000000..009a270 --- /dev/null +++ b/src/components/shared/ImageItem.tsx @@ -0,0 +1,18 @@ +'use client'; +import Image from 'next/image'; +import Link from 'next/link'; + +export default function ImageComponent({item}:any){ + return( + + {item.name} + + ) +} \ No newline at end of file diff --git a/src/data/articles.ts b/src/data/articles.ts deleted file mode 100644 index e69de29..0000000 diff --git a/src/data/articles/index.tsx b/src/data/articles/index.tsx new file mode 100644 index 0000000..ffa436d --- /dev/null +++ b/src/data/articles/index.tsx @@ -0,0 +1,1271 @@ +export const articleList = [ + { + "id" : 19, + "total": 43, + "list": [ + { + "id": 1226, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": ",19,", + "title": "Ch\u01b0\u01a1ng Tr\u00ecnh Khuy\u1ebfn M\u00e3i Gi\u1edd V\u00e0ng - Gi\u00e1 S\u1ed1c T\u1ea1i Ho\u00e0ng H\u00e0 PC", + "video_code": "", + "external_url": "", + "url": "\/gio-vang-gia-soc", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "Th\u1eddi Gian: 10h - 12h ng\u00e0y 23\/04\/2023 \u00e1p d\u1ee5ng offline t\u1ea1i showroom Ho\u00e0ng H\u00e0 PC t\u1ea1i: 94E-94F \u0110\u01b0\u1eddng L\u00e1ng, Ng\u00e3 t\u01b0 S\u1edf, H\u00e0 N\u1ed9i\r\n\r\n", + "tags": "", + "createDate": "15-04-2023, 10:02 am", + "createBy": 22, + "create_by_name": "Mai V\u0103n H\u1ecdc", + "lastUpdate": "22-04-2023, 3:48 pm", + "lastUpdateBy": 22, + "lastUpdateByUser": "Mai V\u0103n H\u1ecdc", + "review_rate": 0, + "review_count": 0, + "visit": 11822, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 1, + "comment_count": 0, + "comment_rate": 0, + "counter": 1, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1226_km_gio_vang.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1226_km_gio_vang.jpg" + }, + "categories": [ + { + "id": 19, + "type": "article", + "name": "Tin Khuy\u1ebfn M\u00e3i", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 49922, + "item_count": 45, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-khuyen-mai", + "relate_product": null + } + ] + }, + { + "id": 1493, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "19", + "title": "[Khuy\u1ebfn m\u1ea1i] Nh\u1eadn qu\u00e0 c\u1ef1c ch\u1ea5t - Ch\u01a1i game c\u1ef1c \u0111\u1ec9nh", + "video_code": "", + "external_url": "", + "url": "\/khuyen-mai-nhan-qua-cuc-chat-choi-game-cuc-dinh", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "C\u00f9ng m\u00e0n h\u00ecnh AOC tr\u1ea3i nghi\u1ec7m m\u1ecdi t\u1ef1a game hot hit v\u00e0 nh\u1eadn qu\u00e0 c\u1ef1c ch\u1ea5t khi mua c\u00e1c s\u1ea3n ph\u1ea9m AOC t\u1ea1i Ho\u00e0ng H\u00e0 PC v\u00e0 \u0111\u01b0\u1ee3c ph\u00e2n ph\u1ed1i t\u1eeb C\u00f4ng ty c\u1ed5 ph\u1ea7n m\u00e1y t\u00ednh V\u0129nh Xu\u00e2n.", + "tags": "", + "createDate": "29-08-2024, 4:11 pm", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "29-08-2024, 4:16 pm", + "lastUpdateBy": 26, + "lastUpdateByUser": "Thanh Th\u01b0", + "review_rate": 0, + "review_count": 0, + "visit": 1567, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 2, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1493_km_aoc_t9_2024.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1493_km_aoc_t9_2024.jpg" + }, + "categories": [ + { + "id": 19, + "type": "article", + "name": "Tin Khuy\u1ebfn M\u00e3i", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 49922, + "item_count": 45, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-khuyen-mai", + "relate_product": null + } + ] + }, + { + "id": 1523, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "19", + "title": "[Khuy\u1ebfn m\u1ea1i] M\u00c1Y M\u01af\u1ee2T - DEAL M\u00ca c\u00f9ng GIGABYTE", + "video_code": "", + "external_url": "", + "url": "\/khuyen-mai-may-muot-deal-me-cung-gigabyte", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "CH\u01af\u01a0NG TR\u00ccNH \u01afU \u0110\u00c3I L\u1edaN NH\u1ea4T M\u00d9A H\u00c8 t\u1eeb 01\/06 \u2013 30\/08\/2025 d\u00e0nh cho kh\u00e1ch h\u00e0ng khi mua combo linh ki\u1ec7n GIGABYTE ch\u00ednh h\u00e3ng t\u1ea1i Ho\u00e0ng H\u00e0 PC", + "tags": "", + "createDate": "13-06-2025, 9:04 am", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "13-06-2025, 9:10 am", + "lastUpdateBy": 26, + "lastUpdateByUser": "Thanh Th\u01b0", + "review_rate": 0, + "review_count": 0, + "visit": 783, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 3, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1523_km_may_muot_deal_me_gigabyte_t6_2025.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1523_km_may_muot_deal_me_gigabyte_t6_2025.jpg" + }, + "categories": [ + { + "id": 19, + "type": "article", + "name": "Tin Khuy\u1ebfn M\u00e3i", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 49922, + "item_count": 45, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-khuyen-mai", + "relate_product": null + } + ] + }, + { + "id": 1519, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "19", + "title": "[Khuy\u1ebfn m\u1ea1i] MSI - Nh\u1eadn code game Star Wars Outlaw Gold Edition", + "video_code": "", + "external_url": "", + "url": "\/khuyen-mai-msi-nhan-code-game-star-wars-outlaw-gold-edition", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "Th\u00e1ng 3 n\u00e0y, MSI g\u1eedi t\u1edbi Qu\u00fd kh\u00e1ch h\u00e0ng ch\u01b0\u01a1ng tr\u00ecnh khuy\u1ebfn m\u1ea1i h\u1ea5p d\u1eabn khi mua bo m\u1ea1ch ch\u1ee7 MSI chip set Intel\u00ae nh\u1eadn ngay code game Star Wars Outlaws\u2122 Gold Edition.", + "tags": "", + "createDate": "08-03-2025, 3:42 pm", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "29-04-2025, 1:11 pm", + "lastUpdateBy": 34, + "lastUpdateByUser": "Hurasoft", + "review_rate": 0, + "review_count": 0, + "visit": 879, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 4, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1519_km_msi_tang_code_game_t3_2025.png", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1519_km_msi_tang_code_game_t3_2025.png" + }, + "categories": [ + { + "id": 19, + "type": "article", + "name": "Tin Khuy\u1ebfn M\u00e3i", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 49922, + "item_count": 45, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-khuyen-mai", + "relate_product": null + } + ] + }, + { + "id": 1517, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "19", + "title": "[Khuy\u1ebfn m\u1ea1i] AMD - Nh\u1eadn code game Monster Hunter Wilds si\u00eau hot", + "video_code": "", + "external_url": "", + "url": "\/khuyen-mai-amd-nhan-code-game-monster-hunter-wilds", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "B\u00f9ng ch\u00e1y th\u00e1ng 2 n\u00e0y v\u1edbi CTKM t\u1eb7ng code game m\u1edbi nh\u1ea5t t\u1eeb AMD. Tr\u1ea3i nghi\u1ec7m c\u00e0ng nhi\u1ec1u game, c\u00e0ng c\u00f3 c\u01a1 h\u1ed9i \u0111\u1ea1t \u0111\u1ec9nh vinh quang trong c\u00e1c t\u1ef1a game c\u1ef1c cu\u1ed1n h\u00fat v\u1edbi c\u00e1c c\u1ea5u h\u00ecnh AMD. Nhanh tay s\u1edf h\u1eefu c\u01a1 h\u1ed9i v\u00e0ng cho m\u00ecnh t\u1ef1a game Monster Hunter Wilds\u2122.", + "tags": "", + "createDate": "27-02-2025, 1:31 pm", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "27-02-2025, 1:36 pm", + "lastUpdateBy": 26, + "lastUpdateByUser": "Thanh Th\u01b0", + "review_rate": 0, + "review_count": 0, + "visit": 1163, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 5, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1517_km_amd_tang_code_game_t2_2025.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1517_km_amd_tang_code_game_t2_2025.jpg" + }, + "categories": [ + { + "id": 19, + "type": "article", + "name": "Tin Khuy\u1ebfn M\u00e3i", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 49922, + "item_count": 45, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-khuyen-mai", + "relate_product": null + } + ] + }, + { + "id": 1516, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "19", + "title": "[Khuy\u1ebfn m\u1ea1i] Asus - Nh\u1eadn code game Monster Hunter Wilds khi build b\u1ed9 m\u00e1y Asus Rog", + "video_code": "", + "external_url": "", + "url": "\/khuyen-mai-asus-nhan-code-game-monster-hunter-wilds", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "Ch\u01b0\u01a1ng tr\u00ecnh khuy\u1ebfn m\u1ea1i h\u1ea5p d\u1eabn d\u00e0nh cho Qu\u00fd kh\u00e1ch h\u00e0ng khi build m\u00e1y b\u1ed9 PBA s\u1eed d\u1ee5ng Bo m\u1ea1ch ch\u1ee7 ASUS Z790\/ Z890 + Card \u0111\u1ed3 h\u1ecda ASUS RTX50 series t\u1eb7ng ngay code game MONSTER HUNTER WILDS tr\u1ecb gi\u00e1 1.390.000\u0111", + "tags": "", + "createDate": "27-02-2025, 11:42 am", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "27-02-2025, 11:43 am", + "lastUpdateBy": 26, + "lastUpdateByUser": "Thanh Th\u01b0", + "review_rate": 0, + "review_count": 0, + "visit": 604, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 6, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1516_rtx5090_get_monster_hunter_wild.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1516_rtx5090_get_monster_hunter_wild.jpg" + }, + "categories": [ + { + "id": 19, + "type": "article", + "name": "Tin Khuy\u1ebfn M\u00e3i", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 49922, + "item_count": 45, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-khuyen-mai", + "relate_product": null + } + ] + }, + { + "id": 1504, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "19", + "title": "Khuy\u1ebfn M\u1ea1i Si\u00eau H\u1ea5p D\u1eabn D\u00e0nh Cho H\u1ecdc Sinh-Sinh Vi\u00ean T\u1ea1i Ho\u00e0ng H\u00e0 PC", + "video_code": "", + "external_url": "", + "url": "\/km-hssv", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "\u0110\u1ed3ng h\u00e0nh c\u00f9ng h\u1ecdc sinh - sinh vi\u00ean trong qu\u00e1 tr\u00ecnh h\u1ecdc t\u1eadp, Ho\u00e0ng H\u00e0 PC xin g\u1eedi t\u1eb7ng ch\u01b0\u01a1ng tr\u00ecnh khuy\u1ebfn m\u1ea1i \u01b0u \u0111\u00e3i \u0111\u1eb7c bi\u1ec7t d\u00e0nh ri\u00eang cho c\u00e1c kh\u00e1ch h\u00e0ng l\u00e0 H\u1ecdc sinh \u2013 Sinh vi\u00ean khi mua h\u00e0ng t\u1ea1i t\u1ea5t c\u1ea3 c\u00e1c chi nh\u00e1nh c\u1ee7a Ho\u00e0ng H\u00e0 PC. Gi\u1ea3m gi\u00e1 c\u1ef1c s\u1ed1c l\u00ean t\u1edbi 15% v\u00e0 gi\u1ea3m t\u1edbi 2.000.000 VN\u0110 khi mua PC.", + "tags": "", + "createDate": "01-12-2024, 9:30 pm", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "28-08-2025, 4:30 pm", + "lastUpdateBy": 26, + "lastUpdateByUser": "Thanh Th\u01b0", + "review_rate": 0, + "review_count": 0, + "visit": 182444, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "Khuy\u1ebfn M\u1ea1i Si\u00eau H\u1ea5p D\u1eabn D\u00e0nh Cho H\u1ecdc Sinh, Sinh Vi\u00ean - HHPC", + "meta_keywords": "", + "meta_description": "\u0110\u1ed3ng h\u00e0nh c\u00f9ng h\u1ecdc sinh - sinh vi\u00ean trong qu\u00e1 tr\u00ecnh h\u1ecdc t\u1eadp, Ho\u00e0ng H\u00e0 PC xin g\u1eedi t\u1eb7ng ch\u01b0\u01a1ng tr\u00ecnh khuy\u1ebfn m\u1ea1i \u01b0u \u0111\u00e3i d\u00e0nh ri\u00eang cho H\u1ecdc sinh \u2013 Sinh vi\u00ean", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 7, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1504_km_hs_sv_2025.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1504_km_hs_sv_2025.jpg" + }, + "categories": [ + { + "id": 19, + "type": "article", + "name": "Tin Khuy\u1ebfn M\u00e3i", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 49922, + "item_count": 45, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-khuyen-mai", + "relate_product": null + } + ] + }, + { + "id": 1503, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "19", + "title": "Khuy\u1ebfn m\u1ea1i kh\u1ee7ng m\u00f9a l\u1ec5 h\u1ed9i t\u1eeb Gigabyte", + "video_code": "", + "external_url": "", + "url": "\/khuyen-mai-khung-mua-le-hoi-tu-gigabyte", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "Gigabyte mang \u0111\u1ebfn ch\u01b0\u01a1ng tr\u00ecnh khuy\u1ebfn m\u00e3i kh\u1ee7ng nh\u1ea5t n\u0103m! H\u00e3y nhanh tay s\u1edf h\u1eefu c\u00e1c s\u1ea3n ph\u1ea9m c\u00f4ng ngh\u1ec7 \u0111\u1ec9nh cao v\u00e0 nh\u1eadn ngay h\u00e0ng lo\u1ea1t qu\u00e0 t\u1eb7ng h\u1ea5p d\u1eabn!", + "tags": "", + "createDate": "21-11-2024, 2:12 pm", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "21-11-2024, 2:16 pm", + "lastUpdateBy": 26, + "lastUpdateByUser": "Thanh Th\u01b0", + "review_rate": 0, + "review_count": 0, + "visit": 1008, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 8, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1503_khuy___n_m___i_kh___ng_m__a_l____h___i_t____gigabyte_ha1.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1503_khuy___n_m___i_kh___ng_m__a_l____h___i_t____gigabyte_ha1.jpg" + }, + "categories": [ + { + "id": 19, + "type": "article", + "name": "Tin Khuy\u1ebfn M\u00e3i", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 49922, + "item_count": 45, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-khuyen-mai", + "relate_product": null + } + ] + }, + { + "id": 1502, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "19", + "title": "[Khuy\u1ebfn m\u1ea1i] Gigabyte t\u1eb7ng Game ''Indiana Jones and the Great Circle''", + "video_code": "", + "external_url": "", + "url": "\/khuyen-mai-gigabyte-tang-game-indiana-jones-and-the-great-circle", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "Ch\u01b0\u01a1ng tr\u00ecnh khuy\u1ebfn m\u1ea1i t\u1eb7ng code game hot \"Indiana Jones and the Great Circle\" d\u00e0nh cho Qu\u00fd kh\u00e1ch h\u00e0ng khi mua c\u00e1c s\u1ea3n ph\u1ea9m VGA ho\u1eb7c laptop c\u1ee7a Gigabyte t\u1ea1i Ho\u00e0ng H\u00e0 PC trong th\u1eddi gian n\u00e0y.", + "tags": "", + "createDate": "16-11-2024, 1:27 pm", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "11-12-2024, 11:26 am", + "lastUpdateBy": 26, + "lastUpdateByUser": "Thanh Th\u01b0", + "review_rate": 0, + "review_count": 0, + "visit": 636, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 9, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1502_km_giga_game_t11_2024.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1502_km_giga_game_t11_2024.jpg" + }, + "categories": [ + { + "id": 19, + "type": "article", + "name": "Tin Khuy\u1ebfn M\u00e3i", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 49922, + "item_count": 45, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-khuyen-mai", + "relate_product": null + } + ] + }, + { + "id": 1498, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "19", + "title": "[Khuy\u1ebfn m\u1ea1i] A.I \u0111\u00edch th\u1ef1c - Hi\u1ec7u n\u0103ng v\u00f4 c\u1ef1c", + "video_code": "", + "external_url": "", + "url": "\/khuyen-mai-a-i-dich-thuc-hieu-nang-vo-cuc", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "Nh\u00e2n d\u1ecbp m\u1edf b\u00e1n ch\u00ednh th\u1ee9c d\u00f2ng main Z890, Gigabyte g\u1eedi t\u1edbi qu\u00fd kh\u00e1ch h\u00e0ng c\u1ee7a Ho\u00e0ng H\u00e0 PC ch\u01b0\u01a1ng tr\u00ecnh khuy\u1ebfn m\u1ea1i v\u00f4 c\u00f9ng h\u1ea5p d\u1eabn.", + "tags": "", + "createDate": "25-10-2024, 8:45 am", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "25-10-2024, 8:46 am", + "lastUpdateBy": 26, + "lastUpdateByUser": "Thanh Th\u01b0", + "review_rate": 0, + "review_count": 0, + "visit": 923, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 10, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1498_km_gigabyte_z890_t11_2024.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1498_km_gigabyte_z890_t11_2024.jpg" + }, + "categories": [ + { + "id": 19, + "type": "article", + "name": "Tin Khuy\u1ebfn M\u00e3i", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 49922, + "item_count": 45, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-khuyen-mai", + "relate_product": null + } + ] + } + ] + }, + { + "id" : 5, + "total": 149, + "list": [ + { + "id": 1527, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "5", + "title": "RAM v\u00e0 SSD \u0111ang t\u0103ng gi\u00e1 phi m\u00e3 t\u1ea1i Vi\u1ec7t Nam: Chuy\u1ec7n g\u00ec \u0111ang x\u1ea3y ra?", + "video_code": "", + "external_url": "", + "url": "\/ram-va-ssd-dang-tang-gia-phi-ma-tai-viet-nam", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "RAM v\u00e0 SSD t\u1ea1i Vi\u1ec7t Nam t\u0103ng gi\u00e1 m\u1ea1nh do b\u00f9ng n\u1ed5 AI, thi\u1ebfu h\u1ee5t DRAM\/NAND v\u00e0 khan hi\u1ebfm DDR4. Ph\u00e2n t\u00edch nguy\u00ean nh\u00e2n, t\u00e1c \u0111\u1ed9ng v\u00e0 d\u1ef1 b\u00e1o \u0111\u1ebfn 2026\u20132030.", + "tags": "", + "createDate": "24-11-2025, 4:28 pm", + "createBy": 22, + "create_by_name": "Mai V\u0103n H\u1ecdc", + "lastUpdate": "24-11-2025, 4:37 pm", + "lastUpdateBy": 22, + "lastUpdateByUser": "Mai V\u0103n H\u1ecdc", + "review_rate": 0, + "review_count": 0, + "visit": 2333, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "RAM v\u00e0 SSD \u0111ang t\u0103ng gi\u00e1 phi m\u00e3 t\u1ea1i Vi\u1ec7t Nam: Chuy\u1ec7n g\u00ec \u0111ang x\u1ea3y ra?", + "meta_keywords": "", + "meta_description": "RAM v\u00e0 SSD t\u1ea1i Vi\u1ec7t Nam t\u0103ng gi\u00e1 m\u1ea1nh do b\u00f9ng n\u1ed5 AI, thi\u1ebfu h\u1ee5t DRAM\/NAND v\u00e0 khan hi\u1ebfm DDR4. Ph\u00e2n t\u00edch nguy\u00ean nh\u00e2n, t\u00e1c \u0111\u1ed9ng v\u00e0 d\u1ef1 b\u00e1o \u0111\u1ebfn 2026\u20132030.", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 1, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1527_gia_ram_ssd_tang_min.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1527_gia_ram_ssd_tang_min.jpg" + }, + "categories": [ + { + "id": 5, + "type": "article", + "name": "Tin C\u00f4ng Ngh\u1ec7", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 89868, + "item_count": 153, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-cong-nghe", + "relate_product": null + } + ] + }, + { + "id": 1526, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "5", + "title": "Th\u00f4ng b\u00e1o thay \u0111\u1ed5i \u0111\u1ecba ch\u1ec9 kinh doanh chi nh\u00e1nh Ho\u00e0ng H\u00e0 PC H\u1ed3 Ch\u00ed Minh", + "video_code": "", + "external_url": "", + "url": "\/thong-bao-thay-doi-dia-chi-kinh-doanh-chi-nhanh-hoang-ha-pc-ho-chi-minh", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "T\u1eeb ng\u00e0y 29\/09\/2025, Ho\u00e0ng H\u00e0 PC chi nh\u00e1nh H\u1ed3 Ch\u00ed Minh chuy\u1ec3n \u0111\u1ecba \u0111i\u1ec3m kinh doanh t\u1eeb 260 L\u00fd Th\u01b0\u1eddng Ki\u1ec7t sang To\u00e0 nh\u00e0 Ho\u00e0ng H\u00e0 Building - K8bis B\u1eedu Long - Ph\u01b0\u1eddng Ho\u00e0 H\u01b0ng - Th\u00e0nh ph\u1ed1 H\u1ed3 Ch\u00ed Minh", + "tags": "", + "createDate": "29-09-2025, 8:56 am", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "29-09-2025, 9:07 am", + "lastUpdateBy": 26, + "lastUpdateByUser": "Thanh Th\u01b0", + "review_rate": 0, + "review_count": 0, + "visit": 802, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 2, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1526_thay_doi_dia_chi_hhpc_hcm.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1526_thay_doi_dia_chi_hhpc_hcm.jpg" + }, + "categories": [ + { + "id": 5, + "type": "article", + "name": "Tin C\u00f4ng Ngh\u1ec7", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 89868, + "item_count": 153, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-cong-nghe", + "relate_product": null + } + ] + }, + { + "id": 1512, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "5", + "title": "Nvidia GeForce RTX 5080: Th\u1eddi gian ra m\u1eaft, Th\u00f4ng s\u1ed1, Hi\u1ec7u n\u0103ng & Gi\u00e1 d\u1ef1 ki\u1ebfn", + "video_code": "", + "external_url": "", + "url": "\/nvidia-geforce-rtx-5080-thoi-gian-ra-mat-thong-so-hieu-nang-gia-du-kien", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "T\u00ecm hi\u1ec3u m\u1ecdi th\u00f4ng tin v\u1ec1 Nvidia GeForce RTX 5080, t\u1eeb ng\u00e0y ra m\u1eaft, th\u00f4ng s\u1ed1 k\u1ef9 thu\u1eadt, hi\u1ec7u n\u0103ng v\u01b0\u1ee3t tr\u1ed9i \u0111\u1ebfn gi\u00e1 b\u00e1n d\u1ef1 ki\u1ebfn. C\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t cho ng\u01b0\u1eddi y\u00eau c\u00f4ng ngh\u1ec7!", + "tags": "", + "createDate": "06-01-2025, 4:39 pm", + "createBy": 22, + "create_by_name": "Mai V\u0103n H\u1ecdc", + "lastUpdate": "18-02-2025, 4:42 pm", + "lastUpdateBy": 22, + "lastUpdateByUser": "Mai V\u0103n H\u1ecdc", + "review_rate": 0, + "review_count": 0, + "visit": 7706, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "Nvidia RTX 5080: Th\u1eddi gian ra m\u1eaft, Th\u00f4ng s\u1ed1, Hi\u1ec7u n\u0103ng & Gi\u00e1 d\u1ef1 ki\u1ebfn", + "meta_keywords": "", + "meta_description": "T\u00ecm hi\u1ec3u m\u1ecdi th\u00f4ng tin v\u1ec1 Nvidia GeForce RTX 5080, t\u1eeb ng\u00e0y ra m\u1eaft, th\u00f4ng s\u1ed1 k\u1ef9 thu\u1eadt, hi\u1ec7u n\u0103ng v\u01b0\u1ee3t tr\u1ed9i \u0111\u1ebfn gi\u00e1 b\u00e1n d\u1ef1 ki\u1ebfn. C\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t cho ng\u01b0\u1eddi y\u00eau c\u00f4ng ngh\u1ec7!", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 3, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1512_rtx_5080_1.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1512_rtx_5080_1.jpg" + }, + "categories": [ + { + "id": 5, + "type": "article", + "name": "Tin C\u00f4ng Ngh\u1ec7", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 89868, + "item_count": 153, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-cong-nghe", + "relate_product": null + } + ] + }, + { + "id": 1511, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "5", + "title": "Nvidia GeForce RTX 5090: Th\u1eddi gian ra m\u1eaft, Th\u00f4ng s\u1ed1, Hi\u1ec7u n\u0103ng & Gi\u00e1 d\u1ef1 ki\u1ebfn", + "video_code": "", + "external_url": "", + "url": "\/nvidia-geforce-rtx-5090-thoi-gian-ra-mat-thong-so-hieu-nang-gia-du-kien", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "Kh\u00e1m ph\u00e1 NVIDIA RTX 5090, v\u1edbi ki\u1ebfn tr\u00fac Blackwell, hi\u1ec7u n\u0103ng v\u01b0\u1ee3t tr\u1ed9i. T\u00ecm hi\u1ec3u chi ti\u1ebft v\u1ec1 th\u1eddi gian ra m\u1eaft, th\u00f4ng s\u1ed1 k\u1ef9 thu\u1eadt, gi\u00e1 c\u1ea3 v\u00e0 hi\u1ec7u n\u0103ng.", + "tags": "", + "createDate": "06-01-2025, 3:04 pm", + "createBy": 22, + "create_by_name": "Mai V\u0103n H\u1ecdc", + "lastUpdate": "18-02-2025, 4:42 pm", + "lastUpdateBy": 22, + "lastUpdateByUser": "Mai V\u0103n H\u1ecdc", + "review_rate": 0, + "review_count": 0, + "visit": 14738, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "Nvidia RTX 5090: Th\u1eddi gian ra m\u1eaft, Th\u00f4ng s\u1ed1, Hi\u1ec7u n\u0103ng & Gi\u00e1 d\u1ef1 ki\u1ebfn", + "meta_keywords": "", + "meta_description": "Kh\u00e1m ph\u00e1 NVIDIA RTX 5090, v\u1edbi ki\u1ebfn tr\u00fac Blackwell, hi\u1ec7u n\u0103ng v\u01b0\u1ee3t tr\u1ed9i. T\u00ecm hi\u1ec3u chi ti\u1ebft v\u1ec1 th\u1eddi gian ra m\u1eaft, th\u00f4ng s\u1ed1 k\u1ef9 thu\u1eadt, gi\u00e1 c\u1ea3 v\u00e0 hi\u1ec7u n\u0103ng.", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 4, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1511_rtx_5090_1_min.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1511_rtx_5090_1_min.jpg" + }, + "categories": [ + { + "id": 5, + "type": "article", + "name": "Tin C\u00f4ng Ngh\u1ec7", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 89868, + "item_count": 153, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-cong-nghe", + "relate_product": null + } + ] + }, + { + "id": 1506, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "5", + "title": "Build 1 B\u1ed9 PC C\u1ea7n Nh\u1eefng G\u00ec? C\u00e1c B\u01b0\u1edbc L\u1eafp R\u00e1p 1 B\u1ed9 M\u00e1y T\u00ednh", + "video_code": "", + "external_url": "", + "url": "\/build-1-bo-pc-can-nhung-gi", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "T\u00ecm hi\u1ec3u c\u00e1ch x\u00e2y d\u1ef1ng m\u1ed9t b\u1ed9 PC ho\u00e0n ch\u1ec9nh t\u1eeb A-Z. Danh s\u00e1ch linh ki\u1ec7n c\u1ea7n thi\u1ebft v\u00e0 c\u00e1c b\u01b0\u1edbc l\u1eafp r\u00e1p chi ti\u1ebft, d\u1ec5 hi\u1ec3u.", + "tags": "", + "createDate": "20-12-2024, 1:42 pm", + "createBy": 22, + "create_by_name": "Mai V\u0103n H\u1ecdc", + "lastUpdate": "18-04-2025, 2:27 pm", + "lastUpdateBy": 34, + "lastUpdateByUser": "Hurasoft", + "review_rate": 0, + "review_count": 0, + "visit": 15176, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "Build 1 B\u1ed9 PC C\u1ea7n Nh\u1eefng G\u00ec? C\u00e1c B\u01b0\u1edbc L\u1eafp R\u00e1p 1 B\u1ed9 M\u00e1y T\u00ednh", + "meta_keywords": "", + "meta_description": "T\u00ecm hi\u1ec3u c\u00e1ch x\u00e2y d\u1ef1ng m\u1ed9t b\u1ed9 PC ho\u00e0n ch\u1ec9nh t\u1eeb A-Z. Danh s\u00e1ch linh ki\u1ec7n c\u1ea7n thi\u1ebft v\u00e0 c\u00e1c b\u01b0\u1edbc l\u1eafp r\u00e1p chi ti\u1ebft, d\u1ec5 hi\u1ec3u.", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 5, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1506_build_pc_can_nhung_gi_1_min.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1506_build_pc_can_nhung_gi_1_min.jpg" + }, + "categories": [ + { + "id": 5, + "type": "article", + "name": "Tin C\u00f4ng Ngh\u1ec7", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 89868, + "item_count": 153, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-cong-nghe", + "relate_product": null + } + ] + }, + { + "id": 1495, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "5", + "title": "ZADAK ra m\u1eaft RAM DDR4 thi\u1ebft k\u1ebf 2 t\u1ea7ng, dung l\u01b0\u1ee3ng 32 GB\/thanh", + "video_code": "", + "external_url": "", + "url": "\/zadak-ra-mat-ram-ddr4-thiet-ke-2-tang-dung-luong-32-gb-thanh", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "ZADAK, m\u1ed9t nh\u00e0 s\u1ea3n xu\u1ea5t linh ki\u1ec7n PC \u0110\u00e0i Loan, \u0111\u00e3 g\u00e2y \u1ea5n t\u01b0\u1ee3ng m\u1ea1nh v\u1edbi s\u1ea3n ph\u1ea9m RAM DDR4 dung l\u01b0\u1ee3ng 32GB\/thanh, thi\u1ebft k\u1ebf \"hai t\u1ea7ng\" \u0111\u1ed9c \u0111\u00e1o. ", + "tags": "", + "createDate": "14-10-2024, 4:37 pm", + "createBy": 22, + "create_by_name": "Mai V\u0103n H\u1ecdc", + "lastUpdate": "29-10-2024, 10:47 am", + "lastUpdateBy": 22, + "lastUpdateByUser": "Mai V\u0103n H\u1ecdc", + "review_rate": 0, + "review_count": 0, + "visit": 663, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "ZADAK ra m\u1eaft RAM DDR4 2 t\u1ea7ng, dung l\u01b0\u1ee3ng 32 GB\/thanh", + "meta_keywords": "", + "meta_description": "ZADAK, m\u1ed9t nh\u00e0 s\u1ea3n xu\u1ea5t linh ki\u1ec7n PC \u0110\u00e0i Loan, \u0111\u00e3 g\u00e2y \u1ea5n t\u01b0\u1ee3ng m\u1ea1nh v\u1edbi s\u1ea3n ph\u1ea9m RAM DDR4 dung l\u01b0\u1ee3ng 32GB\/thanh, thi\u1ebft k\u1ebf \"hai t\u1ea7ng\" \u0111\u1ed9c \u0111\u00e1o. ", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 6, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1495_ram_zadak_2_min.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1495_ram_zadak_2_min.jpg" + }, + "categories": [ + { + "id": 5, + "type": "article", + "name": "Tin C\u00f4ng Ngh\u1ec7", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 89868, + "item_count": 153, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-cong-nghe", + "relate_product": null + } + ] + }, + { + "id": 1243, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "5,22", + "title": "H\u01b0\u1edbng d\u1eabn s\u1eed d\u1ee5ng b\u1ed9 c\u00f4ng c\u1ee5 Stable Diffusion - V\u1ebd tranh Ai chuy\u00ean nghi\u1ec7p nh\u1ea5t", + "video_code": "", + "external_url": "", + "url": "\/huong-dan-su-dung-bo-cong-cu-stable-diffusion-ve-tranh-ai-chuyen-nghiep-nhat", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "Tranh AI \u0111ang d\u1ea7n chi\u1ebfm l\u0129nh v\u00e0 g\u00e2y \u1ea5n t\u01b0\u1ee3ng trong l\u0129nh v\u1ef1c \u0111\u1ed3 h\u1ecda, d\u1ea7n tr\u1edf th\u00e0nh m\u1ed9t ph\u1ea7n quan tr\u1ecdng c\u1ee7a v\u0103n h\u00f3a th\u1ecb gi\u00e1c hi\u1ec7n \u0111\u1ea1i. ", + "tags": "", + "createDate": "18-09-2023, 3:42 pm", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "29-10-2024, 11:05 am", + "lastUpdateBy": 22, + "lastUpdateByUser": "Mai V\u0103n H\u1ecdc", + "review_rate": 0, + "review_count": 0, + "visit": 2978, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "Stable Diffusion - V\u1ebd tranh Ai chuy\u00ean nghi\u1ec7p nh\u1ea5t", + "meta_keywords": "", + "meta_description": "Tranh AI \u0111ang d\u1ea7n chi\u1ebfm l\u0129nh v\u00e0 g\u00e2y \u1ea5n t\u01b0\u1ee3ng trong l\u0129nh v\u1ef1c \u0111\u1ed3 h\u1ecda, d\u1ea7n tr\u1edf th\u00e0nh m\u1ed9t ph\u1ea7n quan tr\u1ecdng c\u1ee7a v\u0103n h\u00f3a th\u1ecb gi\u00e1c hi\u1ec7n \u0111\u1ea1i. ", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 7, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1243_h_____ng_d___n_s____d___ng_b____c__ng_c____stable_diffusion___v____tranh_ai_chuy__n_nghi___p_nh___t.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1243_h_____ng_d___n_s____d___ng_b____c__ng_c____stable_diffusion___v____tranh_ai_chuy__n_nghi___p_nh___t.jpg" + }, + "categories": [ + { + "id": 5, + "type": "article", + "name": "Tin C\u00f4ng Ngh\u1ec7", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 89868, + "item_count": 153, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-cong-nghe", + "relate_product": null + }, + { + "id": 22, + "type": "article", + "name": "Th\u1ee7 Thu\u1eadt Ph\u1ea7n M\u1ec1m", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 20, + "extend": null, + "visit": 3766, + "item_count": 69, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/thu-thuat-phan-mem", + "relate_product": null + } + ] + }, + { + "id": 1234, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "5", + "title": "Intel b\u1ecf t\u00ean g\u1ecdi Core i5, i7, i9 tr\u00ean c\u00e1c d\u00f2ng chip m\u1edbi", + "video_code": "", + "external_url": "", + "url": "\/intel-bo-ten-goi-core-i-tren-cac-dong-chip-moi", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "Sau 15 n\u0103m s\u1eed d\u1ee5ng Core i series \u0111\u1ec3 \u0111\u1eb7t t\u00ean cho c\u00e1c bCPU, Intel quy\u1ebft \u0111\u1ecbnh thay \u0111\u1ed5i t\u00ean g\u1ecdi cho c\u00e1c CPU th\u1ebf h\u1ec7 14 Meteor Lake v\u1edbi t\u00ean g\u1ecdi m\u1edbi Core Ultra.", + "tags": "", + "createDate": "03-05-2023, 2:46 pm", + "createBy": 26, + "create_by_name": "Thanh Th\u01b0", + "lastUpdate": "29-10-2024, 11:10 am", + "lastUpdateBy": 22, + "lastUpdateByUser": "Mai V\u0103n H\u1ecdc", + "review_rate": 0, + "review_count": 0, + "visit": 2154, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "", + "meta_keywords": "", + "meta_description": "", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 8, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1234_intel_b____t__n_g___i_core_i5__i7_tr__n_c__c_d__ng_chip_m___i.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1234_intel_b____t__n_g___i_core_i5__i7_tr__n_c__c_d__ng_chip_m___i.jpg" + }, + "categories": [ + { + "id": 5, + "type": "article", + "name": "Tin C\u00f4ng Ngh\u1ec7", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 89868, + "item_count": 153, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-cong-nghe", + "relate_product": null + } + ] + }, + { + "id": 1192, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "5", + "title": "So s\u00e1nh card \u0111\u1ed3 h\u1ecda Quadro v\u00e0 GeForce: N\u00ean ch\u1ecdn lo\u1ea1i n\u00e0o?", + "video_code": "", + "external_url": "", + "url": "\/so-sanh-card-do-hoa-quadro-va-geforce", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "So s\u00e1nh card \u0111\u1ed3 h\u1ecda Quadro v\u00e0 GeForce: kh\u00e1c bi\u1ec7t v\u1ec1 hi\u1ec7u n\u0103ng, t\u00ednh n\u0103ng v\u00e0 \u0111\u1ed1i t\u01b0\u1ee3ng s\u1eed d\u1ee5ng. Gi\u00fap b\u1ea1n quy\u1ebft \u0111\u1ecbnh ch\u1ecdn card ph\u00f9 h\u1ee3p cho c\u00f4ng vi\u1ec7c v\u00e0 gi\u1ea3i tr\u00ed.", + "tags": "", + "createDate": "20-03-2023, 3:19 pm", + "createBy": 22, + "create_by_name": "Mai V\u0103n H\u1ecdc", + "lastUpdate": "29-10-2024, 11:14 am", + "lastUpdateBy": 22, + "lastUpdateByUser": "Mai V\u0103n H\u1ecdc", + "review_rate": 0, + "review_count": 0, + "visit": 13253, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "So s\u00e1nh card \u0111\u1ed3 h\u1ecda Quadro v\u00e0 GeForce: N\u00ean ch\u1ecdn lo\u1ea1i n\u00e0o?", + "meta_keywords": "", + "meta_description": "So s\u00e1nh card \u0111\u1ed3 h\u1ecda Quadro v\u00e0 GeForce: kh\u00e1c bi\u1ec7t v\u1ec1 hi\u1ec7u n\u0103ng, t\u00ednh n\u0103ng v\u00e0 \u0111\u1ed1i t\u01b0\u1ee3ng s\u1eed d\u1ee5ng. Gi\u00fap b\u1ea1n quy\u1ebft \u0111\u1ecbnh ch\u1ecdn card ph\u00f9 h\u1ee3p cho c\u00f4ng vi\u1ec7c v\u00e0 gi\u1ea3i tr\u00ed.", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 9, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1192_so_s__nh_card_______h___a_quadro_v___geforce_n__n_ch___n_lo___i_n__o.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1192_so_s__nh_card_______h___a_quadro_v___geforce_n__n_ch___n_lo___i_n__o.jpg" + }, + "categories": [ + { + "id": 5, + "type": "article", + "name": "Tin C\u00f4ng Ngh\u1ec7", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 89868, + "item_count": 153, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-cong-nghe", + "relate_product": null + } + ] + }, + { + "id": 1177, + "type": "article", + "changeCount": 0, + "sellerId": 0, + "article_category": "5", + "title": "NVIDIA H\u1ee7y B\u1ecf Phi\u00ean B\u1ea3n 12GB, RTX 4080 Ch\u1ec9 C\u00f2n Phi\u00ean B\u1ea3n 16GB", + "video_code": "", + "external_url": "", + "url": "\/huy-phien-ban-12gb-rtx-4080-cua-nvidia-se-chi-co-ban-16gb", + "redirect_url": "", + "url_hash": "0", + "image_background": "", + "extend": false, + "summary": "NVIDIA \u0111\u00e3 g\u1ea5p r\u00fat y\u00eau c\u1ea7u c\u00e1c \u0111\u1ed1i t\u00e1c c\u1ee7a h\u1ecd ng\u1eebng cung c\u1ea5p s\u1ea3n ph\u1ea9m 12GB v\u00e0 s\u1ebd ch\u1ec9 m\u1edf b\u00e1n phi\u00ean b\u1ea3n 16GB. H\u00e3y c\u00f9ng Ho\u00e0ng H\u00e0 PC t\u00ecm hi\u1ec3u trong b\u00e0i vi\u1ebft n\u00e0y nh\u00e9.\r\n\r\n", + "tags": "", + "createDate": "17-10-2022, 9:54 am", + "createBy": 15, + "create_by_name": "", + "lastUpdate": "30-10-2024, 9:27 am", + "lastUpdateBy": 22, + "lastUpdateByUser": "Mai V\u0103n H\u1ecdc", + "review_rate": 0, + "review_count": 0, + "visit": 2038, + "like_count": 0, + "is_featured": 0, + "album_id": 0, + "search_fulltext": null, + "meta_title": "NVIDIA H\u1ee7y Phi\u00ean B\u1ea3n 12GB, RTX 4080 Ch\u1ec9 C\u00f2n Phi\u00ean B\u1ea3n 16GB", + "meta_keywords": "", + "meta_description": "NVIDIA quy\u1ebft \u0111\u1ecbnh h\u1ee7y b\u1ecf phi\u00ean b\u1ea3n RTX 4080 12GB v\u00e0 ch\u1ec9 ra m\u1eaft phi\u00ean b\u1ea3n 16GB. Quy\u1ebft \u0111\u1ecbnh n\u00e0y mang l\u1ea1i t\u00e1c \u0111\u1ed9ng g\u00ec \u0111\u1ebfn th\u1ecb tr\u01b0\u1eddng v\u00e0 ng\u01b0\u1eddi ti\u00eau d\u00f9ng?", + "url_canonical": "", + "article_time": "", + "allow_se_index": 0, + "comment_count": 0, + "comment_rate": 0, + "counter": 10, + "image": { + "thum": "https:\/\/hoanghapccdn.com\/media\/news\/120_1177_h___y_phi__n_b___n_12gb__rtx_4080_c___a_nvidia_s____ch____c___b___n_16gb.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/news\/1177_h___y_phi__n_b___n_12gb__rtx_4080_c___a_nvidia_s____ch____c___b___n_16gb.jpg" + }, + "categories": [ + { + "id": 5, + "type": "article", + "name": "Tin C\u00f4ng Ngh\u1ec7", + "summary": "", + "description": "", + "isParent": 0, + "imgUrl": "", + "parentId": 0, + "extend": null, + "visit": 89868, + "item_count": 153, + "display_option": "child_article", + "lastUpdateBy": 8, + "request_path": "\/tin-cong-nghe", + "relate_product": null + } + ] + } + ] + } +] \ No newline at end of file diff --git a/src/data/banner.ts b/src/data/banner/index.tsx similarity index 99% rename from src/data/banner.ts rename to src/data/banner/index.tsx index ac6a456..6bb6c48 100644 --- a/src/data/banner.ts +++ b/src/data/banner/index.tsx @@ -1,5 +1,5 @@ export const banner = { - header : { + "header" : { "2024_global_banner_two_sides": [ { "id": "553", @@ -85,9 +85,9 @@ export const banner = { ] }, - footer : {}, + "footer" : {}, - homepage : { + "homepage" : { "2022_home_slider": [ { "id": "578", @@ -677,7 +677,7 @@ export const banner = { }, - product_list : { + "product_list" : { "2025_hompage_banner_product_category": [ { "id": "574", diff --git a/src/data/categories.ts b/src/data/categories/index.tsx similarity index 100% rename from src/data/categories.ts rename to src/data/categories/index.tsx diff --git a/src/data/deals/index.tsx b/src/data/deals/index.tsx new file mode 100644 index 0000000..115d7ed --- /dev/null +++ b/src/data/deals/index.tsx @@ -0,0 +1,829 @@ +export const dealList = [ + { + "total": 26, + "collection_info": { + "id": 1, + "title": "C\u1ea5u h\u00ecnh Flash Sale", + "summary": "Mi\u00eau t\u1ea3 nh\u00f3m deal 1", + }, + "list": [ + { + "id": "342", + "title": "HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 Ti 16G", + "price": 51750000, + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576809", + "sale_order": "0", + "deal_time_happen": 796220, + "deal_time_left": 1624780, + "sale_quantity": "0", + "request_path": "\/deal\/342", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6669, + "productName": "HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 Ti 16G", + "productSKU": "0", + "price": 52790000, + "proThum": "6669_pc_anubis_14700kf_sale_4.jpg", + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU Ryzen 7 9800X3D ch\u1ec9 c\u00f2n<\/span><\/strong><\/span>\u00a0<\/span>10.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/span><\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU Ryzen 7 9800X3D khi mua k\u00e8m main\u00a0B650 tr\u1edf l\u00ean l\u00e0:\u00a012.290.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb\u00a0CPU Ryzen 7 9800X3D l\u00e0:\u00a013.290.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU Ryzen 7 9800X3D ch\u1ec9 c\u00f2n<\/span><\/strong><\/span>\u00a0<\/span>10.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/span><\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU Ryzen 7 9800X3D khi mua k\u00e8m main\u00a0B650 tr\u1edf l\u00ean l\u00e0:\u00a012.290.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb\u00a0CPU Ryzen 7 9800X3D l\u00e0:\u00a013.290.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "productUrl": "\/hhpc-core-i7-14700kf-64gb-rtx-5070-ti-16g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6669_pc_anubis_14700kf_sale_4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6669_pc_anubis_14700kf_sale_4.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6669_pc_anubis_14700kf_sale_4.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "341", + "title": "HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 12G", + "price": 43800000, + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576805", + "sale_order": "0", + "deal_time_happen": 796220, + "deal_time_left": 1624780, + "sale_quantity": "0", + "request_path": "\/deal\/341", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6668, + "productName": "HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5070 12G", + "productSKU": "0", + "price": 44690000, + "proThum": "6668_pc_anubis_14700kf_sale_3.jpg", + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU Ryzen 7 9800X3D ch\u1ec9 c\u00f2n<\/span><\/strong><\/span>\u00a0<\/span>10.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/span><\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU Ryzen 7 9800X3D khi mua k\u00e8m main\u00a0B650 tr\u1edf l\u00ean l\u00e0:\u00a012.290.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb\u00a0CPU Ryzen 7 9800X3D l\u00e0:\u00a013.290.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU Ryzen 7 9800X3D ch\u1ec9 c\u00f2n<\/span><\/strong><\/span>\u00a0<\/span>10.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/span><\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU Ryzen 7 9800X3D khi mua k\u00e8m main\u00a0B650 tr\u1edf l\u00ean l\u00e0:\u00a012.290.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb\u00a0CPU Ryzen 7 9800X3D l\u00e0:\u00a013.290.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "productUrl": "\/hhpc-core-i7-14700kf-64gb-rtx-5070-12g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6668_pc_anubis_14700kf_sale_3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6668_pc_anubis_14700kf_sale_3.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6668_pc_anubis_14700kf_sale_3.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "340", + "title": "HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5060 Ti 16G", + "price": 41100000, + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576799", + "sale_order": "0", + "deal_time_happen": 796220, + "deal_time_left": 1624780, + "sale_quantity": "0", + "request_path": "\/deal\/340", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6667, + "productName": "HHPC CORE i7 14700KF | 64GB | NVIDIA RTX 5060 Ti 16G", + "productSKU": "0", + "price": 41890000, + "proThum": "6667_pc_anubis_5060ti_sale.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/hhpc-core-i7-14700kf-64gb-rtx-5060-ti-16g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6667_pc_anubis_5060ti_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6667_pc_anubis_5060ti_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6667_pc_anubis_5060ti_sale.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "330", + "title": "HHPC RYZEN 7 9800X3D | 32G DDR5 | RX 7800 XT 16G", + "price": 41550000, + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576954", + "sale_order": "0", + "deal_time_happen": 796220, + "deal_time_left": 1624780, + "sale_quantity": "0", + "request_path": "\/deal\/330", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6246, + "productName": "HHPC RYZEN 7 9800X3D | 32G DDR5 | RX 7800 XT 16G", + "productSKU": "0", + "price": 42380000, + "proThum": "6246_pc_mag_forge_120a_airflow.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/hhpc-ryzen-7-9800x3d-32g-ddr5-rx-7800-xt-16g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6246_pc_mag_forge_120a_airflow.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6246_pc_mag_forge_120a_airflow.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6246_pc_mag_forge_120a_airflow.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "329", + "title": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5060 8G", + "price": 42050000, + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576950", + "sale_order": "0", + "deal_time_happen": 796220, + "deal_time_left": 1624780, + "sale_quantity": "0", + "request_path": "\/deal\/329", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6130, + "productName": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5060 8G", + "productSKU": "0", + "price": 42880000, + "proThum": "6130_pc_endura_d5_sale_ha1.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5060-8g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6130_pc_endura_d5_sale_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6130_pc_endura_d5_sale_ha1.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6130_pc_endura_d5_sale_ha1.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "328", + "title": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5090 32G", + "price": 132550000, + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576946", + "sale_order": "0", + "deal_time_happen": 796220, + "deal_time_left": 1624780, + "sale_quantity": "0", + "request_path": "\/deal\/328", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6111, + "productName": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5090 32G", + "productSKU": "0", + "price": 135230000, + "proThum": "6111_pc_endura_d5_sale_ha2.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5090-32g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6111_pc_endura_d5_sale_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6111_pc_endura_d5_sale_ha2.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6111_pc_endura_d5_sale_ha2.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "327", + "title": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5080 16G", + "price": 70100000, + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767577069", + "sale_order": "0", + "deal_time_happen": 796220, + "deal_time_left": 1624780, + "sale_quantity": "0", + "request_path": "\/deal\/327", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6110, + "productName": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5080 16G", + "productSKU": "0", + "price": 71520000, + "proThum": "6110_pc_endura_d5_sale_ha3.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5080-16g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6110_pc_endura_d5_sale_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6110_pc_endura_d5_sale_ha3.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6110_pc_endura_d5_sale_ha3.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "326", + "title": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 Ti 16G", + "price": 57850000, + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576941", + "sale_order": "0", + "deal_time_happen": 796220, + "deal_time_left": 1624780, + "sale_quantity": "0", + "request_path": "\/deal\/326", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6109, + "productName": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 Ti 16G", + "productSKU": "0", + "price": 59020000, + "proThum": "6109_pc_endura_d5_sale_ha1.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5070-ti-16g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6109_pc_endura_d5_sale_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6109_pc_endura_d5_sale_ha1.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6109_pc_endura_d5_sale_ha1.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "325", + "title": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 12G", + "price": 49600000, + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576936", + "sale_order": "0", + "deal_time_happen": 796220, + "deal_time_left": 1624780, + "sale_quantity": "0", + "request_path": "\/deal\/325", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6108, + "productName": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5070 12G", + "productSKU": "0", + "price": 50590000, + "proThum": "6108_pc_endura_d5_sale_ha3.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5070-12g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6108_pc_endura_d5_sale_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6108_pc_endura_d5_sale_ha3.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6108_pc_endura_d5_sale_ha3.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "324", + "title": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5060 Ti 16G", + "price": 46650000, + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576932", + "sale_order": "0", + "deal_time_happen": 796220, + "deal_time_left": 1624780, + "sale_quantity": "0", + "request_path": "\/deal\/324", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6106, + "productName": "HHPC RYZEN 7 9800X3D | 32G DDR5 | NVIDIA RTX 5060 Ti 16G", + "productSKU": "0", + "price": 47590000, + "proThum": "6106_pc_endura_d5_sale_ha2.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/hhpc-ryzen-7-9800x3d-32g-d5-rtx-5060-ti-16g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6106_pc_endura_d5_sale_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6106_pc_endura_d5_sale_ha2.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6106_pc_endura_d5_sale_ha2.jpg" + }, + "specialOfferGroup": [] + } + } + ] + }, + { + "total": 34, + "collection_info": { + "id": 2, + "title": "Linh ki\u1ec7n Flash Sale", + "summary": "" + }, + "list": [ + { + "id": "364", + "title": "Tai nghe kh\u00f4ng d\u00e2y Corsair HS55 Wireless Core Black", + "price": "1390000", + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1768017144", + "sale_order": "0", + "deal_time_happen": 364434, + "deal_time_left": 1624566, + "sale_quantity": "0", + "request_path": "\/deal\/364", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6569, + "productName": "Tai nghe kh\u00f4ng d\u00e2y Corsair HS55 Wireless Core Black", + "productSKU": "0", + "price": 1590000, + "proThum": "6569_hs55_wireless_core_sale.jpg", + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU Ryzen 7 9800X3D ch\u1ec9 c\u00f2n<\/span><\/strong><\/span>\u00a0<\/span>10.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/span><\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU Ryzen 7 9800X3D khi mua k\u00e8m main\u00a0B650 tr\u1edf l\u00ean l\u00e0:\u00a012.290.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb\u00a0CPU Ryzen 7 9800X3D l\u00e0:\u00a013.290.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU Ryzen 7 9800X3D ch\u1ec9 c\u00f2n<\/span><\/strong><\/span>\u00a0<\/span>10.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/span><\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU Ryzen 7 9800X3D khi mua k\u00e8m main\u00a0B650 tr\u1edf l\u00ean l\u00e0:\u00a012.290.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb\u00a0CPU Ryzen 7 9800X3D l\u00e0:\u00a013.290.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "productUrl": "\/tai-nghe-corsair-hs55-wireless-core-black", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6569_hs55_wireless_core_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6569_hs55_wireless_core_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6569_hs55_wireless_core_sale.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "363", + "title": "Tai nghe Corsair HS55 Surround Carbon", + "price": "1390000", + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1768017107", + "sale_order": "0", + "deal_time_happen": 364434, + "deal_time_left": 1624566, + "sale_quantity": "0", + "request_path": "\/deal\/363", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6644, + "productName": "Tai nghe Corsair HS55 Surround Carbon", + "productSKU": "0", + "price": 1590000, + "proThum": "6644_hs55_surround_carbon_sale.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/tai-nghe-corsair-hs55-surround-carbon", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6644_hs55_surround_carbon_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6644_hs55_surround_carbon_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6644_hs55_surround_carbon_sale.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "362", + "title": "VGA GIGABYTE GEFORCE RTX 5080 WINDFORCE OC SFF 16G (GDDR7, 256-bit, HDMI +DP, 1x16-pin)", + "price": "31990000", + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767853933", + "sale_order": "1", + "deal_time_happen": 537234, + "deal_time_left": 1624566, + "sale_quantity": "1", + "request_path": "\/deal\/362", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 5678, + "productName": "VGA GIGABYTE GEFORCE RTX 5080 WINDFORCE OC SFF 16G (GDDR7, 256-bit, HDMI +DP, 1x16-pin)", + "productSKU": "0", + "price": 34990000, + "proThum": "5678_rtx_5080_windforce_oc_sff_sale.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/vga-gigabyte-geforce-rtx-5080-windforce-oc-sff-16g", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5678_rtx_5080_windforce_oc_sff_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5678_rtx_5080_windforce_oc_sff_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/5678_rtx_5080_windforce_oc_sff_sale.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "361", + "title": "B\u00e0n ph\u00edm c\u01a1 DareU EK106 PRO Black Golden Cloud switch", + "price": "1290000", + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767585250", + "sale_order": "2", + "deal_time_happen": 796434, + "deal_time_left": 1624566, + "sale_quantity": "2", + "request_path": "\/deal\/361", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 6061, + "productName": "B\u00e0n ph\u00edm c\u01a1 DareU EK106 PRO Black Golden Cloud switch", + "productSKU": "0", + "price": 1490000, + "proThum": "6061_ek106_pro_sale.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/ban-phim-co-dareu-ek106-pro-black-golden-cloud", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6061_ek106_pro_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6061_ek106_pro_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/6061_ek106_pro_sale.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "359", + "title": "Fan Asus TUF GAMING TF120 ARGB 3IN1 WHITE", + "price": "590000", + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576873", + "sale_order": "0", + "deal_time_happen": 796434, + "deal_time_left": 1624566, + "sale_quantity": "0", + "request_path": "\/deal\/359", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 4037, + "productName": "Fan Asus TUF GAMING TF120 ARGB 3IN1 WHITE", + "productSKU": "0", + "price": 790000, + "proThum": "4037_tf120_white_sale.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/fan-asus-tuf-gaming-tf120-argb-3in1-white", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4037_tf120_white_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4037_tf120_white_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/4037_tf120_white_sale.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "358", + "title": "Fan Asus TUF GAMING TF120 ARGB 3IN1 ", + "price": "590000", + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576869", + "sale_order": "0", + "deal_time_happen": 796434, + "deal_time_left": 1624566, + "sale_quantity": "0", + "request_path": "\/deal\/358", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 3536, + "productName": "Fan Asus TUF GAMING TF120 ARGB 3IN1 ", + "productSKU": "0", + "price": 790000, + "proThum": "3536_tf120_sale.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/fan-asus-tuf-gaming-tf120-argb-3in1", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3536_tf120_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3536_tf120_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/3536_tf120_sale.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "357", + "title": "V\u1ecf case Hyte Y60 Snow White - Mid Tower ATX", + "price": "3990000", + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576982", + "sale_order": "0", + "deal_time_happen": 796434, + "deal_time_left": 1624566, + "sale_quantity": "0", + "request_path": "\/deal\/357", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 4625, + "productName": "V\u1ecf case Hyte Y60 Snow White - Mid Tower ATX", + "productSKU": "0", + "price": 5190000, + "proThum": "4625_y60_white_sale.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/vo-case-hyte-y60-snow-white-mid-tower-atx", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4625_y60_white_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4625_y60_white_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/4625_y60_white_sale.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "356", + "title": "V\u1ecf case Hyte Y60 Black - Mid Tower ATX", + "price": "3990000", + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576860", + "sale_order": "0", + "deal_time_happen": 796434, + "deal_time_left": 1624566, + "sale_quantity": "0", + "request_path": "\/deal\/356", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 4624, + "productName": "V\u1ecf case Hyte Y60 Black - Mid Tower ATX", + "productSKU": "0", + "price": 5190000, + "proThum": "4624_y60_black_sale.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/vo-case-hyte-y60-black-mid-tower-atx", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4624_y60_black_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4624_y60_black_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/4624_y60_black_sale.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "352", + "title": "T\u1ea3n nhi\u1ec7t CPU Thermalright AXP-100RH", + "price": "990000", + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576852", + "sale_order": "0", + "deal_time_happen": 796434, + "deal_time_left": 1624566, + "sale_quantity": "0", + "request_path": "\/deal\/352", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 1985, + "productName": "T\u1ea3n nhi\u1ec7t CPU Thermalright AXP-100RH", + "productSKU": "0", + "price": 1590000, + "proThum": "1985_axp_100_rh_sale.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/tan-nhiet-thermalright-axp-100rh", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_1985_axp_100_rh_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_1985_axp_100_rh_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/1985_axp_100_rh_sale.jpg" + }, + "specialOfferGroup": [] + } + }, + { + "id": "351", + "title": "T\u1ea3n nhi\u1ec7t CPU Thermalright AXP-100 C65", + "price": "1290000", + "quantity": "10", + "min_purchase": "1", + "max_purchase": "10", + "to_time": "02-02-2026, 8:30 am", + "is_featured": "0", + "last_update": "1767576848", + "sale_order": "0", + "deal_time_happen": 796434, + "deal_time_left": 1624566, + "sale_quantity": "0", + "request_path": "\/deal\/351", + "is_start": 1, + "is_end": 0, + "is_active": "1", + "product_info": { + "id": 1986, + "productName": "T\u1ea3n nhi\u1ec7t CPU Thermalright AXP-100 C65", + "productSKU": "0", + "price": 1990000, + "proThum": "1986_axp_100_c65_sale.jpg", + "specialOffer": { + "all": [] + }, + "productUrl": "\/thermalright-axp-100-c65", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_1986_axp_100_c65_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_1986_axp_100_c65_sale.jpg", + "original": "https:\/\/hoanghapccdn.com\/media\/product\/1986_axp_100_c65_sale.jpg" + }, + "specialOfferGroup": [] + } + } + ], + } +] \ No newline at end of file diff --git a/src/data/product-list.ts b/src/data/product-list.ts deleted file mode 100644 index 6b45ca6..0000000 --- a/src/data/product-list.ts +++ /dev/null @@ -1,2189 +0,0 @@ - -export const productList = [ - { - id: 28454, - productId: 28454, - priceUnit: 'chiếc', - marketPrice: 3690000, - price: '2990000', - price_off: 19, - currency: 'vnd', - sale_rules: { - price: '2990000', - normal_price: 2990000, - min_purchase: '1', - max_purchase: '0', - remain_quantity: 437, - from_time: '1765933200', - to_time: '1766543400', - type: 'deal', - }, - lastUpdate: '2025-12-04 14:48:30', - warranty: '36 tháng', - productName: 'Màn Hình Gaming Cong MSI MAG 276CF E20 (27 inch, VA, FHD, 200Hz, 0.5ms)', - productSummary: - 'Mã sản phẩm: MAG 276CF E20\r\nKích thước: 27 inch\r\nĐộ phân giải: Full HD (1920 × 1080)\r\nTấm nền: VA nhanh\r\nTần số quét: 200Hz\r\nThời gian phản hồi: 0,5ms (GtG)', - package_accessory: '', - productImage: { - small: 'https://nguyencongpc.vn/media/product/75-28454-msi-mag-276cf-e20-112.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28454-msi-mag-276cf-e20-112.jpg', - original: '', - }, - imageCollection: [ - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28454-msi-mag-276cf-e20-112.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28454-msi-mag-276cf-e20-112.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28454-msi-mag-276cf-e20-03.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28454-msi-mag-276cf-e20-03.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28454-msi-mag-276cf-e20-04.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28454-msi-mag-276cf-e20-04.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28454-msi-mag-276cf-e20-02.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28454-msi-mag-276cf-e20-02.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28454-msi-mag-276cf-e20-05.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28454-msi-mag-276cf-e20-05.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28454-msi-mag-276cf-e20-01.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28454-msi-mag-276cf-e20-01.jpg', - original: '', - }, - alt: '', - }, - ], - productUrl: '/man-hinh-gaming-cong-msi-mag-276cf-e20', - brand: { - id: 5, - brand_index: 'msi', - name: 'MSI', - image: '', - url: '/brand/msi', - }, - visit: 787, - rating: 0, - reviewCount: 0, - review: { - rate: 0, - total: 0, - }, - comment: { - rate: 0, - total: 0, - }, - quantity: 437, - productSKU: 'MH0000414', - productModel: '', - hasVAT: 0, - condition: 'Mới', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - all: [], - }, - specialOfferGroup: [], - productType: { - isNew: 0, - isHot: 0, - isBestSale: 0, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - pixel_code: '', - review_count: '55', - review_score: '4.6', - }, - weight: 0, - promotion_price: null, - deal_list: [ - { - id: '561', - pro_id: '28454', - title: 'Màn Hình Gaming Cong MSI MAG 276CF E20 (27 inch, VA, FHD, 200Hz, 0.5ms)', - price: '2990000', - quantity: '5', - min_purchase: '1', - max_purchase: '0', - is_featured: '0', - from_time: '1765933200', - to_time: '1766543400', - is_started: 1, - }, - ], - pricing_traces: [ - { - price: '2990000', - type: 'deal', - type_id: '561', - }, - ], - categories: [ - { - id: '3364', - catPath: ':3364:3500:281:0', - name: 'Màn Hình MSI', - url: '/man-hinh-msi', - }, - { - id: '281', - catPath: ':281:0', - name: 'MÀN HÌNH MÁY TÍNH', - url: '/man-hinh-may-tinh', - }, - { - id: '3500', - catPath: ':3500:281:0', - name: 'CHỌN THEO HÃNG', - url: '/chon-theo-hang-1-2', - }, - { - id: '3501', - catPath: ':3501:281:0', - name: 'CHỌN THEO KÍCH THƯỚC', - url: '/chon-theo-kich-thuoc', - }, - { - id: '3509', - catPath: ':3509:3501:281:0', - name: 'Màn hình 27 inches', - url: '/man-hinh-27-inches', - }, - { - id: '3515', - catPath: ':3515:281:0', - name: 'CHỌN ĐỘ PHÂN GIẢI', - url: '/chon-do-phan-giai', - }, - { - id: '3519', - catPath: ':3519:3515:281:0', - name: '1920 x 1080 (FHD)', - url: '/1920-x-1080-fhd', - }, - { - id: '3528', - catPath: ':3528:281:0', - name: 'CHỌN TẦN SỐ QUÉT', - url: '/tan-so-quet', - }, - { - id: '3537', - catPath: ':3537:3528:281:0', - name: '200 Hz', - url: '/200-hz', - }, - ], - }, - { - id: 25185, - productId: 25185, - priceUnit: 'chiếc', - marketPrice: 2400000, - price: 1850000, - price_off: 23, - currency: 'vnd', - sale_rules: { - price: 1850000, - normal_price: 1850000, - min_purchase: 1, - max_purchase: 271, - remain_quantity: 271, - from_time: 0, - to_time: 0, - type: '', - }, - lastUpdate: '2025-05-28 09:17:26', - warranty: '36 Tháng ', - productName: 'Màn Hình VSP IP2407SG /IPS/ 24 Inch/ FHD/ 1ms/ 100Hz', - productSummary: - ' Mã sản phẩm: IP2407SG\r\nMàu sắc: Black\r\nKích cỡ màn hình: 23.8"\r\nTỉ lệ khung hình: 16:9\r\nTốc độ phản hồi: 1ms (OD)\r\nMàu sắc hỗ trợ: 6500K\r\nMàu sắc hiển thị: 16.7M\r\n\r\n', - package_accessory: '', - productImage: { - small: 'https://nguyencongpc.vn/media/product/75-25185-m--n-h--nh-vsp-ip2407s-ips.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-m--n-h--nh-vsp-ip2407s-ips.jpg', - original: '', - }, - imageCollection: [ - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-m--n-h--nh-vsp-ip2407s-ips.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-m--n-h--nh-vsp-ip2407s-ips.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-29ff88be23d78f89d6c6.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-29ff88be23d78f89d6c6.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-6727827a2913854ddc02.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-6727827a2913854ddc02.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-13.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-13.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-27.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-27.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-26.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-26.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-20.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-20.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-19.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-19.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-17.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-17.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-13-2.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-13-2.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-m--n-h--nh-vsp-ip2407s-5.jpeg', - large: 'https://nguyencongpc.vn/media/product/250-25185-m--n-h--nh-vsp-ip2407s-5.jpeg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-12-2.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-12-2.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-12.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-12.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-04.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-04.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-02.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-02.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-01-2.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-01-2.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-man-hinh-vsp-ip2407s-ips-01.jpg', - large: 'https://nguyencongpc.vn/media/product/250-25185-man-hinh-vsp-ip2407s-ips-01.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-m--n-h--nh-vsp-ip2407s-1.jpeg', - large: 'https://nguyencongpc.vn/media/product/250-25185-m--n-h--nh-vsp-ip2407s-1.jpeg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-m--n-h--nh-vsp-ip2407s-2.jpeg', - large: 'https://nguyencongpc.vn/media/product/250-25185-m--n-h--nh-vsp-ip2407s-2.jpeg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-25185-m--n-h--nh-vsp-ip2407s-4.jpeg', - large: 'https://nguyencongpc.vn/media/product/250-25185-m--n-h--nh-vsp-ip2407s-4.jpeg', - original: '', - }, - alt: '', - }, - ], - productUrl: '/man-hinh-vsp-ip2407s-ips', - brand: { - id: 153, - brand_index: 'vsp', - name: 'VSP', - image: '', - url: '/brand/vsp', - }, - visit: 45490, - rating: 5, - reviewCount: 1, - review: { - rate: 5, - total: 1, - }, - comment: { - rate: 5, - total: 6, - }, - quantity: 271, - productSKU: 'MH0000138', - productModel: '', - hasVAT: 0, - condition: 'Mới ', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - other: [ - { - id: 0, - title: - '

 

\r\n

⭐ Mua thêm giá treo màn hình giảm giá thêm 5%

\r\n

 

', - type: '', - thumbnail: '', - cash_value: 0, - quantity: 1, - from_time: '', - to_time: '', - url: '', - description: '', - status: 1, - }, - ], - all: [ - { - id: 0, - title: - '

 

\r\n

⭐ Mua thêm giá treo màn hình giảm giá thêm 5%

\r\n

 

', - type: '', - thumbnail: '', - cash_value: 0, - quantity: 1, - from_time: '', - to_time: '', - url: '', - description: '', - status: 1, - }, - ], - }, - specialOfferGroup: [], - productType: { - isNew: 0, - isHot: 1, - isBestSale: 1, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - buy_count: '2944', - }, - weight: 0, - promotion_price: null, - deal_list: [], - pricing_traces: [], - categories: [ - { - id: '281', - catPath: ':281:0', - name: 'MÀN HÌNH MÁY TÍNH', - url: '/man-hinh-may-tinh', - }, - { - id: '3507', - catPath: ':3507:3501:281:0', - name: 'Màn hình 24 inches', - url: '/man-hinh-24-inches', - }, - { - id: '3515', - catPath: ':3515:281:0', - name: 'CHỌN ĐỘ PHÂN GIẢI', - url: '/chon-do-phan-giai', - }, - { - id: '3519', - catPath: ':3519:3515:281:0', - name: '1920 x 1080 (FHD)', - url: '/1920-x-1080-fhd', - }, - { - id: '3531', - catPath: ':3531:3528:281:0', - name: '100 Hz', - url: '/100-hz', - }, - { - id: '3634', - catPath: ':3634:3500:281:0', - name: 'Màn hình VSP', - url: '/man-hinh-vsp', - }, - { - id: '3500', - catPath: ':3500:281:0', - name: 'CHỌN THEO HÃNG', - url: '/chon-theo-hang-1-2', - }, - { - id: '3528', - catPath: ':3528:281:0', - name: 'CHỌN TẦN SỐ QUÉT', - url: '/tan-so-quet', - }, - { - id: '3501', - catPath: ':3501:281:0', - name: 'CHỌN THEO KÍCH THƯỚC', - url: '/chon-theo-kich-thuoc', - }, - { - id: '3705', - catPath: ':3705:0', - name: 'MÀN HÌNH PHỤ', - url: '/man-hinh-phu', - }, - ], - }, - { - id: 28510, - productId: 28510, - priceUnit: 'chiếc', - marketPrice: 2690000, - price: 2050000, - price_off: 24, - currency: 'vnd', - sale_rules: { - price: 2050000, - normal_price: 2050000, - min_purchase: 1, - max_purchase: 100, - remain_quantity: 100, - from_time: 0, - to_time: 0, - type: '', - }, - lastUpdate: '2025-12-20 09:32:53', - warranty: '24 tháng', - productName: 'Màn hình EDRA EGM27F120S (27 inch, IPS, FHD, 120Hz, 1ms)', - productSummary: - 'Loại màn hình: Màn hình phẳng\r\nTỉ lệ: 16:9\r\nKích thước: 27 inch\r\nTấm nền: IPS\r\nGóc nhìn: 178° / 178°\r\nĐộ phân giải: FHD (1920x1080)', - package_accessory: '', - productImage: { - small: 'https://nguyencongpc.vn/media/product/75-28510-edra-egm27f120s-04.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28510-edra-egm27f120s-04.jpg', - original: '', - }, - imageCollection: [ - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28510-edra-egm27f120s-04.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28510-edra-egm27f120s-04.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28510-edra-egm27f120s-01.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28510-edra-egm27f120s-01.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28510-edra-egm27f120s-02.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28510-edra-egm27f120s-02.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28510-edra-egm27f120s-03.jpg', - large: 'https://nguyencongpc.vn/media/product/250-28510-edra-egm27f120s-03.jpg', - original: '', - }, - alt: '', - }, - ], - productUrl: '/man-hinh-edra-egm27f120s-27-inch-ips-fhd-120hz-1ms', - brand: { - id: 54, - brand_index: 'e-dra', - name: 'E-DRA', - image: '', - url: '/brand/e-dra', - }, - visit: 35, - rating: 0, - reviewCount: 0, - review: { - rate: 0, - total: 0, - }, - comment: { - rate: 0, - total: 0, - }, - quantity: 100, - productSKU: 'MH0000421', - productModel: '', - hasVAT: 0, - condition: 'Mới', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - all: [], - }, - specialOfferGroup: [], - productType: { - isNew: 0, - isHot: 0, - isBestSale: 0, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - pixel_code: '', - review_count: '53', - review_score: '4.7', - }, - weight: 0, - promotion_price: null, - deal_list: [], - pricing_traces: [ - { - price: '2990000', - type: 'deal', - type_id: '561', - }, - ], - categories: [ - { - id: '3724', - catPath: ':3724:3500:281:0', - name: 'Màn hình E-Dra', - url: '/man-hinh-e-dra', - }, - { - id: '281', - catPath: ':281:0', - name: 'MÀN HÌNH MÁY TÍNH', - url: '/man-hinh-may-tinh', - }, - { - id: '3500', - catPath: ':3500:281:0', - name: 'CHỌN THEO HÃNG', - url: '/chon-theo-hang-1-2', - }, - { - id: '3501', - catPath: ':3501:281:0', - name: 'CHỌN THEO KÍCH THƯỚC', - url: '/chon-theo-kich-thuoc', - }, - { - id: '3509', - catPath: ':3509:3501:281:0', - name: 'Màn hình 27 inches', - url: '/man-hinh-27-inches', - }, - { - id: '3515', - catPath: ':3515:281:0', - name: 'CHỌN ĐỘ PHÂN GIẢI', - url: '/chon-do-phan-giai', - }, - { - id: '3519', - catPath: ':3519:3515:281:0', - name: '1920 x 1080 (FHD)', - url: '/1920-x-1080-fhd', - }, - ], - }, - { - id: 27415, - productId: 27415, - priceUnit: 'chiếc', - marketPrice: 3400000, - price: 2400000, - price_off: 28.999999999999996, - currency: 'vnd', - sale_rules: { - price: 2400000, - normal_price: 2400000, - min_purchase: 1, - max_purchase: 89, - remain_quantity: 89, - from_time: 0, - to_time: 0, - type: '', - }, - lastUpdate: '2025-03-19 09:12:18', - warranty: '36 Tháng', - productName: 'Màn Hình ASUS VA259HGA (24.5 inch | FHD | IPS | 120Hz | 1m | Loa)', - productSummary: - 'Kích thước: 24.5 inch\r\nĐộ phân giải: FHD 1920 x 1080\r\nCông nghệ tấm nền: IPS\r\nTần số quét: 120Hz\r\nThời gian phản hồi: 1ms\r\nTích hợp loa: 2x 2W\r\nĐộ sáng: 300 nits\r\nTỉ lệ tương phản: 1500:1\r\nTương thích ngàm VESA: 100 x 100 mm', - package_accessory: '', - productImage: { - small: 'https://nguyencongpc.vn/media/product/75-27415-asus-va259hga-10101.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27415-asus-va259hga-10101.jpg', - original: '', - }, - imageCollection: [ - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27415-va259hga.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27415-va259hga.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27415-asus-va259hga-10101.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27415-asus-va259hga-10101.jpg', - original: '', - }, - alt: '', - }, - ], - productUrl: '/man-hinh-asus-va259hga-245-inch-fhd-ips-120hz-1m-loa', - brand: { - id: 4, - brand_index: 'asus', - name: 'ASUS', - image: '', - url: '/brand/asus', - }, - visit: 5130, - rating: 0, - reviewCount: 0, - review: { - rate: 0, - total: 0, - }, - comment: { - rate: 0, - total: 0, - }, - quantity: 89, - productSKU: 'MH0000332', - productModel: '', - hasVAT: 0, - condition: 'Mới', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - all: [], - }, - specialOfferGroup: [], - productType: { - isNew: 0, - isHot: 0, - isBestSale: 0, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - buy_count: '26', - }, - weight: 0, - promotion_price: null, - deal_list: [], - pricing_traces: [], - categories: [ - { - id: '281', - catPath: ':281:0', - name: 'MÀN HÌNH MÁY TÍNH', - url: '/man-hinh-may-tinh', - }, - { - id: '3500', - catPath: ':3500:281:0', - name: 'CHỌN THEO HÃNG', - url: '/chon-theo-hang-1-2', - }, - { - id: '2455', - catPath: ':2455:3500:281:0', - name: 'Màn hình Asus', - url: '/man-hinh-asus', - }, - { - id: '3501', - catPath: ':3501:281:0', - name: 'CHỌN THEO KÍCH THƯỚC', - url: '/chon-theo-kich-thuoc', - }, - { - id: '3508', - catPath: ':3508:3501:281:0', - name: 'Màn hình 25 inches', - url: '/man-hinh-25-inches', - }, - { - id: '3515', - catPath: ':3515:281:0', - name: 'CHỌN ĐỘ PHÂN GIẢI', - url: '/chon-do-phan-giai', - }, - { - id: '3519', - catPath: ':3519:3515:281:0', - name: '1920 x 1080 (FHD)', - url: '/1920-x-1080-fhd', - }, - { - id: '3705', - catPath: ':3705:0', - name: 'MÀN HÌNH PHỤ', - url: '/man-hinh-phu', - }, - ], - }, - { - id: 27440, - productId: 27440, - priceUnit: 'chiếc', - marketPrice: 3990000, - price: 2990000, - price_off: 25, - currency: 'vnd', - sale_rules: { - price: 2990000, - normal_price: 2990000, - min_purchase: 1, - max_purchase: 66, - remain_quantity: 66, - from_time: 0, - to_time: 0, - type: '', - }, - lastUpdate: '2025-11-22 09:34:50', - warranty: '36 Tháng', - productName: 'Màn hình Gigabyte GS27FA (27 inch | Full HD | IPS | 180Hz | 1ms)', - productSummary: - 'Kích thước: 27 inch\r\nĐộ phân giải: FHD 1920 x 1080\r\nCông nghệ tấm nền: IPS\r\nTần số quét: 180Hz\r\nThời gian phản hồi: 1ms', - package_accessory: '', - productImage: { - small: 'https://nguyencongpc.vn/media/product/75-27440-gigabyte-gs27fa-111.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-gigabyte-gs27fa-111.jpg', - original: '', - }, - imageCollection: [ - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27440-gigabyte-gs27fa-111.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-gigabyte-gs27fa-111.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27440-man-hinh-gigabyte-gs27fa-2.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-man-hinh-gigabyte-gs27fa-2.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27440-man-hinh-gigabyte-gs27fa-3.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-man-hinh-gigabyte-gs27fa-3.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27440-man-hinh-gigabyte-gs27fa-4.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-man-hinh-gigabyte-gs27fa-4.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27440-man-hinh-gigabyte-gs27fa-5.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-man-hinh-gigabyte-gs27fa-5.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27440-man-hinh-gigabyte-gs27fa-6.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-man-hinh-gigabyte-gs27fa-6.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27440-gf27fa-ncpc.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-gf27fa-ncpc.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27440-gf27fa-ncpc1.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-gf27fa-ncpc1.jpg', - original: '', - }, - alt: '5', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27440-gf27fa-ncpc3.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-gf27fa-ncpc3.jpg', - original: '', - }, - alt: '4', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27440-gf27fa-ncpc2.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27440-gf27fa-ncpc2.jpg', - original: '', - }, - alt: '', - }, - ], - productUrl: '/man-hinh-gigabyte-gs27fa', - brand: { - id: 2, - brand_index: 'gigabyte', - name: 'Gigabyte', - image: '', - url: '/brand/gigabyte', - }, - visit: 6232, - rating: 5, - reviewCount: 1, - review: { - rate: 5, - total: 1, - }, - comment: { - rate: 0, - total: 0, - }, - quantity: 66, - productSKU: 'MH0000337', - productModel: '', - hasVAT: 0, - condition: 'Mới', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - all: [], - }, - specialOfferGroup: [], - productType: { - isNew: 0, - isHot: 0, - isBestSale: 0, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - buy_count: '482', - }, - weight: 0, - promotion_price: null, - deal_list: [], - pricing_traces: [], - categories: [ - { - id: '281', - catPath: ':281:0', - name: 'MÀN HÌNH MÁY TÍNH', - url: '/man-hinh-may-tinh', - }, - { - id: '3500', - catPath: ':3500:281:0', - name: 'CHỌN THEO HÃNG', - url: '/chon-theo-hang-1-2', - }, - { - id: '3303', - catPath: ':3303:3500:281:0', - name: 'Màn hình Gigabyte', - url: '/man-hinh-gigabyte', - }, - { - id: '3501', - catPath: ':3501:281:0', - name: 'CHỌN THEO KÍCH THƯỚC', - url: '/chon-theo-kich-thuoc', - }, - { - id: '3509', - catPath: ':3509:3501:281:0', - name: 'Màn hình 27 inches', - url: '/man-hinh-27-inches', - }, - { - id: '3515', - catPath: ':3515:281:0', - name: 'CHỌN ĐỘ PHÂN GIẢI', - url: '/chon-do-phan-giai', - }, - { - id: '3519', - catPath: ':3519:3515:281:0', - name: '1920 x 1080 (FHD)', - url: '/1920-x-1080-fhd', - }, - { - id: '3528', - catPath: ':3528:281:0', - name: 'CHỌN TẦN SỐ QUÉT', - url: '/tan-so-quet', - }, - { - id: '3697', - catPath: ':3697:3528:281:0', - name: '180hz', - url: '/180hz', - }, - { - id: '3705', - catPath: ':3705:0', - name: 'MÀN HÌNH PHỤ', - url: '/man-hinh-phu', - }, - ], - }, - { - id: 18771, - productId: 18771, - priceUnit: 'chiếc', - marketPrice: 10080000, - price: 8150000, - price_off: 19, - currency: 'vnd', - sale_rules: { - price: 8150000, - normal_price: 8150000, - min_purchase: 1, - max_purchase: 65, - remain_quantity: 65, - from_time: 0, - to_time: 0, - type: '', - }, - lastUpdate: '2025-11-29 08:56:10', - warranty: '36 tháng', - productName: 'Màn hình ASUS ProArt PA278CV (27 inch/ QHD 2K/ IPS/ 75Hz)', - productSummary: '', - package_accessory: '', - productImage: { - small: 'https://nguyencongpc.vn/media/product/75-18771-asus-proart-pa278cv-1010101.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-asus-proart-pa278cv-1010101.jpg', - original: '', - }, - imageCollection: [ - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-asus-proart-pa278cv-1010101.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-asus-proart-pa278cv-1010101.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-03c.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-03c.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-02c.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-02c.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-01-c.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-01-c.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-04c.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-04c.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-05c.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-05c.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-06c.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-06c.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-07.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-07.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-08.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-08.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-09.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-09.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-10.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-10.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-11.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-11.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-18771-pa278cv-12.jpg', - large: 'https://nguyencongpc.vn/media/product/250-18771-pa278cv-12.jpg', - original: '', - }, - alt: '', - }, - ], - productUrl: '/man-hinh-asus-proart-pa278cv-27-inch-qhd-2k-ips-75hz', - brand: { - id: 4, - brand_index: 'asus', - name: 'ASUS', - image: '', - url: '/brand/asus', - }, - visit: 11469, - rating: 9, - reviewCount: 5, - review: { - rate: 9, - total: 5, - }, - comment: { - rate: 0, - total: 0, - }, - quantity: 65, - productSKU: 'SP3081023', - productModel: '0', - hasVAT: 0, - condition: 'Mới ', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - other: [ - { - id: 0, - title: - '

Tặng ngay bộ sản phẩm Adobe Creative Cloud trị giá 5.500.000VND Đăng ký nhận quà tại đây

', - type: '', - thumbnail: '', - cash_value: 0, - quantity: 1, - from_time: '', - to_time: '', - url: '', - description: '', - status: 1, - }, - ], - all: [ - { - id: 0, - title: - '

Tặng ngay bộ sản phẩm Adobe Creative Cloud trị giá 5.500.000VND Đăng ký nhận quà tại đây

', - type: '', - thumbnail: '', - cash_value: 0, - quantity: 1, - from_time: '', - to_time: '', - url: '', - description: '', - status: 1, - }, - ], - }, - specialOfferGroup: [], - productType: { - isNew: 0, - isHot: 0, - isBestSale: 1, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - buy_count: '689', - }, - weight: 0, - promotion_price: null, - deal_list: [], - pricing_traces: [], - categories: [ - { - id: '2455', - catPath: ':2455:3500:281:0', - name: 'Màn hình Asus', - url: '/man-hinh-asus', - }, - { - id: '281', - catPath: ':281:0', - name: 'MÀN HÌNH MÁY TÍNH', - url: '/man-hinh-may-tinh', - }, - { - id: '3624', - catPath: ':3624:281:0', - name: 'MÀN HÌNH ĐỒ HỌA', - url: '/man-hinh-do-hoa', - }, - { - id: '3705', - catPath: ':3705:0', - name: 'MÀN HÌNH PHỤ', - url: '/man-hinh-phu', - }, - ], - }, - { - id: 16528, - productId: 16528, - priceUnit: 'chiếc', - marketPrice: 5880000, - price: 4790000, - price_off: 19, - currency: 'vnd', - sale_rules: { - price: 4790000, - normal_price: 4790000, - min_purchase: 1, - max_purchase: 60, - remain_quantity: 60, - from_time: 0, - to_time: 0, - type: '', - }, - lastUpdate: '2025-08-13 13:59:51', - warranty: '36 Tháng', - productName: 'Màn hình Asus ProArt PA248QV 24.1 inch IPS FHD - Chuyên Đồ Họa', - productSummary: '', - package_accessory: '', - productImage: { - small: - 'https://nguyencongpc.vn/media/product/75-16528-asus-proart-pa248qv-24-1-inch-ips-fhd-11.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-16528-asus-proart-pa248qv-24-1-inch-ips-fhd-11.jpg', - original: '', - }, - imageCollection: [ - { - image: { - small: - 'https://nguyencongpc.vn/media/product/75-16528-asus-proart-pa248qv-24-1-inch-ips-fhd-11.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-16528-asus-proart-pa248qv-24-1-inch-ips-fhd-11.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-16528-pa248qv-06.jpg', - large: 'https://nguyencongpc.vn/media/product/250-16528-pa248qv-06.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-16528-pa248qv-07.jpg', - large: 'https://nguyencongpc.vn/media/product/250-16528-pa248qv-07.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-16528-pa248qv-01.jpg', - large: 'https://nguyencongpc.vn/media/product/250-16528-pa248qv-01.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-16528-pa248qv-02.jpg', - large: 'https://nguyencongpc.vn/media/product/250-16528-pa248qv-02.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-16528-pa248qv-03.jpg', - large: 'https://nguyencongpc.vn/media/product/250-16528-pa248qv-03.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-16528-proart-pa248qv-011a9788.JPG', - large: 'https://nguyencongpc.vn/media/product/250-16528-proart-pa248qv-011a9788.JPG', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-16528-pa248qv-04.jpg', - large: 'https://nguyencongpc.vn/media/product/250-16528-pa248qv-04.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-16528-pa248qv-05.jpg', - large: 'https://nguyencongpc.vn/media/product/250-16528-pa248qv-05.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-16528-proart-pa248qv-011a9787.JPG', - large: 'https://nguyencongpc.vn/media/product/250-16528-proart-pa248qv-011a9787.JPG', - original: '', - }, - alt: '', - }, - { - image: { - small: - 'https://nguyencongpc.vn/media/product/75-16528-asus-proart-pa248qv-24-1-inch-ips-fhd-001.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-16528-asus-proart-pa248qv-24-1-inch-ips-fhd-001.jpg', - original: '', - }, - alt: '', - }, - ], - productUrl: '/man-hinh-asus-proart-pa248qv-24fhd1610ips100-srgb100-rec709', - brand: { - id: 4, - brand_index: 'asus', - name: 'ASUS', - image: '', - url: '/brand/asus', - }, - visit: 47636, - rating: 7, - reviewCount: 5, - review: { - rate: 7, - total: 5, - }, - comment: { - rate: 0, - total: 0, - }, - quantity: 60, - productSKU: 'SP002020', - productModel: '0', - hasVAT: 0, - condition: 'Mới ', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - other: [ - { - id: 0, - title: - '

⭐ Mua thêm giá treo màn hình giảm giá thêm 5%

\r\n

=> Xem thêm tại: Tại đây

\r\n

⭐ Tặng ngay bộ sản phẩm Adobe Creative Cloud trị giá 5.500.000VND Đăng ký nhận quà tại đây

', - type: '', - thumbnail: '', - cash_value: 0, - quantity: 1, - from_time: '', - to_time: '', - url: '', - description: '', - status: 1, - }, - ], - all: [ - { - id: 0, - title: - '

⭐ Mua thêm giá treo màn hình giảm giá thêm 5%

\r\n

=> Xem thêm tại: Tại đây

\r\n

⭐ Tặng ngay bộ sản phẩm Adobe Creative Cloud trị giá 5.500.000VND Đăng ký nhận quà tại đây

', - type: '', - thumbnail: '', - cash_value: 0, - quantity: 1, - from_time: '', - to_time: '', - url: '', - description: '', - status: 1, - }, - ], - }, - specialOfferGroup: [], - productType: { - isNew: 0, - isHot: 1, - isBestSale: 1, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - buy_count: '689', - }, - weight: 0, - promotion_price: null, - deal_list: [], - pricing_traces: [], - categories: [ - { - id: '2455', - catPath: ':2455:3500:281:0', - name: 'Màn hình Asus', - url: '/man-hinh-asus', - }, - { - id: '281', - catPath: ':281:0', - name: 'MÀN HÌNH MÁY TÍNH', - url: '/man-hinh-may-tinh', - }, - { - id: '3507', - catPath: ':3507:3501:281:0', - name: 'Màn hình 24 inches', - url: '/man-hinh-24-inches', - }, - { - id: '3501', - catPath: ':3501:281:0', - name: 'CHỌN THEO KÍCH THƯỚC', - url: '/chon-theo-kich-thuoc', - }, - { - id: '3500', - catPath: ':3500:281:0', - name: 'CHỌN THEO HÃNG', - url: '/chon-theo-hang-1-2', - }, - { - id: '3515', - catPath: ':3515:281:0', - name: 'CHỌN ĐỘ PHÂN GIẢI', - url: '/chon-do-phan-giai', - }, - { - id: '3519', - catPath: ':3519:3515:281:0', - name: '1920 x 1080 (FHD)', - url: '/1920-x-1080-fhd', - }, - { - id: '3528', - catPath: ':3528:281:0', - name: 'CHỌN TẦN SỐ QUÉT', - url: '/tan-so-quet', - }, - { - id: '3624', - catPath: ':3624:281:0', - name: 'MÀN HÌNH ĐỒ HỌA', - url: '/man-hinh-do-hoa', - }, - { - id: '3705', - catPath: ':3705:0', - name: 'MÀN HÌNH PHỤ', - url: '/man-hinh-phu', - }, - ], - }, - { - id: 28246, - productId: 28246, - priceUnit: 'chiếc', - marketPrice: 5550000, - price: 4250000, - price_off: 23, - currency: 'vnd', - sale_rules: { - price: 4250000, - normal_price: 4250000, - min_purchase: 1, - max_purchase: 54, - remain_quantity: 54, - from_time: 0, - to_time: 0, - type: '', - }, - lastUpdate: '2025-11-21 09:35:54', - warranty: '36 tháng tại Nguyễn Công PC', - productName: 'Màn hình Dell P2425H NK (23.8 inch, FHD, IPS, 100Hz, 5ms)', - productSummary: - 'Kiểu dáng màn hình: Phẳng\r\nTỉ lệ khung hình: 16:9\r\nKích thước mặc định: 23.8 inch\r\nCông nghệ tấm nền: IPS\r\nPhân giải điểm ảnh: FHD - 1920 x 1080\r\nĐộ sáng hiển thị: 250 cd/m2 (typical)\r\nTần số quét màn: 100 Hz (Hertz)\r\n', - package_accessory: '0', - productImage: { - small: 'https://nguyencongpc.vn/media/product/75-28246-', - large: 'https://nguyencongpc.vn/media/product/250-28246-', - original: '', - }, - imageCollection: [ - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-28246-', - large: 'https://nguyencongpc.vn/media/product/250-28246-', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-26969-vinh--28-.png', - large: 'https://nguyencongpc.vn/media/product/250-26969-vinh--28-.png', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-26969-vinh--29-.png', - large: 'https://nguyencongpc.vn/media/product/250-26969-vinh--29-.png', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-26969-vinh--30-.png', - large: 'https://nguyencongpc.vn/media/product/250-26969-vinh--30-.png', - original: '', - }, - alt: '', - }, - ], - productUrl: '/man-hinh-dell-p2425h-nk', - brand: { - id: 20, - brand_index: 'dell', - name: 'DELL', - image: '', - url: '/brand/dell', - }, - visit: 482, - rating: 0, - reviewCount: 0, - review: { - rate: 0, - total: 0, - }, - comment: { - rate: 0, - total: 0, - }, - quantity: 54, - productSKU: 'MH0000403', - productModel: '', - hasVAT: 0, - condition: 'Mới', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - all: [], - }, - specialOfferGroup: [], - productType: { - isNew: 1, - isHot: 0, - isBestSale: 1, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - buy_count: '14', - }, - weight: 0, - promotion_price: null, - deal_list: [], - pricing_traces: [], - categories: [ - { - id: '3501', - catPath: ':3501:281:0', - name: 'CHỌN THEO KÍCH THƯỚC', - url: '/chon-theo-kich-thuoc', - }, - { - id: '3500', - catPath: ':3500:281:0', - name: 'CHỌN THEO HÃNG', - url: '/chon-theo-hang-1-2', - }, - { - id: '281', - catPath: ':281:0', - name: 'MÀN HÌNH MÁY TÍNH', - url: '/man-hinh-may-tinh', - }, - { - id: '3515', - catPath: ':3515:281:0', - name: 'CHỌN ĐỘ PHÂN GIẢI', - url: '/chon-do-phan-giai', - }, - { - id: '3528', - catPath: ':3528:281:0', - name: 'CHỌN TẦN SỐ QUÉT', - url: '/tan-so-quet', - }, - { - id: '522', - catPath: ':522:3500:281:0', - name: 'Màn hình Dell', - url: '/man-hinh-dell', - }, - { - id: '3507', - catPath: ':3507:3501:281:0', - name: 'Màn hình 24 inches', - url: '/man-hinh-24-inches', - }, - { - id: '3519', - catPath: ':3519:3515:281:0', - name: '1920 x 1080 (FHD)', - url: '/1920-x-1080-fhd', - }, - { - id: '3531', - catPath: ':3531:3528:281:0', - name: '100 Hz', - url: '/100-hz', - }, - { - id: '3624', - catPath: ':3624:281:0', - name: 'MÀN HÌNH ĐỒ HỌA', - url: '/man-hinh-do-hoa', - }, - ], - }, - { - id: 27774, - productId: 27774, - priceUnit: 'chiếc', - marketPrice: 2390000, - price: 1850000, - price_off: 23, - currency: 'vnd', - sale_rules: { - price: 1850000, - normal_price: 1850000, - min_purchase: 1, - max_purchase: 50, - remain_quantity: 50, - from_time: 0, - to_time: 0, - type: '', - }, - lastUpdate: '2025-11-26 09:37:38', - warranty: '24 tháng', - productName: 'Màn Hình EDRA EGM24F100s 24 inch, FHD, IPS, 100Hz', - productSummary: - 'Kiểu dáng màn hình: Phẳng\r\nTỉ lệ khung hình: 16:9\r\nKích thước mặc định: 23.8 inch\r\nCông nghệ tấm nền: IPS\r\nPhân giải điểm ảnh: FHD - 1920 x 1080\r\nChỉ số màu sắc: 16.7 triệu màu\r\nĐộ sáng hiển thị: 250 Nits cd/m2\r\nTần số quét màn: Real 100Hz (Hertz)\r\nThời gian đáp ứng: 1ms (MPRT)', - package_accessory: '0', - productImage: { - small: 'https://nguyencongpc.vn/media/product/75-27774-', - large: 'https://nguyencongpc.vn/media/product/250-27774-', - original: '', - }, - imageCollection: [ - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27774-', - large: 'https://nguyencongpc.vn/media/product/250-27774-', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27774-edra-egm24f100h-2.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27774-edra-egm24f100h-2.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27774-edra-egm24f100h-3.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27774-edra-egm24f100h-3.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27774-edra-egm24f100h-4.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27774-edra-egm24f100h-4.jpg', - original: '', - }, - alt: '', - }, - ], - productUrl: '/man-hinh-edra-egm24f100s', - brand: { - id: 54, - brand_index: 'e-dra', - name: 'E-DRA', - image: '', - url: '/brand/e-dra', - }, - visit: 4501, - rating: 0, - reviewCount: 0, - review: { - rate: 0, - total: 0, - }, - comment: { - rate: 0, - total: 0, - }, - quantity: 50, - productSKU: 'MH0000364', - productModel: '', - hasVAT: 0, - condition: 'Mới', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - all: [], - }, - specialOfferGroup: [], - productType: { - isNew: 1, - isHot: 0, - isBestSale: 0, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - buy_count: '433', - }, - weight: 0, - promotion_price: null, - deal_list: [], - pricing_traces: [], - categories: [ - { - id: '3724', - catPath: ':3724:3500:281:0', - name: 'Màn hình E-Dra', - url: '/man-hinh-e-dra', - }, - { - id: '3500', - catPath: ':3500:281:0', - name: 'CHỌN THEO HÃNG', - url: '/chon-theo-hang-1-2', - }, - { - id: '3507', - catPath: ':3507:3501:281:0', - name: 'Màn hình 24 inches', - url: '/man-hinh-24-inches', - }, - { - id: '3501', - catPath: ':3501:281:0', - name: 'CHỌN THEO KÍCH THƯỚC', - url: '/chon-theo-kich-thuoc', - }, - { - id: '3519', - catPath: ':3519:3515:281:0', - name: '1920 x 1080 (FHD)', - url: '/1920-x-1080-fhd', - }, - { - id: '3515', - catPath: ':3515:281:0', - name: 'CHỌN ĐỘ PHÂN GIẢI', - url: '/chon-do-phan-giai', - }, - { - id: '3531', - catPath: ':3531:3528:281:0', - name: '100 Hz', - url: '/100-hz', - }, - { - id: '3528', - catPath: ':3528:281:0', - name: 'CHỌN TẦN SỐ QUÉT', - url: '/tan-so-quet', - }, - { - id: '281', - catPath: ':281:0', - name: 'MÀN HÌNH MÁY TÍNH', - url: '/man-hinh-may-tinh', - }, - { - id: '3705', - catPath: ':3705:0', - name: 'MÀN HÌNH PHỤ', - url: '/man-hinh-phu', - }, - ], - }, - { - id: 27506, - productId: 27506, - priceUnit: 'chiếc', - marketPrice: 4990000, - price: 2980000, - price_off: 40, - currency: 'vnd', - sale_rules: { - price: 2980000, - normal_price: 2980000, - min_purchase: 1, - max_purchase: 47, - remain_quantity: 47, - from_time: 0, - to_time: 0, - type: '', - }, - lastUpdate: '2025-11-26 09:37:04', - warranty: '36 Tháng', - productName: 'Màn hình Gigabyte G25F2 (24.5 inch | FHD | IPS | 200Hz | 1ms)', - productSummary: - 'Màn hình: 24.5 inch\r\nĐộ phân giải: FHD 1920 x 1080\r\nCông nghệ tấm nền: IPS\r\nTần số quét: 200Hz\r\nThời gian phản hồi: 1ms', - package_accessory: '', - productImage: { - small: 'https://nguyencongpc.vn/media/product/75-27506-man-hinh-gigabyte-g25f2-0101.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27506-man-hinh-gigabyte-g25f2-0101.jpg', - original: '', - }, - imageCollection: [ - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27506-man-hinh-gigabyte-g25f2-1.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27506-man-hinh-gigabyte-g25f2-1.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: - 'https://nguyencongpc.vn/media/product/75-27506-z6424384613249_4a6196e32517593cef80e8179277f24a.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-27506-z6424384613249_4a6196e32517593cef80e8179277f24a.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: - 'https://nguyencongpc.vn/media/product/75-27506-z6424384619148_9b8b4dcfc3e31bfc0173cbfeaebbf9c8.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-27506-z6424384619148_9b8b4dcfc3e31bfc0173cbfeaebbf9c8.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: - 'https://nguyencongpc.vn/media/product/75-27506-z6424384625286_f2dc55c44c74851450376362d0aa4c10.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-27506-z6424384625286_f2dc55c44c74851450376362d0aa4c10.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27506-man-hinh-gigabyte-g25f2-2.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27506-man-hinh-gigabyte-g25f2-2.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27506-man-hinh-gigabyte-g25f2-3.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27506-man-hinh-gigabyte-g25f2-3.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27506-man-hinh-gigabyte-g25f2-8.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27506-man-hinh-gigabyte-g25f2-8.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27506-man-hinh-gigabyte-g25f2-10.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27506-man-hinh-gigabyte-g25f2-10.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27506-gigabyteg25f2.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27506-gigabyteg25f2.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27506-man-hinh-gigabyte-g25f2-0101.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27506-man-hinh-gigabyte-g25f2-0101.jpg', - original: '', - }, - alt: '', - }, - ], - productUrl: '/man-hinh-gigabyte-g25f2', - brand: { - id: 2, - brand_index: 'gigabyte', - name: 'Gigabyte', - image: '', - url: '/brand/gigabyte', - }, - visit: 7195, - rating: 0, - reviewCount: 0, - review: { - rate: 0, - total: 0, - }, - comment: { - rate: 0, - total: 0, - }, - quantity: 47, - productSKU: 'MH0000336', - productModel: '', - hasVAT: 0, - condition: 'Mới', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - all: [], - }, - specialOfferGroup: [], - productType: { - isNew: 0, - isHot: 0, - isBestSale: 0, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - buy_count: '221', - }, - weight: 0, - promotion_price: null, - deal_list: [], - pricing_traces: [], - categories: [ - { - id: '281', - catPath: ':281:0', - name: 'MÀN HÌNH MÁY TÍNH', - url: '/man-hinh-may-tinh', - }, - { - id: '3500', - catPath: ':3500:281:0', - name: 'CHỌN THEO HÃNG', - url: '/chon-theo-hang-1-2', - }, - { - id: '3303', - catPath: ':3303:3500:281:0', - name: 'Màn hình Gigabyte', - url: '/man-hinh-gigabyte', - }, - { - id: '3501', - catPath: ':3501:281:0', - name: 'CHỌN THEO KÍCH THƯỚC', - url: '/chon-theo-kich-thuoc', - }, - { - id: '3508', - catPath: ':3508:3501:281:0', - name: 'Màn hình 25 inches', - url: '/man-hinh-25-inches', - }, - { - id: '3515', - catPath: ':3515:281:0', - name: 'CHỌN ĐỘ PHÂN GIẢI', - url: '/chon-do-phan-giai', - }, - { - id: '3519', - catPath: ':3519:3515:281:0', - name: '1920 x 1080 (FHD)', - url: '/1920-x-1080-fhd', - }, - { - id: '3528', - catPath: ':3528:281:0', - name: 'CHỌN TẦN SỐ QUÉT', - url: '/tan-so-quet', - }, - { - id: '3537', - catPath: ':3537:3528:281:0', - name: '200 Hz', - url: '/200-hz', - }, - { - id: '3705', - catPath: ':3705:0', - name: 'MÀN HÌNH PHỤ', - url: '/man-hinh-phu', - }, - ], - }, -]; diff --git a/src/data/products/index.tsx b/src/data/products/index.tsx new file mode 100644 index 0000000..5af121f --- /dev/null +++ b/src/data/products/index.tsx @@ -0,0 +1,11910 @@ + +export const productList = [ + { + "id" : 1, + "total": 22, + "list": [ + { + "id": 6454, + "productId": 6454, + "priceUnit": "chi\u1ebfc", + "marketPrice": 140000000, + "price": 129990000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 129990000, + "normal_price": 129990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-17 14:20:34", + "warranty": "36 th\u00e1ng", + "productName": "GIGABYTE AI TOP ATOM (ATAGB10-9000 | SSD 4TB Gen5)", + "productSummary": "

GPU:\u00a0NVIDIA\u00ae GB10 Grace Blackwell Superchip<\/p>\r\n

CPU:\u00a020-core Arm,10 Cortex-X925 + 10 Cortex A725<\/p>\r\n

Tensor Performance:\u00a01 petaFLOP AI performance<\/p>\r\n

System Memory:\u00a0128GB LPDDR5x, unified system memory<\/p>\r\n

C\u1ed5ng k\u1ebft n\u1ed1i:\u00a01 x USB 3.2 Gen 2x2 Type C,\u00a03 x USB 3.2 Gen 2x2 Type-C,\u00a01 x NVIDIA ConnectX-7,\u00a01 x HDMI 2.1a<\/p>\r\n

Networking:\u00a010GbE Ethernet, Wi-Fi 7, Bluetooth 5.3<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6454_gigabyte_ai_top_atom__ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6454_gigabyte_ai_top_atom__ha4.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6454_gigabyte_ai_top_atom__ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6454_gigabyte_ai_top_atom__ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6454_gigabyte_ai_top_atom__ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6454_gigabyte_ai_top_atom__ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6454_gigabyte_ai_top_atom__ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6454_gigabyte_ai_top_atom__ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/gigabyte-ai-top-atom-4tb", + "brand": { + "id": 6, + "brand_index": "gigabyte", + "name": "GIGABYTE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/gigabyte.jpg", + "url": "\/brand\/gigabyte" + }, + "visit": 5285, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 92, + "catPath": ":92:1", + "name": "PC Machine Learning \/ AI", + "url": "\/machine-learning-ai-tensorflow" + } + ] + }, + { + "id": 4763, + "productId": 4763, + "priceUnit": "chi\u1ebfc", + "marketPrice": 19000000, + "price": 16750000, + "price_off": 12, + "currency": "vnd", + "sale_rules": { + "price": 16750000, + "normal_price": 16750000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2026-01-05 14:41:09", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HH SERVER DUAL XEON E5 2680 V4 | 64G | 500G NVMe", + "productSummary": "

CPU: 2 x XEON E5 2680V4 TURBO 3.3G - 28 CORE \/ 56 THREAD<\/p>\r\n

RAM : 64GB ECC REGISTERED T\u1ef0 S\u1eecA L\u1ed6I<\/p>\r\n

SSD: 500GB NVME M.2 PCIe<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4763_hhpc_server.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4763_hhpc_server.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4763_hhpc_server.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4763_hhpc_server.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4763_pc_gaming_x_ii_ws_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4763_pc_gaming_x_ii_ws_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4763_pc_gaming_x_ii_ws_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4763_pc_gaming_x_ii_ws_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4763_pc_gaming_x_ii_ws_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4763_pc_gaming_x_ii_ws_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4763_hhpc_gia_lap_7_min.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4763_hhpc_gia_lap_7_min.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hh-server-dual-xeon-e5-2680v4-64g-500g-nvme", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 25556, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 7, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 103, + "catPath": ":103:1", + "name": "Server, M\u00e1y \u1ea2o, Gi\u1ea3 L\u1eadp", + "url": "\/server-may-ao-gia-lap" + } + ] + }, + { + "id": 5052, + "productId": 5052, + "priceUnit": "chi\u1ebfc", + "marketPrice": 33000000, + "price": 29490000, + "price_off": 11, + "currency": "vnd", + "sale_rules": { + "price": 29490000, + "normal_price": 29490000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2026-01-05 14:45:51", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HH SERVER - DUAL XEON 2696 V4 | 128GB | NVIDIA GT 730 2GB", + "productSummary": "

CPU: 2x XEON E5 2696 V4 TURBO 3.6G - 44 CORE \/ 88 THREAD<\/p>\r\n

RAM : 128GB ECC REGISTERED T\u1ef0 S\u1eecA L\u1ed6I<\/p>\r\n

VGA :\u00a0NVIDIA GT 730 2GB GDDR3<\/p>\r\n

C\u1ea5u h\u00ecnh m\u00e1y chuy\u00ean ph\u1ee5c v\u1ee5 ch\u1ea1y gi\u1ea3 l\u1eadp Android Nox Player , M\u00e1y \u1ea3o VMWare Bluestack...Ph\u1ee5c v\u1ee5 ch\u01a1i Game nhi\u1ec1u acc nh\u01b0 V\u00f5 L\u00e2m Truy\u1ec1n K\u1ef3, V\u00f5 L\u00e2m Mobile, MU, Phong Th\u1ea7n , Ki\u1ebfm Th\u1ebf...<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5052_hhpc_server.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5052_hhpc_server.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5052_hhpc_server.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5052_hhpc_server.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4763_pc_gaming_x_ii_ws_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4763_pc_gaming_x_ii_ws_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4763_pc_gaming_x_ii_ws_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4763_pc_gaming_x_ii_ws_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4763_pc_gaming_x_ii_ws_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4763_pc_gaming_x_ii_ws_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5052_hhpc_gia_lap_6_min.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5052_hhpc_gia_lap_6_min.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hh-server-dual-xeon-2699v4-128gb-nvidia-gt-730-2gb", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 9812, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 103, + "catPath": ":103:1", + "name": "Server, M\u00e1y \u1ea2o, Gi\u1ea3 L\u1eadp", + "url": "\/server-may-ao-gia-lap" + } + ] + }, + { + "id": 5906, + "productId": 5906, + "priceUnit": "chi\u1ebfc", + "marketPrice": 35000000, + "price": 41660000, + "price_off": -19, + "currency": "vnd", + "sale_rules": { + "price": 41660000, + "normal_price": 41660000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-10-22 16:16:28", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HH Server Dual Xeon Platinum 8171M | 128GB | NVIDIA GT 730 2GB", + "productSummary": "

CPU: 2 x CPU\u00a0INTEL XEON PLATINUM 8171M UP TO 3.7GHz | 52 CORE | 104 THREAD<\/p>\r\n

RAM : DDR4 128GB 2666MHz ECC REGISTERED T\u1ef0 S\u1eecA L\u1ed6I<\/p>\r\n

VGA:\u00a0NVIDIA GT 730 2GB GDDR3<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha3s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha3s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha4s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha4s.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hh-server-dual-xeon-platinum-8171m-128gb-nvidia-gt-730-2gb", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 3298, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 103, + "catPath": ":103:1", + "name": "Server, M\u00e1y \u1ea2o, Gi\u1ea3 L\u1eadp", + "url": "\/server-may-ao-gia-lap" + } + ] + }, + { + "id": 5907, + "productId": 5907, + "priceUnit": "chi\u1ebfc", + "marketPrice": 38000000, + "price": 44660000, + "price_off": -18, + "currency": "vnd", + "sale_rules": { + "price": 44660000, + "normal_price": 44660000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-10-22 16:16:17", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HH Server Dual Xeon Platinum 8171M | 128GB | NVIDIA GTX 1060 6G", + "productSummary": "

CPU: 2 x CPU\u00a0INTEL XEON PLATINUM 8171M UP TO 3.7GHz | 52 CORE | 104 THREAD<\/p>\r\n

RAM : DDR4 128GB 2666MHz ECC REGISTERED T\u1ef0 S\u1eecA L\u1ed6I<\/p>\r\n

VGA:\u00a0NVIDIA GTX 1060 6G GDDR5<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha3s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha3s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha4s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha4s.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hh-server-dual-xeon-platinum-8171m-128gb-nvidia-gtx-1060-6g", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 2298, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 103, + "catPath": ":103:1", + "name": "Server, M\u00e1y \u1ea2o, Gi\u1ea3 L\u1eadp", + "url": "\/server-may-ao-gia-lap" + } + ] + }, + { + "id": 5908, + "productId": 5908, + "priceUnit": "chi\u1ebfc", + "marketPrice": 42000000, + "price": 48110000, + "price_off": -15, + "currency": "vnd", + "sale_rules": { + "price": 48110000, + "normal_price": 48110000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-10-22 16:16:06", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HH Server Dual Xeon Platinum 8171M | 128GB | RTX 3060 12GB", + "productSummary": "

CPU: 2 x CPU\u00a0INTEL XEON PLATINUM 8171M UP TO 3.7GHz | 52 CORE | 104 THREAD<\/p>\r\n

RAM : DDR4 128GB 2666MHz ECC REGISTERED T\u1ef0 S\u1eecA L\u1ed6I<\/p>\r\n

VGA:\u00a0NVIDIA RTX 3060 12G GDDR6<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha1s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha3s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha3s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5261_hhpc_server_dual_xeon_anubis_ha4s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5261_hhpc_server_dual_xeon_anubis_ha4s.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hh-server-dual-xeon-platinum-8171m-128gb-rtx-3060-12gb", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 6621, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 103, + "catPath": ":103:1", + "name": "Server, M\u00e1y \u1ea2o, Gi\u1ea3 L\u1eadp", + "url": "\/server-may-ao-gia-lap" + } + ] + }, + { + "id": 6417, + "productId": 6417, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 707060000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 707060000, + "normal_price": 707060000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-11-26 15:22:33", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HH AI PC RYZEN THREADRIPPER PRO 7995WX | 1024GB DDR5 | NVIDIA RTX PRO 6000 BLACKWELL 96GB", + "productSummary": "

CPU AMD RYZEN THREADRIPPER PRO 7995WX UP TO 5.1GHz | 96 CORES | 192 THREADS<\/p>\r\n

MAINBOARD GIGABYTE TRX50 AI TOP<\/p>\r\n

T\u1ea2N NHI\u1ec6T N\u01af\u1edaC AIO THERMALTAKE AW420<\/p>\r\n

RAM DDR5 SAMSUNG 1024GB (8x128GB) 4800MHz ECC RDIMM<\/p>\r\n

SSD SAMSUNG 990 PRO 12TB (3x4TB) M.2 NVME PCIE GEN 4x4 - 7450MB\/s<\/p>\r\n

HDD WD ULTRASTAR 20TB DC HC555 7200RPM SATA<\/p>\r\n

VGA NVIDIA RTX PRO 6000 BLACKWELL 96GB<\/p>\r\n

PSU CORSAIR AX1600i 1600W - 80 PLUS TITANIUM<\/p>\r\n

CASE AERIS WS1 ULTRA WORKSTATION<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6417_pc_dep_so_25_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6417_pc_dep_so_25_ha3.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6417_pc_dep_so_25_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6417_pc_dep_so_25_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6417_pc_dep_so_25_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6417_pc_dep_so_25_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6417_pc_dep_so_25_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6417_pc_dep_so_25_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6417_pc_dep_so_25_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6417_pc_dep_so_25_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6417_pc_dep_so_25_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6417_pc_dep_so_25_ha4.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/pc-ai-ryzen-threadripper-pro-7995wx-1024gb-d5-rtx-pro-6000-blackwell-96gb", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 1608, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

Gi\u00e1 s\u1ea3n ph\u1ea9m ch\u01b0a bao g\u1ed3m gi\u00e1 RAM<\/strong><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

Gi\u00e1 s\u1ea3n ph\u1ea9m ch\u01b0a bao g\u1ed3m gi\u00e1 RAM<\/strong><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 92, + "catPath": ":92:1", + "name": "PC Machine Learning \/ AI", + "url": "\/machine-learning-ai-tensorflow" + }, + { + "id": 238, + "catPath": ":238:1", + "name": "PC \u0110\u1eb9p", + "url": "\/pc-dep" + } + ] + }, + { + "id": 5789, + "productId": 5789, + "priceUnit": "chi\u1ebfc", + "marketPrice": 250000000, + "price": 311390000, + "price_off": -25, + "currency": "vnd", + "sale_rules": { + "price": 311390000, + "normal_price": 311390000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-11-10 08:52:18", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HH AI PC THREADRIPPER 9960X | 256GB | NVIDIA RTX 5090 32G", + "productSummary": "

CPU:\u00a0THREADRIPPER\u00a09960X UP 5.4 |\u00a024 CORE | 48 THREAD<\/p>\r\n

RAM : 256GB ECC REGISTERED T\u1ef0 S\u1eecA L\u1ed6I (4x64G)<\/p>\r\n

VGA :\u00a0NVIDIA RTX 5090 32GB GDDR7<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5711_aeris_ws1_ultra_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5711_aeris_ws1_ultra_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5711_aeris_ws1_ultra_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5711_aeris_ws1_ultra_ha1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/pcai-threadripper-9960x-256gb-rtx-5090-32g", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 3182, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 92, + "catPath": ":92:1", + "name": "PC Machine Learning \/ AI", + "url": "\/machine-learning-ai-tensorflow" + } + ] + }, + { + "id": 6259, + "productId": 6259, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 998320000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 998320000, + "normal_price": 998320000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-11-26 15:10:16", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HH AI PC RYZEN THREADRIPPER 9970X | 256G DDR5 | NVIDIA RTX 5880 ADA 48G", + "productSummary": "

CPU: AMD RYZEN THREADRIPPER 9970X UP TO 5.4 GHz | 32 CORE | 64 THREAD<\/p>\r\n

MAINBOARD: GIGABYTE TRX50 AI TOP<\/p>\r\n

T\u1ea2N NHI\u1ec6T: CUSTOM CHO CPU 9970X<\/p>\r\n

RAM: DDR5\u00a0KINGSTON\u00a0ECC 256GB 5600MHz (64Gx4)<\/p>\r\n

SSD:\u00a0CORSAIR MP600 PRO XT 8TB NVME M.2 PCIE GEN 4x4<\/p>\r\n

SSD:\u00a0SAMSUNG 990 PRO 4TB\u00a0NVME M.2 PCIE GEN 4x4<\/p>\r\n

HDD:\u00a0WD ULTRASTAR 12TB 3.5\" SATA<\/p>\r\n

VGA:\u00a0NVIDIA RTX 5880 ADA 48GB GDDR6 (BULK)<\/p>\r\n

PSU:\u00a0SUPER FLOWER LEADEX PLATINUM 2000W - 80 PLUS PLATINUM<\/p>\r\n

CASE:\u00a0SEGOTEP AERIS WS1 ULTRA<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6259_pc_ai_5880_ada_48g_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6259_pc_ai_5880_ada_48g_ha6.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6259_pc_ai_5880_ada_48g_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6259_pc_ai_5880_ada_48g_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6259_pc_ai_5880_ada_48g_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6259_pc_ai_5880_ada_48g_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6259_pc_ai_5880_ada_48g_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6259_pc_ai_5880_ada_48g_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6259_pc_ai_5880_ada_48g_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6259_pc_ai_5880_ada_48g_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6259_pc_ai_5880_ada_48g_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6259_pc_ai_5880_ada_48g_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6259_pc_ai_5880_ada_48g_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6259_pc_ai_5880_ada_48g_ha4.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/pc-ai-ryzen-threadripper-9970x-256g-d5-rtx-5880", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 2590, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 9, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

Gi\u00e1 s\u1ea3n ph\u1ea9m ch\u01b0a bao g\u1ed3m gi\u00e1 t\u1ea3n nhi\u1ec7t CPU<\/strong><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

Gi\u00e1 s\u1ea3n ph\u1ea9m ch\u01b0a bao g\u1ed3m gi\u00e1 t\u1ea3n nhi\u1ec7t CPU<\/strong><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 92, + "catPath": ":92:1", + "name": "PC Machine Learning \/ AI", + "url": "\/machine-learning-ai-tensorflow" + }, + { + "id": 238, + "catPath": ":238:1", + "name": "PC \u0110\u1eb9p", + "url": "\/pc-dep" + } + ] + }, + { + "id": 5053, + "productId": 5053, + "priceUnit": "chi\u1ebfc", + "marketPrice": 40000000, + "price": 35950000, + "price_off": 10, + "currency": "vnd", + "sale_rules": { + "price": 35950000, + "normal_price": 35950000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2026-01-05 14:44:58", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HH SERVER - DUAL XEON 2696 V4 | 128GB | NVIDIA RTX 3060 12G", + "productSummary": "

CPU: 2x XEON E5 2696 V4 TURBO 3.6G - 44 CORE \/ 88 THREAD<\/p>\r\n

RAM : 128GB ECC REGISTERED T\u1ef0 S\u1eecA L\u1ed6I<\/p>\r\n

VGA :\u00a0NVIDIA GEFORCE RTX 3060 12G GDDR6<\/p>\r\n

C\u1ea5u h\u00ecnh m\u00e1y chuy\u00ean ph\u1ee5c v\u1ee5 ch\u1ea1y gi\u1ea3 l\u1eadp Android Nox Player , M\u00e1y \u1ea3o VMWare Bluestack...Ph\u1ee5c v\u1ee5 ch\u01a1i Game nhi\u1ec1u acc nh\u01b0 V\u00f5 L\u00e2m Truy\u1ec1n K\u1ef3, V\u00f5 L\u00e2m Mobile, MU, Phong Th\u1ea7n , Ki\u1ebfm Th\u1ebf...<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5053_hhpc_server.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5053_hhpc_server.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5053_hhpc_server.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5053_hhpc_server.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3401_pc_gaming_x_ii_server__ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3401_pc_gaming_x_ii_server__ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3401_pc_gaming_x_ii_server_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3401_pc_gaming_x_ii_server_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3401_pc_gaming_x_ii_server_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3401_pc_gaming_x_ii_server_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5053_hhpc_gia_lap_5_min.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5053_hhpc_gia_lap_5_min.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hh-server-dual-xeon-2696v4-128gb-nvidia-rtx-3060-12g-1", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 10841, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 103, + "catPath": ":103:1", + "name": "Server, M\u00e1y \u1ea2o, Gi\u1ea3 L\u1eadp", + "url": "\/server-may-ao-gia-lap" + } + ] + } + ] + }, + { + "id" : 27, + "total": 7, + "list": [ + { + "id": 5965, + "productId": 5965, + "priceUnit": "chi\u1ebfc", + "marketPrice": 11000000, + "price": 10600000, + "price_off": 4, + "currency": "vnd", + "sale_rules": { + "price": 10600000, + "normal_price": 10600000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-10-22 16:21:26", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HHPC GAMING XEON E5 2676 V3 | 16G | NVIDIA GTX 1060 6G", + "productSummary": "

CPU: XEON E5\u00a02676 V3 TURBO 3.3G -\u00a012 CORE \/\u00a024 THREAD<\/p>\r\n

RAM: DDR3 16G ECC REGISTERED (1x16G )<\/p>\r\n

VGA :\u00a0NVIDIA GTX 1060 6G GDDR5<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5965_pc_gaming_x_ii_hyper_212.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5965_pc_gaming_x_ii_hyper_212.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5965_pc_gaming_x_ii_hyper_212.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5965_pc_gaming_x_ii_hyper_212.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5965_pc_gaming_x_ii_hyper_212_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5965_pc_gaming_x_ii_hyper_212_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5965_pc_gaming_x_ii_hyper_212_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5965_pc_gaming_x_ii_hyper_212_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5965_pc_gaming_x_ii_hyper_212_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5965_pc_gaming_x_ii_hyper_212_ha4.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hhpc-gaming-xeon-e5-2676-v3-16g-nvidia-gtx-1060-6g", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 8639, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 237, + "catPath": ":237:27", + "name": "Basic PC Gaming", + "url": "\/basic-pc-gaming" + } + ] + }, + { + "id": 5210, + "productId": 5210, + "priceUnit": "chi\u1ebfc", + "marketPrice": 23000000, + "price": 21810000, + "price_off": 5, + "currency": "vnd", + "sale_rules": { + "price": 21810000, + "normal_price": 21810000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-12-09 11:05:54", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HHPC GAMING CORE i5 12400F | 16G | NVIDIA RTX 5060 8G", + "productSummary": "

CPU : INTEL CORE i5 12400F\u00a0UP 4.4GHz | 6 CORES | 12 THREADS<\/p>\r\n

RAM : DDR4 16GB\u00a0(1x16G) 3200 MHz<\/p>\r\n

VGA:\u00a0NVIDIA RTX 5060\u00a08G GDDR7<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6042_pc_blast_m_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6042_pc_blast_m_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6042_pc_blast_m_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6042_pc_blast_m_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6042_pc_blast_m_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6042_pc_blast_m_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6042_pc_blast_m_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6042_pc_blast_m_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hhpc-gaming-i5-12400f-16g-rtx-5060-8g", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 14878, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 235, + "catPath": ":235:27", + "name": "Mini PC Gaming", + "url": "\/mini-pc-gaming" + } + ] + }, + { + "id": 4686, + "productId": 4686, + "priceUnit": "chi\u1ebfc", + "marketPrice": 20000000, + "price": 19510000, + "price_off": 2, + "currency": "vnd", + "sale_rules": { + "price": 19510000, + "normal_price": 19510000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-12-09 11:04:28", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HHPC GAMING i5 12400F | 16G | NVIDIA RTX 3060 12G", + "productSummary": "

CPU : INTEL CORE i5 12400F\u00a0UP 4.4GHz | 6 CORES | 12 THREADS<\/p>\r\n

RAM : DDR4 16GB 3200 MHz (1x16G)<\/p>\r\n

VGA : NVIDIA RTX 3060 12GB GDDR6<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4686_hp_omen_white_40x_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4686_hp_omen_white_40x_ha1s.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4686_hp_omen_white_40x_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4686_hp_omen_white_40x_ha1s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4686_pc_hp_white_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4686_pc_hp_white_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4686_pc_hp_white_glass_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4686_pc_hp_white_glass_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4686_pc_hp_white_glass_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4686_pc_hp_white_glass_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hhpc-gaming-i5-12400f-16g-nvidia-rtx-3060-12gb", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 58234, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 7, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 237, + "catPath": ":237:27", + "name": "Basic PC Gaming", + "url": "\/basic-pc-gaming" + } + ] + }, + { + "id": 6045, + "productId": 6045, + "priceUnit": "chi\u1ebfc", + "marketPrice": 45000000, + "price": 40200000, + "price_off": 11, + "currency": "vnd", + "sale_rules": { + "price": 40200000, + "normal_price": 40200000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-12-09 11:08:52", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HHPC GAMING CORE i5 14600K | 16GB | NVIDIA RTX 5070 Ti 16G", + "productSummary": "

CPU : INTEL CORE i5 14600K\u00a0UP\u00a05.3GHz | 14 CORES | 20 THREADS<\/p>\r\n

RAM : DDR4 16GB\u00a0(1x16G) 3200 MHz<\/p>\r\n

VGA :\u00a0NVIDIA RTX\u00a05070 Ti 16G GDDR7<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6045_pc_blast_m_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6045_pc_blast_m_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6045_pc_blast_m_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6045_pc_blast_m_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6045_pc_blast_m_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6045_pc_blast_m_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6045_pc_blast_m_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6045_pc_blast_m_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/pc-gaming-core-i5-14600kf-16gb-nvidia-rtx-5070-ti", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 7372, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 235, + "catPath": ":235:27", + "name": "Mini PC Gaming", + "url": "\/mini-pc-gaming" + } + ] + }, + { + "id": 6046, + "productId": 6046, + "priceUnit": "chi\u1ebfc", + "marketPrice": 29000000, + "price": 27700000, + "price_off": 4, + "currency": "vnd", + "sale_rules": { + "price": 27700000, + "normal_price": 27700000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-12-09 11:09:28", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HHPC GAMING CORE i5 14600K | 16GB | RX 7800 XT 16G", + "productSummary": "

CPU : INTEL CORE i5 14600K\u00a0UP\u00a05.3GHz | 14 CORES | 20 THREADS<\/p>\r\n

RAM : DDR4 16GB\u00a0(1x16G) 3200 MHz<\/p>\r\n

VGA:\u00a0RADEON RX 7800 XT 16G\u00a0GDDR6<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6046_pc_blast_m_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6046_pc_blast_m_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6046_pc_blast_m_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6046_pc_blast_m_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6046_pc_blast_m_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6046_pc_blast_m_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6046_pc_blast_m_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6046_pc_blast_m_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hhpc-gaming-core-i5-14600k-16gb-rx-7800-xt", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 5111, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 235, + "catPath": ":235:27", + "name": "Mini PC Gaming", + "url": "\/mini-pc-gaming" + } + ] + }, + { + "id": 5367, + "productId": 5367, + "priceUnit": "chi\u1ebfc", + "marketPrice": 18000000, + "price": 17450000, + "price_off": 3, + "currency": "vnd", + "sale_rules": { + "price": 17450000, + "normal_price": 17450000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-12-09 11:06:34", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HHPC GAMING CORE i5 12400F | 16G | NVIDIA RTX 3050 6G", + "productSummary": "

CPU : INTEL CORE i5 12400F up 4.4GHz | 6 CORES | 12 THREADS<\/p>\r\n

RAM : DDR4 16GB 3200 MHz (1x16G)<\/p>\r\n

VGA :\u00a0NVIDIA RTX 3050 6G GDDR6<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5367_pc_alphard_m_kf400_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5367_pc_alphard_m_kf400_ha1s.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5367_pc_alphard_m_kf400_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5367_pc_alphard_m_kf400_ha1s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5367_pc_alphard_m_kf400_ha4s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5367_pc_alphard_m_kf400_ha4s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5367_pc_alphard_m_kf400_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5367_pc_alphard_m_kf400_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5367_pc_alphard_m_kf400_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5367_pc_alphard_m_kf400_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hhpc-gaming-i5-12400f-16g-nvidia-rtx-3050", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 19861, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 237, + "catPath": ":237:27", + "name": "Basic PC Gaming", + "url": "\/basic-pc-gaming" + } + ] + }, + { + "id": 5191, + "productId": 5191, + "priceUnit": "chi\u1ebfc", + "marketPrice": 35000000, + "price": 32700000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 32700000, + "normal_price": 32700000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "component" + }, + "lastUpdate": "2025-12-09 11:05:04", + "warranty": "theo t\u1eebng linh ki\u1ec7n", + "productName": "HHPC GAMING CORE i5 14600K | 16GB | NVIDIA RTX 5070 12G", + "productSummary": "

CPU : INTEL CORE i5 14600K\u00a0UP\u00a05.3GHz | 14 CORES | 20 THREADS<\/p>\r\n

RAM : DDR4 16GB\u00a0(1x16G) 3200 MHz<\/p>\r\n

VGA :\u00a0NVIDIA RTX 5070 12G GDDR7<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5191_pc_blast_m_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5191_pc_blast_m_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5191_pc_blast_m_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5191_pc_blast_m_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5191_pc_blast_m_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5191_pc_blast_m_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5191_pc_blast_m_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5191_pc_blast_m_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hhpc-gaming-core-i5-14600k-16gb-rtx-5070", + "brand": { + "id": 0, + "name": "", + "image": "", + "url": "" + }, + "visit": 28828, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 8, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 235, + "catPath": ":235:27", + "name": "Mini PC Gaming", + "url": "\/mini-pc-gaming" + } + ] + } + ] + }, + { + "id": 2, + "total": 10, + "list": [ + { + "id": 5401, + "productId": 5401, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 12990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 12990000, + "normal_price": 12990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-12-15 15:02:55", + "warranty": "36 Th\u00e1ng", + "productName": "CPU Intel Core Ultra 9 285K (Up 5.7 GHz, 24 Nh\u00e2n 24 Lu\u1ed3ng, 36MB Cache, Arrow Lake)", + "productSummary": "

Socket:\u00a0FCLGA1851<\/p>\r\n

S\u1ed1 l\u00f5i:\u00a024 (8 P-core,\u00a016 E-core)<\/p>\r\n

S\u1ed1 lu\u1ed3ng:\u00a024<\/p>\r\n

T\u1ed1c \u0111\u1ed9 x\u1eed l\u00ed t\u1ed1i \u0111a:\u00a0up to 5.7 GHz<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m:\u00a036 MB Intel\u00ae Smart Cache<\/p>\r\n

Bus ram h\u1ed7 tr\u1ee3:\u00a0Up to DDR5 6400 MT\/s<\/p>\r\n

M\u1ee9c ti\u00eau th\u1ee5 \u0111i\u1ec7n:\u00a0125 W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5401_cpu_ultra_9_285k_sale_t12_2025.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5401_cpu_ultra_9_285k_sale_t12_2025.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5401_cpu_ultra_9_285k_sale_t12_2025.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5401_cpu_ultra_9_285k_sale_t12_2025.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5401_core_ultra_9_285k_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5401_core_ultra_9_285k_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5401_cpu_285k_sp_3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5401_cpu_285k_sp_3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5401_cpu_285k_sp_2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5401_cpu_285k_sp_2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5401_cpu_285k_sp.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5401_cpu_285k_sp.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/cpu-intel-core-ultra-9-285k", + "brand": { + "id": 22, + "brand_index": "intel", + "name": "INTEL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/intel.jpg", + "url": "\/brand\/intel" + }, + "visit": 24129, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU\u00a0Ultra\u00a09 285K ch\u1ec9 c\u00f2n<\/span><\/strong><\/span>\u00a0<\/span>12.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/span><\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU\u00a0Ultra 9 285K khi\u00a0mua k\u00e8m\u00a0main Z890 l\u00e0:\u00a014.490.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb\u00a0CPU\u00a0Ultra 9 285K l\u00e0:\u00a015.990.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU\u00a0Ultra\u00a09 285K ch\u1ec9 c\u00f2n<\/span><\/strong><\/span>\u00a0<\/span>12.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/span><\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU\u00a0Ultra 9 285K khi\u00a0mua k\u00e8m\u00a0main Z890 l\u00e0:\u00a014.490.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb\u00a0CPU\u00a0Ultra 9 285K l\u00e0:\u00a015.990.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 1, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 2, + "catPath": ":2", + "name": "CPU - B\u1ed9 Vi X\u1eed L\u00fd", + "url": "\/cpu-bo-vi-xu-ly" + }, + { + "id": 259, + "catPath": ":259:107:2", + "name": "Intel Core Ultra 9", + "url": "\/intel-core-ultra-9" + } + ] + }, + { + "id": 4720, + "productId": 4720, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 11990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 11990000, + "normal_price": 11990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-10-27 17:05:31", + "warranty": "36 Th\u00e1ng", + "productName": "CPU Intel Core i9 14900K (Up 6.0 GHz, 24 Nh\u00e2n 32 Lu\u1ed3ng, 36MB Cache, Raptor Lake)", + "productSummary": "

CPU Intel\u00a0Core i9 14900K<\/strong><\/p>\r\n

Socket: FCLGA1700<\/p>\r\n

S\u1ed1 l\u00f5i\/lu\u1ed3ng:\u00a024 nh\u00e2n,\u00a032 lu\u1ed3ng<\/p>\r\n

T\u1ed1c \u0111\u1ed9 x\u1eed l\u00ed t\u1ed1i \u0111a:\u00a06.0 GHz<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m:\u00a036 MB Intel\u00ae Smart Cache<\/p>\r\n

Bus ram h\u1ed7 tr\u1ee3: DDR4 3200 MT\/s, DDR5 5600 MT\/s<\/p>\r\n

M\u1ee9c ti\u00eau th\u1ee5 \u0111i\u1ec7n:\u00a0125 W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4720_cpu_14900k_sale_t8_2025_s1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4720_cpu_14900k_sale_t8_2025_s1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4720_cpu_14900k_sale_t8_2025_s1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4720_cpu_14900k_sale_t8_2025_s1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4720_cpu_14900k_hatt_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4720_cpu_14900k_hatt_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4720_cpu_14900k_hatt_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4720_cpu_14900k_hatt_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4720_cpu_14900k_hatt_h1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4720_cpu_14900k_hatt_h1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/cpu-intel-core-i9-14900k", + "brand": { + "id": 22, + "brand_index": "intel", + "name": "INTEL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/intel.jpg", + "url": "\/brand\/intel" + }, + "visit": 64668, + "rating": 5, + "reviewCount": 2, + "review": { + "rate": 5, + "total": 2 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\u2b50 Gi\u00e1 khuy\u1ebfn m\u00e3i CPU i9 14900K ch\u1ec9 c\u00f2n 11.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1 CPU i9 14900K khi build\u00a0m\u00e1y\u00a0kh\u00f4ng VGA l\u00e0:\u00a012.690.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb CPU i9 14900K l\u00e0: 13.500.000\u0111 <\/strong><\/span><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c <\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T N\u01af\u1edaC AIO, MAIN (Z690 ho\u1eb7c Z790), RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\u2b50 Gi\u00e1 khuy\u1ebfn m\u00e3i CPU i9 14900K ch\u1ec9 c\u00f2n 11.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1 CPU i9 14900K khi build\u00a0m\u00e1y\u00a0kh\u00f4ng VGA l\u00e0:\u00a012.690.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb CPU i9 14900K l\u00e0: 13.500.000\u0111 <\/strong><\/span><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c <\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T N\u01af\u1edaC AIO, MAIN (Z690 ho\u1eb7c Z790), RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 112, + "catPath": ":112:107:2", + "name": "Intel Core i9", + "url": "\/cpu-intel-core-i9" + }, + { + "id": 2, + "catPath": ":2", + "name": "CPU - B\u1ed9 Vi X\u1eed L\u00fd", + "url": "\/cpu-bo-vi-xu-ly" + } + ] + }, + { + "id": 4721, + "productId": 4721, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 11690000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 11690000, + "normal_price": 11690000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-12-27 11:08:21", + "warranty": "36 Th\u00e1ng", + "productName": "CPU Intel Core i9 14900KF (Up 6.0 GHz, 24 Nh\u00e2n 32 Lu\u1ed3ng, 36MB Cache, Raptor Lake)", + "productSummary": "

Socket: FCLGA1700<\/p>\r\n

S\u1ed1 l\u00f5i\/lu\u1ed3ng:\u00a024 nh\u00e2n,\u00a032 lu\u1ed3ng<\/p>\r\n

T\u1ed1c \u0111\u1ed9 x\u1eed l\u00ed t\u1ed1i \u0111a:\u00a06.0 GHz<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m:\u00a036 MB<\/p>\r\n

Bus ram h\u1ed7 tr\u1ee3: DDR4 3200 MT\/s, DDR5 5600 MT\/s<\/p>\r\n

M\u1ee9c ti\u00eau th\u1ee5 \u0111i\u1ec7n:\u00a0125 W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4721_i9_14900kf_sale_t12_2025.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4721_i9_14900kf_sale_t12_2025.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4721_i9_14900kf_sale_t12_2025.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4721_i9_14900kf_sale_t12_2025.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4721_img_2898.jpeg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4721_img_2898.jpeg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/cpu-intel-core-i9-14900kf", + "brand": { + "id": 22, + "brand_index": "intel", + "name": "INTEL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/intel.jpg", + "url": "\/brand\/intel" + }, + "visit": 15537, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU i9 14900KF ch\u1ec9 c\u00f2n\u00a011.690.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1 CPU i9 14900KF khi build\u00a0m\u00e1y\u00a0kh\u00f4ng VGA l\u00e0:\u00a012.290.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb CPU i9 14900KF l\u00e0:\u00a012.890.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T N\u01af\u1edaC AIO, MAIN (Z690 ho\u1eb7c Z790), RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU i9 14900KF ch\u1ec9 c\u00f2n\u00a011.690.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1 CPU i9 14900KF khi build\u00a0m\u00e1y\u00a0kh\u00f4ng VGA l\u00e0:\u00a012.290.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb CPU i9 14900KF l\u00e0:\u00a012.890.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T N\u01af\u1edaC AIO, MAIN (Z690 ho\u1eb7c Z790), RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 112, + "catPath": ":112:107:2", + "name": "Intel Core i9", + "url": "\/cpu-intel-core-i9" + }, + { + "id": 2, + "catPath": ":2", + "name": "CPU - B\u1ed9 Vi X\u1eed L\u00fd", + "url": "\/cpu-bo-vi-xu-ly" + } + ] + }, + { + "id": 2906, + "productId": 2906, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 7990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 7990000, + "normal_price": 7990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-12-16 10:40:30", + "warranty": "36 Th\u00e1ng", + "productName": "CPU Intel Core i9 12900K (5.20GHz, 16 Nh\u00e2n 24 Lu\u1ed3ng, 30M Cache, Alder Lake)", + "productSummary": "

Socket: FCLGA1700<\/p>\r\n

S\u1ed1 l\u00f5i\/lu\u1ed3ng: 16\/24<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m: 30 MB<\/p>\r\n

Bus ram h\u1ed7 tr\u1ee3: DDR4 3200MHz, DDR5-4800<\/p>\r\n

M\u1ee9c ti\u00eau th\u1ee5 \u0111i\u1ec7n: 125W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2906_core_i9_12900k_sale_t12_2025.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2906_core_i9_12900k_sale_t12_2025.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2906_core_i9_12900k_sale_t12_2025.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2906_core_i9_12900k_sale_t12_2025.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2906_cpu_intel_12900k_hatt1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2906_cpu_intel_12900k_hatt1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2906_cpu_intel_12900k_hatt2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2906_cpu_intel_12900k_hatt2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2906_cpu_intel_12900k_hatt3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2906_cpu_intel_12900k_hatt3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2906_cpu_intel_core_i9_12900k_1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2906_cpu_intel_core_i9_12900k_1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2906_i9_12900k_1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2906_i9_12900k_1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2906_i9_12900k_3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2906_i9_12900k_3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/cpu-intel-core-i9-12900k", + "brand": { + "id": 22, + "brand_index": "intel", + "name": "INTEL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/intel.jpg", + "url": "\/brand\/intel" + }, + "visit": 94056, + "rating": 5, + "reviewCount": 3810, + "review": { + "rate": 5, + "total": 3810 + }, + "comment": { + "rate": 0, + "total": 1 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u1ea1i ch\u1ec9 c\u00f2n\u00a07.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1 khi build\u00a0m\u00e1y\u00a0kh\u00f4ng VGA l\u00e0:\u00a08.490.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb l\u00e0:\u00a08.990.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T N\u01af\u1edaC AIO, MAIN (Z690 ho\u1eb7c Z790), RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u1ea1i ch\u1ec9 c\u00f2n\u00a07.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1 khi build\u00a0m\u00e1y\u00a0kh\u00f4ng VGA l\u00e0:\u00a08.490.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb l\u00e0:\u00a08.990.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T N\u01af\u1edaC AIO, MAIN (Z690 ho\u1eb7c Z790), RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": null, + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": null, + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 112, + "catPath": ":112:107:2", + "name": "Intel Core i9", + "url": "\/cpu-intel-core-i9" + } + ] + }, + { + "id": 3541, + "productId": 3541, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 8990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 8990000, + "normal_price": 8990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-12-16 09:53:09", + "warranty": "36 th\u00e1ng", + "productName": "CPU AMD Ryzen 9 7900X (Up To 5.6GHz, 12 Nh\u00e2n 24 Lu\u1ed3ng, 64MB Cache, AM5)", + "productSummary": "

Socket:\u00a0AM5<\/p>\r\n

S\u1ed1 nh\u00e2n: 12<\/p>\r\n

S\u1ed1 lu\u1ed3ng: 24<\/p>\r\n

T\u1ed1c \u0111\u1ed9 x\u1eed l\u00ed t\u1ed1i \u0111a:\u00a0Up to\u00a05.6GHz<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m: 64MB<\/p>\r\n

Bus\u00a0RAM h\u1ed7 tr\u1ee3:\u00a0DDR5<\/p>\r\n

M\u1ee9c ti\u00eau th\u1ee5 \u0111i\u1ec7n: 170W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3541_ryzen_9_7900x_t12_2025.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3541_ryzen_9_7900x_t12_2025.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3541_ryzen_9_7900x_t12_2025.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3541_ryzen_9_7900x_t12_2025.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3541_ryzen_9_7950x_3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3541_ryzen_9_7950x_3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3541_ryzen_9_7950x_2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3541_ryzen_9_7950x_2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3541_ryzen_9_7950x_1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3541_ryzen_9_7950x_1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3541_ryzen_9_7900x_5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3541_ryzen_9_7900x_5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3541_ryzen_9_7900x_4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3541_ryzen_9_7900x_4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3541_ryzen_9_7900x_6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3541_ryzen_9_7900x_6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3541_ryzen_9_7900x_7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3541_ryzen_9_7900x_7.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/cpu-amd-ryzen-9-7900x", + "brand": { + "id": 3, + "brand_index": "amd", + "name": "AMD", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/amd.jpg", + "url": "\/brand\/amd" + }, + "visit": 41883, + "rating": 5, + "reviewCount": 3810, + "review": { + "rate": 5, + "total": 3810 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u1ea1i ch\u1ec9 c\u00f2n\u00a08.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1 khi build\u00a0m\u00e1y\u00a0kh\u00f4ng VGA l\u00e0:\u00a09.590.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb l\u00e0:\u00a010.990.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T N\u01af\u1edaC AIO, MAIN (Z690 ho\u1eb7c Z790), RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u1ea1i ch\u1ec9 c\u00f2n\u00a08.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1 khi build\u00a0m\u00e1y\u00a0kh\u00f4ng VGA l\u00e0:\u00a09.590.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb l\u00e0:\u00a010.990.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T N\u01af\u1edaC AIO, MAIN (Z690 ho\u1eb7c Z790), RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": null, + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": null, + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 117, + "catPath": ":117:108:2", + "name": "AMD Ryzen 9", + "url": "\/cpu-amd-ryzen-9" + } + ] + }, + { + "id": 5602, + "productId": 5602, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 12990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 12990000, + "normal_price": 12990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-06-12 11:06:34", + "warranty": "36 Th\u00e1ng", + "productName": "CPU AMD Ryzen 9 9950X (Up 5.7 GHz, 16 Nh\u00e2n 32 Lu\u1ed3ng, 64MB Cache, AM5)", + "productSummary": "

CPU\u00a0AMD\u00a0Ryzen 9 9950X<\/p>\r\n

Socket:\u00a0AMD5<\/p>\r\n

S\u1ed1 l\u00f5i\/ lu\u1ed3ng:\u00a016 Nh\u00e2n,\u00a032 Lu\u1ed3ng<\/p>\r\n

T\u1ed1c \u0111\u1ed9 x\u1eed l\u00ed t\u1ed1i \u0111a:\u00a0Up to 5.7GHz<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m:\u00a064 MB<\/p>\r\n

Bus\u00a0RAM h\u1ed7 tr\u1ee3:\u00a0DDR5<\/p>\r\n

M\u1ee9c ti\u00eau th\u1ee5 \u0111i\u1ec7n: 170W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5602_ryzen_9_9950x_sale_t6_2025_s2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5602_ryzen_9_9950x_sale_t6_2025_s2.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5304_9950x_sale_t10_2024s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5304_9950x_sale_t10_2024s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5304_ryzen_9_9950x_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5304_ryzen_9_9950x_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5304_ryzen_9_9950x_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5304_ryzen_9_9950x_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5304_ryzen_9_9950x_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5304_ryzen_9_9950x_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5602_ryzen_9_9950x_sale_t6_2025_s2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5602_ryzen_9_9950x_sale_t6_2025_s2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/cpu-amd-ryzen-9-9950x-s1", + "brand": { + "id": 3, + "brand_index": "amd", + "name": "AMD", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/amd.jpg", + "url": "\/brand\/amd" + }, + "visit": 6217, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU Ryzen 9\u00a09950X ch\u1ec9 c\u00f2n\u00a012.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU Ryzen 9\u00a09950X khi build\u00a0m\u00e1y\u00a0kh\u00f4ng VGA l\u00e0:\u00a013.990.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb CPU Ryzen 9\u00a09950X l\u00e0:\u00a015.990.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU Ryzen 9\u00a09950X ch\u1ec9 c\u00f2n\u00a012.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU Ryzen 9\u00a09950X khi build\u00a0m\u00e1y\u00a0kh\u00f4ng VGA l\u00e0:\u00a013.990.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb CPU Ryzen 9\u00a09950X l\u00e0:\u00a015.990.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 117, + "catPath": ":117:108:2", + "name": "AMD Ryzen 9", + "url": "\/cpu-amd-ryzen-9" + } + ] + }, + { + "id": 6271, + "productId": 6271, + "priceUnit": "chi\u1ebfc", + "marketPrice": 50000000, + "price": 45500000, + "price_off": 9, + "currency": "vnd", + "sale_rules": { + "price": 45500000, + "normal_price": 45500000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-08-13 14:19:59", + "warranty": "36 Th\u00e1ng", + "productName": "CPU AMD Ryzen Threadripper 9960X (Up 5.4 GHz, 24 Nh\u00e2n 48 Lu\u1ed3ng, 128MB Cache, sTR5)", + "productSummary": "

AMD Ryzen Threadripper\u00a09960X<\/p>\r\n

Socket:\u00a0sTR5<\/p>\r\n

S\u1ed1 nh\u00e2n:\u00a024<\/p>\r\n

S\u1ed1 lu\u1ed3ng: 48<\/p>\r\n

T\u1ed1c \u0111\u1ed9 x\u1eed l\u00ed t\u1ed1i \u0111a:\u00a0Up to\u00a05.4GHz<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m: 128MB<\/p>\r\n

Bus\u00a0RAM h\u1ed7 tr\u1ee3:\u00a0DDR5<\/p>\r\n

M\u1ee9c ti\u00eau th\u1ee5 \u0111i\u1ec7n:\u00a0350W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6271_ryzen_threadripper_9000_seri_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6271_ryzen_threadripper_9000_seri_ha3.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6271_ryzen_threadripper_9000_seri_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6271_ryzen_threadripper_9000_seri_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6271_ryzen_threadripper_9000_seri_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6271_ryzen_threadripper_9000_seri_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6271_ryzen_threadripper_9000_seri_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6271_ryzen_threadripper_9000_seri_ha1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/cpu-amd-ryzen-threadripper-9960x-b", + "brand": { + "id": 3, + "brand_index": "amd", + "name": "AMD", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/amd.jpg", + "url": "\/brand\/amd" + }, + "visit": 662, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 118, + "catPath": ":118:108:2", + "name": "AMD Ryzen Threadripper", + "url": "\/amd-ryzen-threadripper" + } + ] + }, + { + "id": 5869, + "productId": 5869, + "priceUnit": "chi\u1ebfc", + "marketPrice": 23000000, + "price": 20990000, + "price_off": 9, + "currency": "vnd", + "sale_rules": { + "price": 20990000, + "normal_price": 20990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2026-01-05 15:52:16", + "warranty": "36 Th\u00e1ng", + "productName": "CPU AMD Ryzen 9 9950X3D (Up 5.7 GHz, 16 Nh\u00e2n 32 Lu\u1ed3ng, 128MB Cache, AM5)", + "productSummary": "

Socket:\u00a0AMD5<\/p>\r\n

S\u1ed1 l\u00f5i\/ lu\u1ed3ng:\u00a016 Nh\u00e2n, 32 Lu\u1ed3ng<\/p>\r\n

T\u1ed1c \u0111\u1ed9 x\u1eed l\u00ed t\u1ed1i \u0111a:\u00a0Up to 5.7GHz<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m:\u00a0128 MB<\/p>\r\n

Bus\u00a0RAM h\u1ed7 tr\u1ee3:\u00a0DDR5<\/p>\r\n

M\u1ee9c ti\u00eau th\u1ee5 \u0111i\u1ec7n: 170W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5869_amd_ryzen_9_9950x3d_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5869_amd_ryzen_9_9950x3d_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5869_amd_ryzen_9_9950x3d_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5869_amd_ryzen_9_9950x3d_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5869_amd_ryzen_9_9950x3d_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5869_amd_ryzen_9_9950x3d_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5869_amd_ryzen_9_9950x3d_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5869_amd_ryzen_9_9950x3d_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/cpu-amd-ryzen-9-9950x3d", + "brand": { + "id": 3, + "brand_index": "amd", + "name": "AMD", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/amd.jpg", + "url": "\/brand\/amd" + }, + "visit": 4179, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 117, + "catPath": ":117:108:2", + "name": "AMD Ryzen 9", + "url": "\/cpu-amd-ryzen-9" + } + ] + }, + { + "id": 5870, + "productId": 5870, + "priceUnit": "chi\u1ebfc", + "marketPrice": 18000000, + "price": 16990000, + "price_off": 6, + "currency": "vnd", + "sale_rules": { + "price": 16990000, + "normal_price": 16990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-06-30 14:15:47", + "warranty": "36 Th\u00e1ng", + "productName": "CPU AMD Ryzen 9 9900X3D (Up 5.5 GHz, 12 Nh\u00e2n 24 Lu\u1ed3ng, 128MB Cache, AM5)", + "productSummary": "

CPU\u00a0AMD\u00a0Ryzen 9 9900X3D<\/p>\r\n

Socket:\u00a0AMD5<\/p>\r\n

S\u1ed1 l\u00f5i\/ lu\u1ed3ng:\u00a012 Nh\u00e2n,\u00a024 Lu\u1ed3ng<\/p>\r\n

T\u1ed1c \u0111\u1ed9 x\u1eed l\u00ed t\u1ed1i \u0111a:\u00a0Up to 5.5GHz<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m:\u00a0128 MB<\/p>\r\n

Bus\u00a0RAM h\u1ed7 tr\u1ee3:\u00a0DDR5<\/p>\r\n

M\u1ee9c ti\u00eau th\u1ee5 \u0111i\u1ec7n: 120W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5870_ryzen_9_9900x3d_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5870_ryzen_9_9900x3d_ha3.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5870_ryzen_9_9900x3d_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5870_ryzen_9_9900x3d_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5870_ryzen_9_9900x3d_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5870_ryzen_9_9900x3d_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5870_ryzen_9_9900x3d_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5870_ryzen_9_9900x3d_ha1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/cpu-amd-ryzen-9-9900x3d", + "brand": { + "id": 3, + "brand_index": "amd", + "name": "AMD", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/amd.jpg", + "url": "\/brand\/amd" + }, + "visit": 1383, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 117, + "catPath": ":117:108:2", + "name": "AMD Ryzen 9", + "url": "\/cpu-amd-ryzen-9" + } + ] + }, + { + "id": 5488, + "productId": 5488, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 10990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 10990000, + "normal_price": 10990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-09-06 14:44:41", + "warranty": "36 Th\u00e1ng", + "productName": "CPU AMD Ryzen 7 9800X3D (Up 5.2 GHz, 8 Nh\u00e2n 16 Lu\u1ed3ng, 96MB Cache, AM5)", + "productSummary": "

CPU\u00a0AMD\u00a0Ryzen 7 9800X3D<\/p>\r\n

Socket:\u00a0AMD5<\/p>\r\n

S\u1ed1 l\u00f5i\/ lu\u1ed3ng:\u00a08 Nh\u00e2n,\u00a016 Lu\u1ed3ng<\/p>\r\n

T\u1ed1c \u0111\u1ed9 x\u1eed l\u00ed t\u1ed1i \u0111a:\u00a0Up to 5.2GHz<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m:\u00a096 MB<\/p>\r\n

Bus\u00a0RAM h\u1ed7 tr\u1ee3:\u00a0DDR5<\/p>\r\n

M\u1ee9c ti\u00eau th\u1ee5 \u0111i\u1ec7n:\u00a0120W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5488_ryzen_7_9800x3d_sale_t9_2025_s2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5488_ryzen_7_9800x3d_sale_t9_2025_s2.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5488_ryzen_7_9800x3d_sale_t9_2025_s2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5488_ryzen_7_9800x3d_sale_t9_2025_s2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5488_ryzen_7_9800x3d_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5488_ryzen_7_9800x3d_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5488_ryzen_7_9800x3d_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5488_ryzen_7_9800x3d_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5488_ryzen_7_9800x3d_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5488_ryzen_7_9800x3d_ha1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/cpu-amd-ryzen-7-9800x3d", + "brand": { + "id": 3, + "brand_index": "amd", + "name": "AMD", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/amd.jpg", + "url": "\/brand\/amd" + }, + "visit": 5103, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU Ryzen 7 9800X3D ch\u1ec9 c\u00f2n<\/span><\/strong><\/span>\u00a0<\/span>10.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/span><\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU Ryzen 7 9800X3D khi mua k\u00e8m main\u00a0B650 tr\u1edf l\u00ean l\u00e0:\u00a012.290.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb\u00a0CPU Ryzen 7 9800X3D l\u00e0:\u00a013.290.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\u2b50\u00a0Gi\u00e1 khuy\u1ebfn m\u00e3i CPU Ryzen 7 9800X3D ch\u1ec9 c\u00f2n<\/span><\/strong><\/span>\u00a0<\/span>10.990.000\u0111<\/span>\u00a0\u00e1p d\u1ee5ng khi build PC t\u1ea1i Ho\u00e0ng H\u00e0 PC<\/span><\/strong><\/span><\/p>\r\n

\u2b50 Gi\u00e1\u00a0CPU Ryzen 7 9800X3D khi mua k\u00e8m main\u00a0B650 tr\u1edf l\u00ean l\u00e0:\u00a012.290.000\u0111<\/strong><\/span><\/span><\/p>\r\n

\u2b50 Gi\u00e1 b\u00e1n l\u1ebb\u00a0CPU Ryzen 7 9800X3D l\u00e0:\u00a013.290.000\u0111<\/span><\/strong><\/span><\/p>\r\n

\u2b50 L\u01afU \u00dd: Ch\u01b0\u01a1ng tr\u00ecnh kh\u00f4ng \u00e1p d\u1ee5ng c\u1ed9ng d\u1ed3n v\u1edbi c\u00e1c ch\u01b0\u01a1ng tr\u00ecnh kh\u00e1c<\/span><\/p>\r\n

\u2b50 Ch\u01b0\u01a1ng tr\u00ecnh \u00e1p d\u1ee5ng v\u1edbi kh\u00e1ch h\u00e0ng Build PC c\u00f3 \u0111\u1ee7 th\u00eam 7 linh ki\u1ec7n sau:\u00a0VGA,T\u1ea2N NHI\u1ec6T, MAIN, RAM, SSD, NGU\u1ed2N , V\u1ece CASE<\/span><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 117, + "catPath": ":117:108:2", + "name": "AMD Ryzen 9", + "url": "\/cpu-amd-ryzen-9" + } + ] + } + ] + }, + { + "id": 3, + "total": 11, + "list": [ + { + "id": 6493, + "productId": 6493, + "priceUnit": "chi\u1ebfc", + "marketPrice": 15000000, + "price": 14690000, + "price_off": 2, + "currency": "vnd", + "sale_rules": { + "price": 14690000, + "normal_price": 14690000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-04 17:04:22", + "warranty": "36 th\u00e1ng", + "productName": "Mainboard ASUS ROG STRIX X870E-H GAMING WIFI7 HATSUNE MIKU EDITION (AMD X870E, Socket AM5, ATX, 4 khe RAM DDR5)", + "productSummary": "

16(80A) + 2(80A) + 1(80A) Power Stages<\/strong><\/p>\r\n

Chipset:\u00a0AMD X870E<\/p>\r\n

Socket: AM5<\/p>\r\n

S\u1ed1 khe RAM:\u00a04 khe DDR5<\/p>\r\n

K\u00edch th\u01b0\u1edbc: ATX<\/p>\r\n

T\u00edch h\u1ee3p s\u1eb5n\u00a0Wi-Fi 7 v\u00e0\u00a0Bluetooth\u00a0v5.4<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6493_x870e_h_gaming_wifi7_hatsune_miku_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6493_x870e_h_gaming_wifi7_hatsune_miku_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6493_x870e_h_gaming_wifi7_hatsune_miku_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6493_x870e_h_gaming_wifi7_hatsune_miku_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6493_x870e_h_gaming_wifi7_hatsune_miku_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6493_x870e_h_gaming_wifi7_hatsune_miku_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6493_x870e_h_gaming_wifi7_hatsune_miku_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6493_x870e_h_gaming_wifi7_hatsune_miku_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6493_x870e_h_gaming_wifi7_hatsune_miku_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6493_x870e_h_gaming_wifi7_hatsune_miku_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6493_x870e_h_gaming_wifi7_hatsune_miku_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6493_x870e_h_gaming_wifi7_hatsune_miku_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6493_x870e_h_gaming_wifi7_hatsune_miku_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6493_x870e_h_gaming_wifi7_hatsune_miku_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6493_x870e_h_gaming_wifi7_hatsune_miku_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6493_x870e_h_gaming_wifi7_hatsune_miku_ha7.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/mainboard-asus-rog-strix-x870e-h-gaming-wifi7-hatsune-miku", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 178, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 257, + "catPath": ":257:124:3", + "name": "Mainboard AMD X870", + "url": "\/mainboard-x870" + }, + { + "id": 3, + "catPath": ":3", + "name": "Mainboard - Bo M\u1ea1ch Ch\u1ee7", + "url": "\/main-bo-mach-chu" + }, + { + "id": 123, + "catPath": ":123:3", + "name": "Mainboard Intel", + "url": "\/mainboard-intel" + } + ] + }, + { + "id": 6221, + "productId": 6221, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 38990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 38990000, + "normal_price": 38990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-07-22 14:19:16", + "warranty": "36 th\u00e1ng", + "productName": "Mainboard GIGABYTE Z890 AORUS XTREME AI TOP (Intel Z890, Socket 1851, E-ATX, 4 khe RAM DDR5)", + "productSummary": "

Training your own AI on your desk<\/p>\r\n

Supports Intel\u00ae Core\u2122 Ultra processors (Series 2)<\/p>\r\n

Digital twin 22+1+2 phases VRM solution<\/p>\r\n

Ultimate Scalability\u200b :<\/strong>\u00a02*PCIe 5.0 x16 slots for Multi-GPU and 4*PCIe 5.0\/4.0 x4 M.2 slots<\/p>\r\n

Next-gen Connectivity:<\/strong>\u00a0Dual THUNDERBOLT\u2122 5 and THUNDERBOLT\u2122 4 Type-C with DP-Alt<\/p>\r\n

Blazing Fast Networks:<\/strong>\u00a0Dual 10GbE LAN & Wi-Fi 7 & directional Ultra-high gain antenna with ARGB<\/p>\r\n

D5 Bionic Corsa for Infinite Memory Performance<\/p>\r\n

AORUS AI SNATCH:<\/strong>\u00a0Auto-Overclocking Software by AI models<\/p>\r\n

AI Perfdrive:<\/strong>\u00a0Provides optimal and customized BIOS preset profile for users<\/p>\r\n

Premium Compatibility:<\/strong>\u00a04*DDR5 with XMP Memory Module Support<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6221_z890_aorus_xtreme_ai_top_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6221_z890_aorus_xtreme_ai_top_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6221_z890_aorus_xtreme_ai_top_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6221_z890_aorus_xtreme_ai_top_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6221_z890_aorus_xtreme_ai_top_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6221_z890_aorus_xtreme_ai_top_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6221_z890_aorus_xtreme_ai_top_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6221_z890_aorus_xtreme_ai_top_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6221_z890_aorus_xtreme_ai_top_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6221_z890_aorus_xtreme_ai_top_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6221_z890_aorus_xtreme_ai_top_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6221_z890_aorus_xtreme_ai_top_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6221_z890_aorus_xtreme_ai_top_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6221_z890_aorus_xtreme_ai_top_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/mainboard-gigabyte-z890-aorus-xtreme-ai-top", + "brand": { + "id": 6, + "brand_index": "gigabyte", + "name": "GIGABYTE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/gigabyte.jpg", + "url": "\/brand\/gigabyte" + }, + "visit": 338, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 258, + "catPath": ":258:123:3", + "name": "Mainboard Intel Z890", + "url": "\/mainboard-intel-z890" + }, + { + "id": 3, + "catPath": ":3", + "name": "Mainboard - Bo M\u1ea1ch Ch\u1ee7", + "url": "\/main-bo-mach-chu" + }, + { + "id": 123, + "catPath": ":123:3", + "name": "Mainboard Intel", + "url": "\/mainboard-intel" + } + ] + }, + { + "id": 6218, + "productId": 6218, + "priceUnit": "chi\u1ebfc", + "marketPrice": 13000000, + "price": 12490000, + "price_off": 4, + "currency": "vnd", + "sale_rules": { + "price": 12490000, + "normal_price": 12490000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-07-21 13:34:23", + "warranty": "36 th\u00e1ng", + "productName": "Mainboard Colorful iGame Z890 ULTRA V20 (Intel Z890, Socket LGA1851, ATX, 4 khe RAM DDR5)", + "productSummary": "

Supports Intel\u00ae Core\u2122 Ultra processors that fit the LGA 1851<\/p>\r\n

Supports dual-channel DDR5-8800(OC) MHz memory<\/p>\r\n

Adopts 20+1+1+1 phase enhanced power design (Dr MOS 90A)<\/p>\r\n

Provides 1 PCIe 5.0 x4 M.2 SSD slot and 4 PCIe 4.0 x4 M.2 SSD slots<\/p>\r\n

Provides 2 rear USB4 40Gbps Type-C high-speed interfaces (supports video output, up to 4K 60Hz resolution)<\/p>\r\n

Provides 1 front USB 3.2 Gen 2\u00d72 20Gbps Type-C high-speed port (supports PD3.0 @30W)<\/p>\r\n

Equipped with Realtek 2.5G high-speed wired network card and BE200 WiFi 7 wireless network card, supporting Bluetooth 5.4<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6218_igame_z890_ultra_v20_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6218_igame_z890_ultra_v20_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6218_igame_z890_ultra_v20_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6218_igame_z890_ultra_v20_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6218_igame_z890_ultra_v20_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6218_igame_z890_ultra_v20_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6218_igame_z890_ultra_v20_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6218_igame_z890_ultra_v20_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6218_igame_z890_ultra_v20_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6218_igame_z890_ultra_v20_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6218_igame_z890_ultra_v20_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6218_igame_z890_ultra_v20_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/mainboard-colorful-igame-z890-ultra-v20", + "brand": { + "id": 72, + "brand_index": "colorful", + "name": "COLORFUL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/colorful.jpg", + "url": "\/brand\/colorful" + }, + "visit": 220, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 258, + "catPath": ":258:123:3", + "name": "Mainboard Intel Z890", + "url": "\/mainboard-intel-z890" + }, + { + "id": 3, + "catPath": ":3", + "name": "Mainboard - Bo M\u1ea1ch Ch\u1ee7", + "url": "\/main-bo-mach-chu" + }, + { + "id": 123, + "catPath": ":123:3", + "name": "Mainboard Intel", + "url": "\/mainboard-intel" + } + ] + }, + { + "id": 6217, + "productId": 6217, + "priceUnit": "chi\u1ebfc", + "marketPrice": 15000000, + "price": 13890000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 13890000, + "normal_price": 13890000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-07-21 11:01:02", + "warranty": "36 th\u00e1ng", + "productName": "Mainboard Colorful iGame Z890 VULCAN W V20 (Intel Z890, Socket LGA1851, E-ATX, 4 khe RAM DDR5)", + "productSummary": "

Supports Intel\u00ae Core\u2122 Ultra processors that fit the LGA 1851<\/p>\r\n

Supports dual-channel DDR5-8800(OC) MHz memory<\/p>\r\n

Adopt 20+1+1+1 phase enhanced power design (Dr MOS 105A)<\/p>\r\n

Provides 1 PCIe 5.0 x4 M.2 SSD slot and 4 PCIe 4.0 x4 M.2 SSD slots<\/p>\r\n

Provides 1 front USB 3.2 Gen 2\u00d72 20Gbps Type-C high-speed interface (supports PD3.0 @60W) and 2 rear USB4 40Gbps Type-C interfaces (supports video output, up to 4K 60Hz resolution)<\/p>\r\n

Equipped with Realtek 2.5G and 5G dual-speed wired network card and BE200 WiFi 7 wireless network card, supporting Bluetooth 5.4<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6217_igame_z890_vulcan_w_v20_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6217_igame_z890_vulcan_w_v20_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6217_igame_z890_vulcan_w_v20_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6217_igame_z890_vulcan_w_v20_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6217_igame_z890_vulcan_w_v20_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6217_igame_z890_vulcan_w_v20_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6217_igame_z890_vulcan_w_v20_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6217_igame_z890_vulcan_w_v20_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6217_igame_z890_vulcan_w_v20_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6217_igame_z890_vulcan_w_v20_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6217_igame_z890_vulcan_w_v20_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6217_igame_z890_vulcan_w_v20_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/mainboard-colorful-igame-z890-vulcan-w-v20", + "brand": { + "id": 72, + "brand_index": "colorful", + "name": "COLORFUL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/colorful.jpg", + "url": "\/brand\/colorful" + }, + "visit": 232, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 258, + "catPath": ":258:123:3", + "name": "Mainboard Intel Z890", + "url": "\/mainboard-intel-z890" + }, + { + "id": 3, + "catPath": ":3", + "name": "Mainboard - Bo M\u1ea1ch Ch\u1ee7", + "url": "\/main-bo-mach-chu" + }, + { + "id": 123, + "catPath": ":123:3", + "name": "Mainboard Intel", + "url": "\/mainboard-intel" + } + ] + }, + { + "id": 6216, + "productId": 6216, + "priceUnit": "chi\u1ebfc", + "marketPrice": 15000000, + "price": 13990000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 13990000, + "normal_price": 13990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-07-21 10:32:06", + "warranty": "36 th\u00e1ng", + "productName": "Mainboard Colorful iGame Z890 VULCAN X V20 (Intel Z890, Socket LGA1851, E-ATX, 4 khe RAM DDR5)", + "productSummary": "

Supports Intel\u00ae Core\u2122 Ultra processors that fit the LGA 1851<\/p>\r\n

Supports dual-channel DDR5-8800(OC) MHz memory<\/p>\r\n

Adopt 20+1+1+1 phase enhanced power design (Dr MOS 105A)<\/p>\r\n

Provides 1 PCIe 5.0 x4 M.2 SSD slot and 4 PCIe 4.0 x4 M.2 SSD slots<\/p>\r\n

Provides 1 front USB 3.2 Gen 2\u00d72 20Gbps Type-C high-speed interface (supports PD3.0 @60W) and 2 rear USB4 40Gbps Type-C interfaces (supports video output, up to 4K 60Hz resolution)<\/p>\r\n

Equipped with Realtek 2.5G and 5G dual-speed wired network card and BE200 WiFi 7 wireless network card, supporting Bluetooth 5.4<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6216_igame_z890_vulcan_x_v20_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6216_igame_z890_vulcan_x_v20_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6216_igame_z890_vulcan_x_v20_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6216_igame_z890_vulcan_x_v20_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6216_igame_z890_vulcan_x_v20_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6216_igame_z890_vulcan_x_v20_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6216_igame_z890_vulcan_x_v20_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6216_igame_z890_vulcan_x_v20_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6216_igame_z890_vulcan_x_v20_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6216_igame_z890_vulcan_x_v20_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6216_igame_z890_vulcan_x_v20_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6216_igame_z890_vulcan_x_v20_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/mainboard-colorful-igame-z890-vulcan-x-v20", + "brand": { + "id": 72, + "brand_index": "colorful", + "name": "COLORFUL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/colorful.jpg", + "url": "\/brand\/colorful" + }, + "visit": 202, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 258, + "catPath": ":258:123:3", + "name": "Mainboard Intel Z890", + "url": "\/mainboard-intel-z890" + }, + { + "id": 3, + "catPath": ":3", + "name": "Mainboard - Bo M\u1ea1ch Ch\u1ee7", + "url": "\/main-bo-mach-chu" + }, + { + "id": 123, + "catPath": ":123:3", + "name": "Mainboard Intel", + "url": "\/mainboard-intel" + } + ] + }, + { + "id": 5441, + "productId": 5441, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 27290000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 27290000, + "normal_price": 27290000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2024-12-11 09:00:02", + "warranty": "36 th\u00e1ng", + "productName": "Mainboard ASROCK Z890 TAICHI AQUA (Intel Z890, Socket 1851, E-ATX, 4 khe RAM DDR5)", + "productSummary": "

Supports Intel Core\u2122 Ultra Processors (Series 2) (LGA1851)<\/p>\r\n

28+1+2+1+1 Power Phase, 110A SPS for VCore<\/p>\r\n

4 x DDR5 DIMMs<\/p>\r\n

Supports Dual Channel, up to 9600+ (OC)<\/p>\r\n

2 PCIe 5.0 x16, 1 PCIe 4.0 x16<\/p>\r\n

Graphics Output Options: 2 Thunderbolt\u2122 4 Type-C<\/p>\r\n

Realtek ALC4082 5.1 CH HD Audio Codec,<\/p>\r\n

ESS SABRE9219 DAC, WIMA Audio Cap, Nahimic Audio<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5441_asrock_z890_aqua_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5441_asrock_z890_aqua_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5441_asrock_z890_aqua_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5441_asrock_z890_aqua_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5441_asrock_z890_aqua_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5441_asrock_z890_aqua_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5441_asrock_z890_aqua_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5441_asrock_z890_aqua_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5441_asrock_z890_aqua_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5441_asrock_z890_aqua_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5441_asrock_z890_aqua_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5441_asrock_z890_aqua_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5441_asrock_z890_aqua_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5441_asrock_z890_aqua_ha4.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/mainboard-asrock-z890-taichi-aqua", + "brand": { + "id": 12, + "brand_index": "asrock", + "name": "ASROCK", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asrock.jpg", + "url": "\/brand\/asrock" + }, + "visit": 956, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 258, + "catPath": ":258:123:3", + "name": "Mainboard Intel Z890", + "url": "\/mainboard-intel-z890" + }, + { + "id": 3, + "catPath": ":3", + "name": "Mainboard - Bo M\u1ea1ch Ch\u1ee7", + "url": "\/main-bo-mach-chu" + }, + { + "id": 123, + "catPath": ":123:3", + "name": "Mainboard Intel", + "url": "\/mainboard-intel" + } + ] + }, + { + "id": 5432, + "productId": 5432, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 15990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 15990000, + "normal_price": 15990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2024-10-28 09:56:07", + "warranty": "36 th\u00e1ng", + "productName": "Mainboard ASROCK Z890 TAICHI (Intel Z890, Socket 1851, ATX, 4 khe RAM DDR5)", + "productSummary": "

Supports Intel\u00ae\u00a0Core\u2122 Ultra Processors (Series 2) (LGA1851)<\/p>\r\n

20+1+2+1+1 Power Phase, 110A SPS for VCore<\/p>\r\n

4 x DDR5 DIMMs<\/p>\r\n

Supports Dual Channel, up to 9600+ (OC)<\/p>\r\n

1 PCIe 5.0 x16, 1 PCIe 4.0 x16<\/p>\r\n

Graphics Output Options: 1 HDMI, 2 Thunderbolt\u2122 4 Type-C<\/p>\r\n

802.11be Wi-Fi 7 + Bluetooth<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5432_z890_taichi_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5432_z890_taichi_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5432_z890_taichi_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5432_z890_taichi_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5432_z890_taichi_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5432_z890_taichi_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5432_z890_taichi_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5432_z890_taichi_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5432_z890_taichi_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5432_z890_taichi_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5432_z890_taichi_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5432_z890_taichi_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/mainboard-asrock-z890-taichi", + "brand": { + "id": 12, + "brand_index": "asrock", + "name": "ASROCK", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asrock.jpg", + "url": "\/brand\/asrock" + }, + "visit": 1138, + "rating": 5, + "reviewCount": 2, + "review": { + "rate": 5, + "total": 2 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 258, + "catPath": ":258:123:3", + "name": "Mainboard Intel Z890", + "url": "\/mainboard-intel-z890" + }, + { + "id": 3, + "catPath": ":3", + "name": "Mainboard - Bo M\u1ea1ch Ch\u1ee7", + "url": "\/main-bo-mach-chu" + }, + { + "id": 123, + "catPath": ":123:3", + "name": "Mainboard Intel", + "url": "\/mainboard-intel" + } + ] + }, + { + "id": 6227, + "productId": 6227, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 31990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 31990000, + "normal_price": 31990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-07-23 14:03:58", + "warranty": "36 th\u00e1ng", + "productName": "Mainboard ASUS ROG CROSSHAIR X870E EXTREME (AMD X870E, Socket AM5, E-ATX, 4 khe RAM DDR5)", + "productSummary": "

Advanced AI PC-ready<\/p>\r\n

20+2+2 power stages, Dynamic OC Switcher, Core Flex<\/p>\r\n

DDR5 slots with AEMP & NitroPath DRAM Technology<\/p>\r\n

Wi-Fi 7 with ASUS WiFi Q-Antenna<\/p>\r\n

3x PCIe\u00ae 5.0 NVMe\u00ae SSD slots onboard, 2x PCIe 4.0 M.2 slots on ROG Q-DIMM.2, SlimSAS connector, PCIe\u00ae 5.0 x16 SafeSlots with PCIe\u00ae Slot Q-Release Slim<\/p>\r\n

2x USB4\u00ae ports, USB 20Gbps Type-C\u00ae front-panel connector with Quick Charge 4+ up to 60W and USB Wattage Watcher<\/p>\r\n

ASUS AI Advisor, AI Overclocking, AI Cooling II, AI Networking II and Full-Color 5\u201d LCD Screen<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6227_rog_crosshair_x870e_extreme_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6227_rog_crosshair_x870e_extreme_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6227_rog_crosshair_x870e_extreme_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6227_rog_crosshair_x870e_extreme_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6227_rog_crosshair_x870e_extreme_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6227_rog_crosshair_x870e_extreme_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6227_rog_crosshair_x870e_extreme_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6227_rog_crosshair_x870e_extreme_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6227_rog_crosshair_x870e_extreme_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6227_rog_crosshair_x870e_extreme_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6227_rog_crosshair_x870e_extreme_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6227_rog_crosshair_x870e_extreme_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6227_rog_crosshair_x870e_extreme_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6227_rog_crosshair_x870e_extreme_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/mainboard-asus-rog-crosshair-x870e-extreme", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 400, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 257, + "catPath": ":257:124:3", + "name": "Mainboard AMD X870", + "url": "\/mainboard-x870" + }, + { + "id": 3, + "catPath": ":3", + "name": "Mainboard - Bo M\u1ea1ch Ch\u1ee7", + "url": "\/main-bo-mach-chu" + }, + { + "id": 124, + "catPath": ":124:3", + "name": "Mainboard AMD", + "url": "\/mainboard-amd" + } + ] + }, + { + "id": 6228, + "productId": 6228, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 12490000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 12490000, + "normal_price": 12490000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-07-23 14:35:49", + "warranty": "36 th\u00e1ng", + "productName": "Mainboard ASUS ROG STRIX X870-A GAMING WIFI (AMD X870, Socket AM5, ATX, 4 khe RAM DDR5)", + "productSummary": "

16+2+2 power stages, Dynamic OC Switcher, Core Flex<\/p>\r\n

DDR5 support with AEMP, WiFi 7 with ASUS WiFi Q-Antenna<\/p>\r\n

4x M.2 slots, PCIe\u00ae 5.0 x16 SafeSlots with PCIe Slot Q-Release Slim<\/p>\r\n

2x USB4\u00ae ports, USB 10Gbps Type-C\u00ae with PD 3.0 up to 30W<\/p>\r\n

AI Overclocking, AI Cooling II, AI Networking II, and Aura Sync RGB lighting.<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6228_rog_strix_x870_a_gaming_wifi_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6228_rog_strix_x870_a_gaming_wifi_ha6.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6228_rog_strix_x870_a_gaming_wifi_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6228_rog_strix_x870_a_gaming_wifi_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6228_rog_strix_x870_a_gaming_wifi_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6228_rog_strix_x870_a_gaming_wifi_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6228_rog_strix_x870_a_gaming_wifi_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6228_rog_strix_x870_a_gaming_wifi_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6228_rog_strix_x870_a_gaming_wifi_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6228_rog_strix_x870_a_gaming_wifi_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6228_rog_strix_x870_a_gaming_wifi_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6228_rog_strix_x870_a_gaming_wifi_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6228_rog_strix_x870_a_gaming_wifi_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6228_rog_strix_x870_a_gaming_wifi_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/mainboard-asus-rog-strix-x870-a-gaming-wifi", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 301, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 257, + "catPath": ":257:124:3", + "name": "Mainboard AMD X870", + "url": "\/mainboard-x870" + }, + { + "id": 3, + "catPath": ":3", + "name": "Mainboard - Bo M\u1ea1ch Ch\u1ee7", + "url": "\/main-bo-mach-chu" + }, + { + "id": 123, + "catPath": ":123:3", + "name": "Mainboard Intel", + "url": "\/mainboard-intel" + } + ] + }, + { + "id": 5355, + "productId": 5355, + "priceUnit": "chi\u1ebfc", + "marketPrice": 14000000, + "price": 13500000, + "price_off": 4, + "currency": "vnd", + "sale_rules": { + "price": 13500000, + "normal_price": 13500000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-06-30 14:01:11", + "warranty": "36 th\u00e1ng", + "productName": "Mainboard MSI MPG X870E CARBON WIFI (AMD X870E, Socket AM5, ATX, 4 khe RAM DDR5)", + "productSummary": "

Supports AMD Ryzen\u2122 9000 \/ 8000 \/ 7000 Series Desktop Processors<\/p>\r\n

Supports DDR5 Memory, Dual Channel DDR5 8400+ MT\/s (OC)<\/p>\r\n

Ultra Performance: 18+2+1 Duet Rail Power System, dual 8-pin CPU power connectors, Core Boost, Memory Boost, 8-layer PCB made by 2oz thickened copper and server-grade level material<\/p>\r\n

Frozr Guard: Enlarged heatsink with heat-pipe, MOSFET thermal pads rated for 7W\/mk, additional choke thermal pads and M.2 Shield Frozr are built for high performance system and non-stop gaming experience<\/p>\r\n

EZ DIY: EZ PCIe Release, EZ M.2 Shield Frozr II, EZ M.2 Clip II and EZ Antenna<\/p>\r\n

Lightning Fast Game experience: PCIe 5.0 slot, Lightning Gen 5 x4 M.2<\/p>\r\n

Ultra Connect: USB4 and 5G LAN + 2.5G LAN with Wi-Fi 7 Solution - The latest solution for professional and multimedia use, delivering secure, stable, and high-speed networking and data transmission<\/p>\r\n

Audio Boost 5: Reward your ears with studio grade sound quality for the most immersive gaming experience<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5355_msi_mpg_x870e_carbon_wifi_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5355_msi_mpg_x870e_carbon_wifi_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5355_msi_mpg_x870e_carbon_wifi_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5355_msi_mpg_x870e_carbon_wifi_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5355_msi_mpg_x870e_carbon_wifi_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5355_msi_mpg_x870e_carbon_wifi_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5355_msi_mpg_x870e_carbon_wifi_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5355_msi_mpg_x870e_carbon_wifi_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5355_msi_mpg_x870e_carbon_wifi_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5355_msi_mpg_x870e_carbon_wifi_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5355_msi_mpg_x870e_carbon_wifi_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5355_msi_mpg_x870e_carbon_wifi_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5355_msi_mpg_x870e_carbon_wifi_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5355_msi_mpg_x870e_carbon_wifi_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/mainboard-msi-mpg-x870e-carbon-wifi", + "brand": { + "id": 7, + "brand_index": "msi", + "name": "MSI", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/msi.jpg", + "url": "\/brand\/msi" + }, + "visit": 1993, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 257, + "catPath": ":257:124:3", + "name": "Mainboard AMD X870", + "url": "\/mainboard-x870" + }, + { + "id": 3, + "catPath": ":3", + "name": "Mainboard - Bo M\u1ea1ch Ch\u1ee7", + "url": "\/main-bo-mach-chu" + }, + { + "id": 124, + "catPath": ":124:3", + "name": "Mainboard AMD", + "url": "\/mainboard-amd" + } + ] + } + ] + }, + { + "id" : 6, + "total": 6, + "list": [ + { + "id": 5701, + "productId": 5701, + "priceUnit": "chi\u1ebfc", + "marketPrice": 48000000, + "price": 43999000, + "price_off": 8, + "currency": "vnd", + "sale_rules": { + "price": 43999000, + "normal_price": 43999000, + "min_purchase": 1, + "max_purchase": 0, + "remain_quantity": 0, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-20 08:16:43", + "warranty": "36 Th\u00e1ng", + "productName": "VGA COLORFUL iGAME GEFORCE RTX 5080 NEPTUNE OC 16GB-V (GDDR7, 256-bit, HDMI +DP, 1x16-pin)", + "productSummary": "

Dung l\u01b0\u1ee3ng b\u1ed9 nh\u1edb: 16GB GDDR7<\/p>\r\n

CUDA Cores:\u00a010752<\/p>\r\n

Core Clock:\u00a0Base\uff1a2295Mhz\uff1bBoost:2617Mhz<\/p>\r\n

K\u1ebft n\u1ed1i: 3x DisplayPort 2.1b, 1x\u00a0HDMI 2.1b<\/p>\r\n

Ngu\u1ed3n y\u00eau c\u1ea7u:\u00a0850W<\/p>\r\n

Fans Type: Liquid-cooling<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5701_rtx_5080_neptune_oc_16gb_v_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5701_rtx_5080_neptune_oc_16gb_v_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5701_rtx_5080_neptune_oc_16gb_v_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5701_rtx_5080_neptune_oc_16gb_v_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5701_rtx_5080_neptune_oc_16gb_v_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5701_rtx_5080_neptune_oc_16gb_v_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5701_rtx_5080_neptune_oc_16gb_v_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5701_rtx_5080_neptune_oc_16gb_v_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5701_rtx_5080_neptune_oc_16gb_v_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5701_rtx_5080_neptune_oc_16gb_v_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5701_rtx_5080_neptune_oc_16gb_v_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5701_rtx_5080_neptune_oc_16gb_v_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5701_rtx_5080_neptune_oc_16gb_v_ha.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5701_rtx_5080_neptune_oc_16gb_v_ha.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5701_rtx_5080_neptune_oc_16gb_v_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5701_rtx_5080_neptune_oc_16gb_v_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/vga-colorful-igame-geforce-rtx-neptune-oc-16gb-v", + "brand": { + "id": 72, + "brand_index": "colorful", + "name": "COLORFUL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/colorful.jpg", + "url": "\/brand\/colorful" + }, + "visit": 3275, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 0, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 264, + "catPath": ":264:40:6", + "name": "NVIDIA RTX 5080", + "url": "\/nvidia-rtx-5080" + }, + { + "id": 6, + "catPath": ":6", + "name": "VGA - Card M\u00e0n H\u00ecnh", + "url": "\/vga-card-man-hinh" + }, + { + "id": 40, + "catPath": ":40:6", + "name": "VGA NVIDIA", + "url": "\/vga-nvidia" + } + ] + }, + { + "id": 5699, + "productId": 5699, + "priceUnit": "chi\u1ebfc", + "marketPrice": 40000000, + "price": 37990000, + "price_off": 5, + "currency": "vnd", + "sale_rules": { + "price": 37990000, + "normal_price": 37990000, + "min_purchase": 1, + "max_purchase": 0, + "remain_quantity": 0, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-10-17 11:03:02", + "warranty": "36 Th\u00e1ng", + "productName": "VGA COLORFUL iGAME GEFORCE RTX 5080 ADVANCED OC 16GB-V (GDDR7, 256-bit, HDMI +DP, 1x16-pin)", + "productSummary": "

Dung l\u01b0\u1ee3ng b\u1ed9 nh\u1edb: 16GB GDDR7<\/p>\r\n

CUDA Cores:\u00a010752<\/p>\r\n

Core Clock:\u00a0Base\uff1a2295Mhz\uff1bBoost:2617Mhz<\/p>\r\n

K\u1ebft n\u1ed1i: 3x DisplayPort 2.1b, 1x\u00a0HDMI 2.1b<\/p>\r\n

Ngu\u1ed3n y\u00eau c\u1ea7u:\u00a0850W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5699_rtx_5080_advanced_oc_16gb_v_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5699_rtx_5080_advanced_oc_16gb_v_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5699_rtx_5080_advanced_oc_16gb_v_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5699_rtx_5080_advanced_oc_16gb_v_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5699_rtx_5080_advanced_oc_16gb_v_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5699_rtx_5080_advanced_oc_16gb_v_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5699_rtx_5080_advanced_oc_16gb_v_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5699_rtx_5080_advanced_oc_16gb_v_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5699_rtx_5080_advanced_oc_16gb_v_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5699_rtx_5080_advanced_oc_16gb_v_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5699_rtx_5080_advanced_oc_16gb_v_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5699_rtx_5080_advanced_oc_16gb_v_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5699_rtx_5080_advanced_oc_16gb_v_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5699_rtx_5080_advanced_oc_16gb_v_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/vga-colorful-igame-geforce-rtx-5080-advanced-oc-16gb-v", + "brand": { + "id": 72, + "brand_index": "colorful", + "name": "COLORFUL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/colorful.jpg", + "url": "\/brand\/colorful" + }, + "visit": 889, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 0, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 264, + "catPath": ":264:40:6", + "name": "NVIDIA RTX 5080", + "url": "\/nvidia-rtx-5080" + }, + { + "id": 6, + "catPath": ":6", + "name": "VGA - Card M\u00e0n H\u00ecnh", + "url": "\/vga-card-man-hinh" + }, + { + "id": 40, + "catPath": ":40:6", + "name": "VGA NVIDIA", + "url": "\/vga-nvidia" + } + ] + }, + { + "id": 5885, + "productId": 5885, + "priceUnit": "chi\u1ebfc", + "marketPrice": 120000000, + "price": 99000000, + "price_off": 18, + "currency": "vnd", + "sale_rules": { + "price": 99000000, + "normal_price": 99000000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2026-01-10 20:32:49", + "warranty": "36 th\u00e1ng", + "productName": "VGA MSI GEFORCE RTX 5090 32G GAMING TRIO OC (GDDR7, 512-bit, HDMI+DP, 1x16-pin)", + "productSummary": "

Dung l\u01b0\u1ee3ng b\u1ed9 nh\u1edb: 32GB GDDR7<\/p>\r\n

CUDA Cores:\u00a021760<\/p>\r\n

Extreme Performance: 2497 MHz (MSI Center)<\/p>\r\n

Boost: 2482 MHz (GAMING & SILENT Mode)<\/p>\r\n

K\u1ebft n\u1ed1i: 3x DisplayPort 2.1b, 1x\u00a0HDMI 2.1b<\/p>\r\n

Ngu\u1ed3n y\u00eau c\u1ea7u:\u00a01000W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5885_rtx_5090_32g_gaming_trio_oc_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5885_rtx_5090_32g_gaming_trio_oc_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5885_rtx_5090_32g_gaming_trio_oc_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5885_rtx_5090_32g_gaming_trio_oc_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5885_rtx_5090_32g_gaming_trio_oc_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5885_rtx_5090_32g_gaming_trio_oc_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5885_rtx_5090_32g_gaming_trio_oc_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5885_rtx_5090_32g_gaming_trio_oc_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5885_rtx_5090_32g_gaming_trio_oc_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5885_rtx_5090_32g_gaming_trio_oc_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5885_rtx_5090_32g_gaming_trio_oc_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5885_rtx_5090_32g_gaming_trio_oc_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/vga-msi-geforce-rtx-5090-32g-gaming-trio-oc", + "brand": { + "id": 7, + "brand_index": "msi", + "name": "MSI", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/msi.jpg", + "url": "\/brand\/msi" + }, + "visit": 1163, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 265, + "catPath": ":265:40:6", + "name": "NVIDIA RTX 5090", + "url": "\/nvidia-rtx-5090" + }, + { + "id": 6, + "catPath": ":6", + "name": "VGA - Card M\u00e0n H\u00ecnh", + "url": "\/vga-card-man-hinh" + }, + { + "id": 40, + "catPath": ":40:6", + "name": "VGA NVIDIA", + "url": "\/vga-nvidia" + } + ] + }, + { + "id": 5698, + "productId": 5698, + "priceUnit": "chi\u1ebfc", + "marketPrice": 120000000, + "price": 109990000, + "price_off": 8, + "currency": "vnd", + "sale_rules": { + "price": 109990000, + "normal_price": 109990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2026-01-12 09:56:21", + "warranty": "36 th\u00e1ng", + "productName": "VGA GIGABYTE AORUS GEFORCE RTX 5090 XTREME WATERFORCE 32G (GDDR7, 512-bit, HDMI +DP, 1x16-pin)", + "productSummary": "

Dung l\u01b0\u1ee3ng b\u1ed9 nh\u1edb: 32GB GDDR7<\/p>\r\n

CUDA Cores:\u00a021760<\/p>\r\n

Core Clock:\u00a02655 MHz (Reference card : 2407MHz)<\/p>\r\n

K\u1ebft n\u1ed1i: 3x DisplayPort 2.1b, 1x\u00a0HDMI 2.1b<\/p>\r\n

Ngu\u1ed3n y\u00eau c\u1ea7u:\u00a01000W<\/p>\r\n

Radiator:\u00a0360mm aluminum radiator<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5698_rtx_5090_xtreme_waterforce_32g_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5698_rtx_5090_xtreme_waterforce_32g_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5698_rtx_5090_xtreme_waterforce_32g_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5698_rtx_5090_xtreme_waterforce_32g_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5698_rtx_5090_xtreme_waterforce_32g_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5698_rtx_5090_xtreme_waterforce_32g_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5698_rtx_5090_xtreme_waterforce_32g_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5698_rtx_5090_xtreme_waterforce_32g_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5698_rtx_5090_xtreme_waterforce_32g_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5698_rtx_5090_xtreme_waterforce_32g_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5698_rtx_5090_xtreme_waterforce_32g_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5698_rtx_5090_xtreme_waterforce_32g_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5698_rtx_5090_xtreme_waterforce_32g_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5698_rtx_5090_xtreme_waterforce_32g_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5698_rtx_5090_xtreme_waterforce_32g_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5698_rtx_5090_xtreme_waterforce_32g_ha4.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/vga-gigabyte-aorus-geforce-rtx-5090-xtreme-waterforce-32g", + "brand": { + "id": 6, + "brand_index": "gigabyte", + "name": "GIGABYTE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/gigabyte.jpg", + "url": "\/brand\/gigabyte" + }, + "visit": 3595, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 265, + "catPath": ":265:40:6", + "name": "NVIDIA RTX 5090", + "url": "\/nvidia-rtx-5090" + }, + { + "id": 6, + "catPath": ":6", + "name": "VGA - Card M\u00e0n H\u00ecnh", + "url": "\/vga-card-man-hinh" + }, + { + "id": 40, + "catPath": ":40:6", + "name": "VGA NVIDIA", + "url": "\/vga-nvidia" + } + ] + }, + { + "id": 5695, + "productId": 5695, + "priceUnit": "chi\u1ebfc", + "marketPrice": 110000000, + "price": 106000000, + "price_off": 4, + "currency": "vnd", + "sale_rules": { + "price": 106000000, + "normal_price": 106000000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2026-01-12 09:54:31", + "warranty": "36 th\u00e1ng", + "productName": "VGA GIGABYTE AORUS GEFORCE RTX 5090 MASTER 32G (GDDR7, 512-bit, HDMI +DP, 1x16-pin)", + "productSummary": "

Dung l\u01b0\u1ee3ng b\u1ed9 nh\u1edb: 32GB GDDR7<\/p>\r\n

CUDA Cores:\u00a021760<\/p>\r\n

Core Clock:\u00a02655 MHz (Reference card : 2407MHz)<\/p>\r\n

K\u1ebft n\u1ed1i: 3x DisplayPort 2.1b, 1x\u00a0HDMI 2.1b<\/p>\r\n

Ngu\u1ed3n y\u00eau c\u1ea7u:\u00a01000W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5695_aorus_geforce_rtx_5090_master_32g_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5695_aorus_geforce_rtx_5090_master_32g_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5695_aorus_geforce_rtx_5090_master_32g_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5695_aorus_geforce_rtx_5090_master_32g_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5695_aorus_geforce_rtx_5090_master_32g_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5695_aorus_geforce_rtx_5090_master_32g_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5695_aorus_geforce_rtx_5090_master_32g_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5695_aorus_geforce_rtx_5090_master_32g_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5695_aorus_geforce_rtx_5090_master_32g_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5695_aorus_geforce_rtx_5090_master_32g_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5695_aorus_geforce_rtx_5090_master_32g_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5695_aorus_geforce_rtx_5090_master_32g_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5695_aorus_geforce_rtx_5090_master_32g_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5695_aorus_geforce_rtx_5090_master_32g_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5695_aorus_geforce_rtx_5090_master_32g_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5695_aorus_geforce_rtx_5090_master_32g_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/vga-gigabyte-aorus-geforce-rtx-5090-master-32g", + "brand": { + "id": 6, + "brand_index": "gigabyte", + "name": "GIGABYTE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/gigabyte.jpg", + "url": "\/brand\/gigabyte" + }, + "visit": 1559, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 265, + "catPath": ":265:40:6", + "name": "NVIDIA RTX 5090", + "url": "\/nvidia-rtx-5090" + }, + { + "id": 6, + "catPath": ":6", + "name": "VGA - Card M\u00e0n H\u00ecnh", + "url": "\/vga-card-man-hinh" + }, + { + "id": 40, + "catPath": ":40:6", + "name": "VGA NVIDIA", + "url": "\/vga-nvidia" + } + ] + }, + { + "id": 6193, + "productId": 6193, + "priceUnit": "chi\u1ebfc", + "marketPrice": 52000000, + "price": 48990000, + "price_off": 6, + "currency": "vnd", + "sale_rules": { + "price": 48990000, + "normal_price": 48990000, + "min_purchase": 1, + "max_purchase": 0, + "remain_quantity": 0, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-20 08:13:07", + "warranty": "36 th\u00e1ng", + "productName": "VGA ASUS ROG ASTRAL GEFORCE RTX 5080 16GB GDDR7 WHITE OC EDITION (256-bit, HDMI+DP, 1x16-pin)", + "productSummary": "

Dung l\u01b0\u1ee3ng b\u1ed9 nh\u1edb:\u00a016GB GDDR7<\/p>\r\n

CUDA Cores :\u00a010752<\/p>\r\n

OC mode: 2790 MHz<\/p>\r\n

Default mode: 2760 MHz (Boost Clock)<\/p>\r\n

K\u1ebft n\u1ed1i: 3x DisplayPort 2.1b, 2x\u00a0HDMI 2.1b<\/p>\r\n

Ngu\u1ed3n y\u00eau c\u1ea7u: 850W<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha8.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha8.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6193_rog_astral_geforce_rtx_5080_16gb_gddr7_white_oc_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/vga-asus-rog-astral-rtx-5080-16gb-gddr7-oc-white", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 709, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 0, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 264, + "catPath": ":264:40:6", + "name": "NVIDIA RTX 5080", + "url": "\/nvidia-rtx-5080" + }, + { + "id": 6, + "catPath": ":6", + "name": "VGA - Card M\u00e0n H\u00ecnh", + "url": "\/vga-card-man-hinh" + }, + { + "id": 40, + "catPath": ":40:6", + "name": "VGA NVIDIA", + "url": "\/vga-nvidia" + } + ] + } + ] + }, + { + "id" : 166, + "total": 13, + "list": [ + { + "id": 6353, + "productId": 6353, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 490000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 490000, + "normal_price": 490000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-09-11 10:04:43", + "warranty": "12 th\u00e1ng", + "productName": "Gi\u00e1 \u0111\u1ee1 Cooler Master ELV8 Graphics and Holder - RGB - M\u00e0u \u0111en", + "productSummary": "

Protect the GPU<\/p>\r\n

Universal GPU support<\/p>\r\n

Protect the motherboard<\/p>\r\n

Co-designed with Tantric Mods<\/p>\r\n

RGB ready<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6353_elv8_graphics_and_holder_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6353_elv8_graphics_and_holder_ha2.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6353_elv8_graphics_and_holder_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6353_elv8_graphics_and_holder_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6353_elv8_graphics_and_holder_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6353_elv8_graphics_and_holder_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6353_elv8_graphics_and_holder_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6353_elv8_graphics_and_holder_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6353_elv8_graphics_and_holder_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6353_elv8_graphics_and_holder_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6353_elv8_graphics_and_holder_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6353_elv8_graphics_and_holder_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/bo-dung-vga-cooler-master-elv8", + "brand": { + "id": 47, + "brand_index": "cooler-master", + "name": "COOLER MASTER", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/coolermaster.jpg", + "url": "\/brand\/cooler-master" + }, + "visit": 151, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3500000, + "type": "deal", + "type_id": 331 + } + ], + "categories": [ + { + "id": 121, + "catPath": ":121:166", + "name": "Ph\u1ee5 Ki\u1ec7n M\u00e1y T\u00ednh", + "url": "\/phu-kien" + } + ] + }, + { + "id": 6432, + "productId": 6432, + "priceUnit": "chi\u1ebfc", + "marketPrice": 3000000, + "price": 2790000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 2790000, + "normal_price": 2790000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-10-10 13:51:01", + "warranty": "60 th\u00e1ng", + "productName": "Ngu\u1ed3n Thermaltake Toughpower GT 850W Snow ATX 3.1 (80 Plus Gold\/ Full Modular)", + "productSummary": "

C\u00f4ng su\u1ea5t: 850W<\/p>\r\n

Ch\u1ee9ng nh\u1eadn: 80 Plus\u00a0Gold<\/p>\r\n

M\u00f4-\u0111un:\u00a0Full Modular<\/p>\r\n

Lo\u1ea1i: ATX 3.1 -\u00a0PCIe Gen 5.1<\/p>\r\n

PFC: Active PFC<\/p>\r\n

\u0110\u01b0\u1ee3c trang b\u1ecb t\u1ee5 \u0111i\u1ec7n Nh\u1eadt B\u1ea3n ch\u1ea5t l\u01b0\u1ee3ng cao<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6432_gt_850w_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6432_gt_850w_sale.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6432_gt_850w_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6432_gt_850w_sale.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6432_toughpower_gt_850w_snow_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6432_toughpower_gt_850w_snow_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6432_toughpower_gt_850w_snow_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6432_toughpower_gt_850w_snow_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6432_toughpower_gt_850w_snow_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6432_toughpower_gt_850w_snow_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6432_toughpower_gt_850w_snow_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6432_toughpower_gt_850w_snow_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6432_toughpower_gt_850w_snow_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6432_toughpower_gt_850w_snow_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6432_toughpower_gt_850w_snow_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6432_toughpower_gt_850w_snow_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/nguon-thermaltake-toughpower-gt-850w-snow", + "brand": { + "id": 40, + "brand_index": "thermaltake", + "name": "THERMALTAKE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/thermaltake.png", + "url": "\/brand\/thermaltake" + }, + "visit": 205, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3500000, + "type": "deal", + "type_id": 331 + } + ], + "categories": [ + { + "id": 186, + "catPath": ":186:7:166", + "name": "Ngu\u1ed3n Thermaltake", + "url": "\/nguon-thermaltake" + }, + { + "id": 7, + "catPath": ":7:166", + "name": "PSU - Ngu\u1ed3n m\u00e1y t\u00ednh", + "url": "\/psu-nguon-may-tinh" + } + ] + }, + { + "id": 6339, + "productId": 6339, + "priceUnit": "chi\u1ebfc", + "marketPrice": 4200000, + "price": 3890000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 3890000, + "normal_price": 3890000, + "min_purchase": 1, + "max_purchase": 0, + "remain_quantity": 0, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-09-06 08:54:26", + "warranty": "60 th\u00e1ng", + "productName": "Ngu\u1ed3n Ocypus Iota P1200 1200W (80 Plus Gold | ATX 3.1 | PCIe 5.1 | Full Modular)", + "productSummary": "

C\u00f4ng su\u1ea5t: 1200W<\/p>\r\n

Ch\u1ee9ng nh\u1eadn: 80 Plus\u00a0Gold<\/p>\r\n

M\u00f4-\u0111un: Full-modular<\/p>\r\n

Lo\u1ea1i: ATX 3.1 -\u00a0PCIe Gen 5.1<\/p>\r\n

PFC: Active PFC<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6339_iota_p1200_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6339_iota_p1200_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6339_iota_p1200_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6339_iota_p1200_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6339_iota_p1200_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6339_iota_p1200_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6339_iota_p1200_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6339_iota_p1200_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6339_iota_p1200_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6339_iota_p1200_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6339_iota_p1200_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6339_iota_p1200_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6339_iota_p1200_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6339_iota_p1200_ha4.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/nguon-ocypus-iota-p1200-1200w", + "brand": { + "id": 155, + "brand_index": "ocypus", + "name": "OCYPUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/ocypus.png", + "url": "\/brand\/ocypus" + }, + "visit": 132, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 0, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3500000, + "type": "deal", + "type_id": 331 + } + ], + "categories": [ + { + "id": 7, + "catPath": ":7:166", + "name": "PSU - Ngu\u1ed3n m\u00e1y t\u00ednh", + "url": "\/psu-nguon-may-tinh" + } + ] + }, + { + "id": 6328, + "productId": 6328, + "priceUnit": "chi\u1ebfc", + "marketPrice": 5500000, + "price": 5190000, + "price_off": 6, + "currency": "vnd", + "sale_rules": { + "price": 5190000, + "normal_price": 5190000, + "min_purchase": 1, + "max_purchase": 0, + "remain_quantity": 0, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-09-05 09:55:24", + "warranty": "60 th\u00e1ng", + "productName": "Ngu\u1ed3n Thermaltake Toughpower GF A3 1200W (80 Plus Gold | ATX 3.0 | PCIe 5.0 | Full Modular)", + "productSummary": "

C\u00f4ng su\u1ea5t: 1200W<\/p>\r\n

Ch\u1ee9ng nh\u1eadn: 80 Plus\u00a0Gold<\/p>\r\n

M\u00f4-\u0111un: Full-modular<\/p>\r\n

Lo\u1ea1i: ATX 3.0 -\u00a0PCIe Gen 5.0<\/p>\r\n

PFC: Active PFC<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6328_toughpower_gf_a3_1200w_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6328_toughpower_gf_a3_1200w_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6328_toughpower_gf_a3_1200w_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6328_toughpower_gf_a3_1200w_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6328_toughpower_gf_a3_1200w_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6328_toughpower_gf_a3_1200w_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6328_toughpower_gf_a3_1200w_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6328_toughpower_gf_a3_1200w_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6328_toughpower_gf_a3_1200w_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6328_toughpower_gf_a3_1200w_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6328_toughpower_gf_a3_1200w_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6328_toughpower_gf_a3_1200w_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6328_toughpower_gf_a3_1200w_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6328_toughpower_gf_a3_1200w_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/nguon-thermaltake-gf-a3-1200w", + "brand": { + "id": 40, + "brand_index": "thermaltake", + "name": "THERMALTAKE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/thermaltake.png", + "url": "\/brand\/thermaltake" + }, + "visit": 132, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 0, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3500000, + "type": "deal", + "type_id": 331 + } + ], + "categories": [ + { + "id": 186, + "catPath": ":186:7:166", + "name": "Ngu\u1ed3n Thermaltake", + "url": "\/nguon-thermaltake" + }, + { + "id": 7, + "catPath": ":7:166", + "name": "PSU - Ngu\u1ed3n m\u00e1y t\u00ednh", + "url": "\/psu-nguon-may-tinh" + } + ] + }, + { + "id": 6245, + "productId": 6245, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 3500000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 3500000, + "normal_price": 3990000, + "min_purchase": 1, + "max_purchase": 10, + "remain_quantity": 1, + "from_time": 1767574800, + "to_time": 1769995800, + "type": "deal", + "type_id": 331 + }, + "lastUpdate": "2026-01-14 09:33:19", + "warranty": "60 th\u00e1ng", + "productName": "Ngu\u1ed3n SeaSonic Vertex GX-1000 ATX 3.0 (1000W, 80 Plus Gold\/ Full Modular\/ Black)", + "productSummary": "

Intel Form Factor:\u00a0ATX 3.0 & PCIe 5.0<\/p>\r\n

C\u00f4ng su\u1ea5t: 1000W<\/p>\r\n

Ch\u1ee9ng nh\u1eadn: 80 Plus\u00a0Gold<\/p>\r\n

M\u00f4-\u0111un: Full-modular<\/p>\r\n

PFC: Active PFC<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6245_gx_1000_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6245_gx_1000_sale.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6245_gx_1000_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6245_gx_1000_sale.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6245_gx_1000_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6245_gx_1000_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6245_gx_1000_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6245_gx_1000_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6245_gx_1000_ha8.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6245_gx_1000_ha8.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6245_gx_1000_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6245_gx_1000_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6245_gx_1000_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6245_gx_1000_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6245_gx_1000_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6245_gx_1000_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6245_gx_1000_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6245_gx_1000_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6245_gx_1000_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6245_gx_1000_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/nguon-seasonic-1000w-vertex-gx-1000", + "brand": { + "id": 34, + "brand_index": "seasonic", + "name": "SEASONIC", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/seasonic.jpg", + "url": "\/brand\/seasonic" + }, + "visit": 1681, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [ + { + "id": 331, + "pro_id": 6245, + "title": "Ngu\u1ed3n SeaSonic Vertex GX-1000 ATX 3.1 (1000W, 80 Plus Gold\/ Full Modular\/ Black)", + "price": 3500000, + "quantity": 10, + "sale_quantity": 2, + "min_purchase": 1, + "max_purchase": 10, + "is_featured": 0, + "from_time": 1767574800, + "to_time": 1769995800, + "discount_type": "percent", + "discount_value": 0, + "is_started": 1 + } + ], + "pricing_traces": [ + { + "price": 3500000, + "type": "deal", + "type_id": 331 + } + ], + "categories": [ + { + "id": 185, + "catPath": ":185:7:166", + "name": "Ngu\u1ed3n Seasonic", + "url": "\/nguon-seasonic" + }, + { + "id": 7, + "catPath": ":7:166", + "name": "PSU - Ngu\u1ed3n m\u00e1y t\u00ednh", + "url": "\/psu-nguon-may-tinh" + } + ] + }, + { + "id": 6179, + "productId": 6179, + "priceUnit": "chi\u1ebfc", + "marketPrice": 8000000, + "price": 7290000, + "price_off": 9, + "currency": "vnd", + "sale_rules": { + "price": 7290000, + "normal_price": 7290000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-07-08 16:19:54", + "warranty": "10 n\u0103m", + "productName": "NGU\u1ed2N ASUS ROG STRIX 1200P PLATINUM BLACK (1200W \/ ATX 3.1\/ PCIe 5.1\/ 80 Plus Plantinum\/ Full Modular)", + "productSummary": "

Intel Form Factor:\u00a0ATX 3.1 and PCIe Gen 5.1<\/p>\r\n

C\u00f4ng su\u1ea5t: 1200W<\/p>\r\n

Ch\u1ee9ng nh\u1eadn: 80 Plus\u00a0Platinum<\/p>\r\n

M\u00f4-\u0111un: Full-modular<\/p>\r\n

PFC: Active PFC<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha8.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha8.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha10.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha10.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6179_rog_strix_1200w_ha9.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6179_rog_strix_1200w_ha9.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/nguon-asus-rog-strix-1200w-platinum-black", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 853, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 175, + "catPath": ":175:7:166", + "name": "Ngu\u1ed3n Asus", + "url": "\/nguon-asus" + }, + { + "id": 7, + "catPath": ":7:166", + "name": "PSU - Ngu\u1ed3n m\u00e1y t\u00ednh", + "url": "\/psu-nguon-may-tinh" + } + ] + }, + { + "id": 6428, + "productId": 6428, + "priceUnit": "chi\u1ebfc", + "marketPrice": 1990000, + "price": 1790000, + "price_off": 10, + "currency": "vnd", + "sale_rules": { + "price": 1790000, + "normal_price": 1790000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-10-10 09:45:57", + "warranty": "12 Th\u00e1ng", + "productName": "V\u1ecf Case Jonsbo D400 White - No Fan (Mid Tower\/ M\u00e0u tr\u1eafng)", + "productSummary": "

H\u1ed7 tr\u1ee3 mainboard:\u00a0Mini-ITX \/ M-ATX \/ ATX<\/p>\r\n

Ch\u00e2\u0301t li\u00ea\u0323u:\u00a0Steel, Tempered Glass<\/p>\r\n

K\u1ebft n\u1ed1i:\u00a0USB3.2 Gen2 Type-C*1, USB3.0*2, AUDIO*1+MIC*1 (2 in 1\uff09<\/a><\/p>\r\n

H\u1ed7 tr\u1ee3 t\u1ea3n nhi\u1ec7t CPU:\u00a0169mm<\/a><\/p>\r\n

H\u1ed7 tr\u1ee3 VGA:\u00a0\u2264450mm<\/p>\r\n

H\u1ed7 tr\u1ee3 PSU:\u00a0ATX PS2<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6428_d400_white_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6428_d400_white_ha4.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6428_d400_white_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6428_d400_white_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6428_d400_white_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6428_d400_white_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6428_d400_white_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6428_d400_white_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6428_d400_white_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6428_d400_white_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6428_d400_white_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6428_d400_white_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6428_d400_white_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6428_d400_white_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/vo-case-jonsbo-d400-white", + "brand": { + "id": 54, + "brand_index": "jonsbo", + "name": "JONSBO", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/jonsbo.jpg", + "url": "\/brand\/jonsbo" + }, + "visit": 151, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3500000, + "type": "deal", + "type_id": 331 + } + ], + "categories": [ + { + "id": 276, + "catPath": ":276:8:166", + "name": "Case Jonsbo", + "url": "\/case-jonsbo" + }, + { + "id": 8, + "catPath": ":8:166", + "name": "Case - V\u1ecf M\u00e1y T\u00ednh", + "url": "\/case-vo-may-tinh" + } + ] + }, + { + "id": 6423, + "productId": 6423, + "priceUnit": "chi\u1ebfc", + "marketPrice": 1990000, + "price": 1790000, + "price_off": 10, + "currency": "vnd", + "sale_rules": { + "price": 1790000, + "normal_price": 1790000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-10-08 10:34:53", + "warranty": "12 Th\u00e1ng", + "productName": "V\u1ecf Case Jonsbo D400 Black - No Fan (Mid Tower\/ M\u00e0u \u0111en)", + "productSummary": "

H\u1ed7 tr\u1ee3 mainboard:\u00a0Mini-ITX \/ M-ATX \/ ATX<\/p>\r\n

Ch\u00e2\u0301t li\u00ea\u0323u:\u00a0Steel, Tempered Glass<\/p>\r\n

K\u1ebft n\u1ed1i:\u00a0USB3.2 Gen2 Type-C*1, USB3.0*2, AUDIO*1+MIC*1 (2 in 1\uff09<\/a><\/p>\r\n

H\u1ed7 tr\u1ee3 t\u1ea3n nhi\u1ec7t CPU:\u00a0169mm<\/a><\/p>\r\n

H\u1ed7 tr\u1ee3 VGA:\u00a0\u2264450mm<\/p>\r\n

H\u1ed7 tr\u1ee3 PSU:\u00a0ATX PS2<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6423_d400_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6423_d400_black_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6423_d400_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6423_d400_black_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6423_d400_black_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6423_d400_black_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6423_d400_black_ha8.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6423_d400_black_ha8.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6423_d400_black_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6423_d400_black_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6423_d400_black_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6423_d400_black_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6423_d400_black_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6423_d400_black_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6423_d400_black_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6423_d400_black_ha6.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/vo-case-jonsbo-d400-black", + "brand": { + "id": 54, + "brand_index": "jonsbo", + "name": "JONSBO", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/jonsbo.jpg", + "url": "\/brand\/jonsbo" + }, + "visit": 262, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3500000, + "type": "deal", + "type_id": 331 + } + ], + "categories": [ + { + "id": 276, + "catPath": ":276:8:166", + "name": "Case Jonsbo", + "url": "\/case-jonsbo" + }, + { + "id": 8, + "catPath": ":8:166", + "name": "Case - V\u1ecf M\u00e1y T\u00ednh", + "url": "\/case-vo-may-tinh" + } + ] + }, + { + "id": 6400, + "productId": 6400, + "priceUnit": "chi\u1ebfc", + "marketPrice": 2300000, + "price": 1990000, + "price_off": 13, + "currency": "vnd", + "sale_rules": { + "price": 1990000, + "normal_price": 1990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2026-01-06 13:54:19", + "warranty": "12 th\u00e1ng", + "productName": "V\u1ecf case ASUS PRIME AP202 TG White - No Fan (Mini Tower \/ M\u00e0u Tr\u1eafng)", + "productSummary": "

Lo\u1ea1i Case:\u00a0Mini Tower<\/p>\r\n

Ch\u1ea5t li\u1ec7u:\u00a0Tempered Glass, SPCC<\/p>\r\n

H\u1ed7 tr\u1ee3 bo m\u1ea1ch ch\u1ee7:\u00a0Micro-ATX,\u00a0Mini-ITX<\/p>\r\n

Khe c\u1eafm m\u1edf r\u1ed9ng: 4<\/p>\r\n

C\u1ed5ng k\u1ebft n\u1ed1i:\u00a02 x USB 3.2 Gen1,\u00a01 x USB 3.2 Gen 2x2 Type C<\/p>\r\n

H\u1ed7 tr\u1ee3 t\u1ea3n nhi\u1ec7t CPU:\u00a0175 mm<\/p>\r\n

H\u1ed7 tr\u1ee3 VGA:\u00a0420 mm<\/p>\r\n

H\u1ed7 tr\u1ee3 PSU:\u00a0200 mm<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6400_prime_ap202_tg_wh_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6400_prime_ap202_tg_wh_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6400_prime_ap202_tg_wh_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6400_prime_ap202_tg_wh_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6400_prime_ap202_tg_wh_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6400_prime_ap202_tg_wh_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6400_prime_ap202_tg_wh_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6400_prime_ap202_tg_wh_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6400_prime_ap202_tg_wh_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6400_prime_ap202_tg_wh_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6400_prime_ap202_tg_wh_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6400_prime_ap202_tg_wh_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6400_prime_ap202_tg_wh_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6400_prime_ap202_tg_wh_ha4.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/vo-case-asus-prime-ap202-tg-white", + "brand": { + "id": 155, + "brand_index": "ocypus", + "name": "OCYPUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/ocypus.png", + "url": "\/brand\/ocypus" + }, + "visit": 190, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3500000, + "type": "deal", + "type_id": 331 + } + ], + "categories": [ + { + "id": 8, + "catPath": ":8:166", + "name": "Case - V\u1ecf M\u00e1y T\u00ednh", + "url": "\/case-vo-may-tinh" + } + ] + }, + { + "id": 6422, + "productId": 6422, + "priceUnit": "chi\u1ebfc", + "marketPrice": 50000000, + "price": 45990000, + "price_off": 8, + "currency": "vnd", + "sale_rules": { + "price": 45990000, + "normal_price": 45990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2026-01-14 11:47:59", + "warranty": "36 th\u00e1ng", + "productName": "RAM DDR5 CORSAIR VENGEANCE RGB 128GB 6400MHz (2x64G) XMP 3.0 BLACK", + "productSummary": "

Loa\u0323i RAM: DDR5<\/p>\r\n

Dung l\u01b0\u01a1\u0323ng: 128GB (2x64GB)<\/p>\r\n

Bus: 6400 MHz<\/p>\r\n

\u0110\u1ed9 tr\u1ec5: CL42-52-52-104<\/p>\r\n

Intel XMP\u00a03.0<\/p>\r\n

Phi\u00ean b\u1ea3n LED RGB<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6422_vengeance_rgb_d5_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6422_vengeance_rgb_d5_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6422_vengeance_rgb_d5_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6422_vengeance_rgb_d5_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6422_vengeance_rgb_d5_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6422_vengeance_rgb_d5_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6422_vengeance_rgb_d5_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6422_vengeance_rgb_d5_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/ram-d5-corsair-vengeance-rgb-128gb-6400mhz", + "brand": { + "id": 13, + "brand_index": "corsair", + "name": "CORSAIR", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/corsair.jpg", + "url": "\/brand\/corsair" + }, + "visit": 350, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3500000, + "type": "deal", + "type_id": 331 + } + ], + "categories": [ + { + "id": 70, + "catPath": ":70:4:166", + "name": "Ram Corsair", + "url": "\/ram-corsair" + }, + { + "id": 4, + "catPath": ":4:166", + "name": "RAM - B\u1ed9 Nh\u1edb Trong", + "url": "\/ram-bo-nho-trong" + } + ] + } + ] + }, + { + "id" : 9, + "total": 6, + "list": [ + { + "id": 2829, + "productId": 2829, + "priceUnit": "chi\u1ebfc", + "marketPrice": 5890000, + "price": 5390000, + "price_off": 8, + "currency": "vnd", + "sale_rules": { + "price": 5390000, + "normal_price": 5390000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-06-30 15:36:26", + "warranty": "36 Th\u00e1ng", + "productName": "M\u00e0n h\u00ecnh \u0111\u1ed3 h\u1ecda Asus ProArt PA247CV (23.8inch \/ FHD \/ IPS\/ 75Hz\/ USB-C 65W)", + "productSummary": "

K\u00edch th\u01b0\u1edbc: 23.8 inch<\/p>\r\n

T\u1ea5m n\u1ec1n: IPS<\/p>\r\n

\u0110\u1ed9 ph\u00e2n gi\u1ea3i: FHD (1920x1080)<\/p>\r\n

T\u1ed1c \u0111\u1ed9 l\u00e0m m\u1edbi: 75Hz<\/p>\r\n

Th\u1eddi gian \u0111\u00e1p \u1ee9ng: 5ms(GTG)<\/p>\r\n

C\u1ed5ng k\u1ebft n\u1ed1i: HDMI(v1.4) x 1, DisplayPort 1.2 x 2, USB-C x 1<\/p>\r\n

Ph\u1ee5 ki\u1ec7n: C\u00e1p ngu\u1ed3n, C\u00e1p DisplayPort<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2829_asus_pro_art_pa_247cv_1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2829_asus_pro_art_pa_247cv_1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2829_", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2829_", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2829_asus_pro_art_pa_247cv_5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2829_asus_pro_art_pa_247cv_5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2829_asus_pro_art_pa_247cv_4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2829_asus_pro_art_pa_247cv_4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2829_asus_pro_art_pa_247cv_3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2829_asus_pro_art_pa_247cv_3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2829_asus_pro_art_pa_247cv_2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2829_asus_pro_art_pa_247cv_2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_2829_asus_pro_art_pa_247cv_1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_2829_asus_pro_art_pa_247cv_1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/man-hinh-asus-proart-pa247cv", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 18220, + "rating": 5, + "reviewCount": 3810, + "review": { + "rate": 5, + "total": 3810 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": null, + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 75, + "catPath": ":75:52:9", + "name": "M\u00e0n h\u00ecnh Asus", + "url": "\/man-hinh-asus" + }, + { + "id": 9, + "catPath": ":9", + "name": "M\u00e0n H\u00ecnh M\u00e1y T\u00ednh", + "url": "\/man-hinh-may-tinh" + }, + { + "id": 52, + "catPath": ":52:9", + "name": "M\u00e0n H\u00ecnh Theo H\u00e3ng", + "url": "\/man-hinh-theo-hang" + } + ] + }, + { + "id": 5677, + "productId": 5677, + "priceUnit": "chi\u1ebfc", + "marketPrice": 34000000, + "price": 30990000, + "price_off": 9, + "currency": "vnd", + "sale_rules": { + "price": 30990000, + "normal_price": 30990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-09-30 13:50:46", + "warranty": "36 Th\u00e1ng", + "productName": "M\u00e0n h\u00ecnh cong Dell UltraSharp U3824DW (38 inch\/ WQHD+\/ IPS\/ 60Hz\/ USB-C 15W\/ RJ45)", + "productSummary": "

M\u00e0n h\u00ecnh cong\u00a0Dell UltraSharp U3824DW<\/p>\r\n

T\u1ec9 l\u1ec7: 21:9<\/p>\r\n

K\u00edch th\u01b0\u1edbc: 38 inch<\/p>\r\n

\u0110\u1ed9 ph\u00e2n gi\u1ea3i:\u00a0WQHD+ 3840 x 1600 at 60 Hz<\/p>\r\n

T\u1ea5m n\u1ec1n: IPS<\/p>\r\n

Th\u1eddi gian \u0111\u00e1p \u1ee9ng: 5 ms (Fast)<\/p>\r\n

C\u1ed5ng k\u1ebft n\u1ed1i: HDMI, DP, RJ45, USB 3.2, USB-C<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5677_dell_ultrasharp_u3824dw_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5677_dell_ultrasharp_u3824dw_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5677_dell_ultrasharp_u3824dw_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5677_dell_ultrasharp_u3824dw_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5677_dell_ultrasharp_u3824dw_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5677_dell_ultrasharp_u3824dw_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5677_dell_ultrasharp_u3824dw_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5677_dell_ultrasharp_u3824dw_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5677_dell_ultrasharp_u3824dw_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5677_dell_ultrasharp_u3824dw_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5677_dell_ultrasharp_u3824dw_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5677_dell_ultrasharp_u3824dw_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5677_dell_ultrasharp_u3824dw_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5677_dell_ultrasharp_u3824dw_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/man-hinh-cong-dell-ultrasharp-u3824dw", + "brand": { + "id": 14, + "brand_index": "dell", + "name": "DELL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/dell.jpg", + "url": "\/brand\/dell" + }, + "visit": 1064, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 60, + "catPath": ":60:52:9", + "name": "M\u00e0n h\u00ecnh Dell", + "url": "\/man-hinh-dell" + } + ] + }, + { + "id": 5589, + "productId": 5589, + "priceUnit": "chi\u1ebfc", + "marketPrice": 23000000, + "price": 22600000, + "price_off": 2, + "currency": "vnd", + "sale_rules": { + "price": 22600000, + "normal_price": 22600000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-07-21 11:14:15", + "warranty": "36 Th\u00e1ng", + "productName": "M\u00e0n h\u00ecnh cong Dell UltraSharp U3425WE (34 inch\/ 2K\/ IPS\/ 120Hz\/ Thunderbolt 4 90W\/ RJ45\/ Loa)", + "productSummary": "

T\u1ec9 l\u1ec7: 21:9<\/p>\r\n

K\u00edch th\u01b0\u1edbc: 34 inch<\/p>\r\n

\u0110\u1ed9 ph\u00e2n gi\u1ea3i: 2K (3440 x 1440)<\/p>\r\n

T\u1ea5m n\u1ec1n: IPS<\/p>\r\n

T\u1ea7n s\u1ed1 qu\u00e9t : 120 Hz<\/p>\r\n

Th\u1eddi gian \u0111\u00e1p \u1ee9ng : 5 ms (Fast)<\/p>\r\n

C\u1ed5ng k\u1ebft n\u1ed1i: HDMI, DP, RJ45, Thunderbolt\u2122 4, USB 3.2, USB-C<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5589_dell_u3425we_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5589_dell_u3425we_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5589_dell_u3425we_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5589_dell_u3425we_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5589_dell_u3425we_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5589_dell_u3425we_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5589_dell_u3425we_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5589_dell_u3425we_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5589_dell_u3425we_ha.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5589_dell_u3425we_ha.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5589_dell_u3425we_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5589_dell_u3425we_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5589_dell_u3425we_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5589_dell_u3425we_ha3.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/man-hinh-dell-u3425we", + "brand": { + "id": 14, + "brand_index": "dell", + "name": "DELL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/dell.jpg", + "url": "\/brand\/dell" + }, + "visit": 2170, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 60, + "catPath": ":60:52:9", + "name": "M\u00e0n h\u00ecnh Dell", + "url": "\/man-hinh-dell" + } + ] + }, + { + "id": 5152, + "productId": 5152, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 14690000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 14690000, + "normal_price": 14690000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-08-04 11:53:26", + "warranty": "36 Th\u00e1ng", + "productName": "M\u00e0n h\u00ecnh Dell P3424WE (34 Inch\/ 2K\/ IPS\/ 60Hz\/ USB-C 90W)", + "productSummary": "

M\u00e0n h\u00ecnh\u00a0Dell\u00a0P3424WE<\/p>\r\n

T\u1ec9 l\u1ec7: 21:9<\/p>\r\n

K\u00edch th\u01b0\u1edbc:\u00a034 inch<\/p>\r\n

\u0110\u1ed9 ph\u00e2n gi\u1ea3i: 2K\u00a0(WQHD 3440 x 1440)<\/p>\r\n

T\u1ea5m n\u1ec1n: IPS<\/p>\r\n

T\u1ea7n s\u1ed1 qu\u00e9t : 60 Hz<\/p>\r\n

Th\u1eddi gian \u0111\u00e1p \u1ee9ng :\u00a05 ms (Fast)<\/p>\r\n

C\u1ed5ng k\u1ebft n\u1ed1i: HDMI,\u00a0DP,\u00a0LAN,\u00a0USB 3.2, USB-C<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5152_p3424we_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5152_p3424we_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5152_p3424we_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5152_p3424we_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5152_p3424we_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5152_p3424we_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5152_p3424we_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5152_p3424we_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5152_p3424we_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5152_p3424we_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5152_p3424we_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5152_p3424we_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/man-hinh-dell-p3424we", + "brand": { + "id": 14, + "brand_index": "dell", + "name": "DELL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/dell.jpg", + "url": "\/brand\/dell" + }, + "visit": 2911, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 60, + "catPath": ":60:52:9", + "name": "M\u00e0n h\u00ecnh Dell", + "url": "\/man-hinh-dell" + } + ] + }, + { + "id": 5151, + "productId": 5151, + "priceUnit": "chi\u1ebfc", + "marketPrice": 6000000, + "price": 5590000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 5590000, + "normal_price": 5590000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-07-29 10:56:34", + "warranty": "36 Th\u00e1ng", + "productName": "M\u00e0n h\u00ecnh Dell Pro P2725H Plus (27 Inch\/ FHD\/ IPS\/ 100Hz\/ USB-C 15W)", + "productSummary": "

T\u1ec9 l\u1ec7: 16:9<\/p>\r\n

K\u00edch th\u01b0\u1edbc:\u00a027 inch<\/p>\r\n

\u0110\u1ed9 ph\u00e2n gi\u1ea3i:\u00a0FHD (1920 x 1080)<\/p>\r\n

T\u1ea5m n\u1ec1n: IPS<\/p>\r\n

T\u1ea7n s\u1ed1 qu\u00e9t : 100 Hz<\/p>\r\n

Th\u1eddi gian \u0111\u00e1p \u1ee9ng :\u00a05 ms (Fast)<\/p>\r\n

C\u1ed5ng k\u1ebft n\u1ed1i: HDMI,\u00a0DP, VGA,\u00a0USB 3.2, USB-C<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5151_p2725h_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5151_p2725h_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5151_p2725h_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5151_p2725h_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5151_p2725h_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5151_p2725h_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5151_p2725h_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5151_p2725h_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5151_p2725h_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5151_p2725h_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5151_p2725h_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5151_p2725h_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5151_p2725h_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5151_p2725h_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5151_p2725h_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5151_p2725h_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/man-hinh-dell-pro-p2725h-plus", + "brand": { + "id": 14, + "brand_index": "dell", + "name": "DELL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/dell.jpg", + "url": "\/brand\/dell" + }, + "visit": 5438, + "rating": 5, + "reviewCount": 2, + "review": { + "rate": 5, + "total": 2 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 60, + "catPath": ":60:52:9", + "name": "M\u00e0n h\u00ecnh Dell", + "url": "\/man-hinh-dell" + } + ] + }, + { + "id": 5150, + "productId": 5150, + "priceUnit": "chi\u1ebfc", + "marketPrice": 5000000, + "price": 4590000, + "price_off": 8, + "currency": "vnd", + "sale_rules": { + "price": 4590000, + "normal_price": 4590000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-07-21 11:12:11", + "warranty": "36 Th\u00e1ng", + "productName": "M\u00e0n h\u00ecnh Dell P2425H (23.8 Inch\/ FHD\/ IPS\/ 100Hz\/ USB-C 15W)", + "productSummary": "

M\u00e0n h\u00ecnh\u00a0Dell\u00a0P2425H<\/p>\r\n

T\u1ec9 l\u1ec7: 16:9<\/p>\r\n

K\u00edch th\u01b0\u1edbc:\u00a023.8 inch<\/p>\r\n

\u0110\u1ed9 ph\u00e2n gi\u1ea3i:\u00a0FHD (1920 x 1080)<\/p>\r\n

T\u1ea5m n\u1ec1n: IPS<\/p>\r\n

T\u1ea7n s\u1ed1 qu\u00e9t : 100 Hz<\/p>\r\n

Th\u1eddi gian \u0111\u00e1p \u1ee9ng :\u00a05 ms (Fast)<\/p>\r\n

C\u1ed5ng k\u1ebft n\u1ed1i: HDMI,\u00a0DP, VGA,\u00a0USB 3.2, USB-C<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5150_p2425h_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5150_p2425h_ha1s.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5150_p2425h_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5150_p2425h_ha1s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5150_p2425h_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5150_p2425h_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5150_p2425h_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5150_p2425h_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5150_p2425h_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5150_p2425h_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5150_p2425h_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5150_p2425h_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5150_p2425h_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5150_p2425h_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5150_p2425h_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5150_p2425h_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/man-hinh-dell-p2425h-hh", + "brand": { + "id": 14, + "brand_index": "dell", + "name": "DELL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/dell.jpg", + "url": "\/brand\/dell" + }, + "visit": 5520, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 60, + "catPath": ":60:52:9", + "name": "M\u00e0n h\u00ecnh Dell", + "url": "\/man-hinh-dell" + } + ] + } + ] + }, + { + "id": 5, + "total": 12, + "list": [ + { + "id": 121, + "productId": 121, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 2990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 2990000, + "normal_price": 2990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-12-15 10:02:45", + "warranty": "24 th\u00e1ng", + "productName": "\u1ed4 C\u1ee9ng HDD Seagate Barracuda 2TB (3.5 inch, Sata3 6Gb\/s, 256MB Cache, 7200rpm)", + "productSummary": "

Dung l\u01b0\u1ee3ng 2TB Chu\u1ea9n c\u1eafm SATA3<\/p>\r\n

B\u1ed9 nh\u1edb \u0111\u1ec7m 256MB<\/p>\r\n

T\u1ed1c \u0111\u1ed9 v\u00f2ng quay 7200rpm<\/p>\r\n

T\u1ed1c \u0111\u1ed9 truy\u1ec1n d\u1eef li\u1ec7u 6Gb\/s<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_121_hdd_seagate_barracuda_2tb_1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_121_hdd_seagate_barracuda_2tb_1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_121_hdd_seagate_barracuda_2tb_1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_121_hdd_seagate_barracuda_2tb_1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_121_hdd_seagate_barracuda_2tb_3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_121_hdd_seagate_barracuda_2tb_3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_121_hdd_seagate_barracuda_2tb_2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_121_hdd_seagate_barracuda_2tb_2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_121_hdd_seagate_barracuda_2tb.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_121_hdd_seagate_barracuda_2tb.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hdd-seagate-barracuda-2tb", + "brand": { + "id": 50, + "brand_index": "seagate", + "name": "SEAGATE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/seagate.jpg", + "url": "\/brand\/seagate" + }, + "visit": 21145, + "rating": 5, + "reviewCount": 3810, + "review": { + "rate": 5, + "total": 3810 + }, + "comment": { + "rate": 5, + "total": 1 + }, + "quantity": 1, + "productSKU": "", + "productModel": "0", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": null, + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": null, + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 214, + "catPath": ":214:15:5", + "name": "HDD Seagate", + "url": "\/hdd-seagate" + }, + { + "id": 15, + "catPath": ":15:5", + "name": "\u1ed4 C\u1ee9ng HDD", + "url": "\/o-cung-hdd" + } + ] + }, + { + "id": 123, + "productId": 123, + "priceUnit": "chi\u1ebfc", + "marketPrice": 2000000, + "price": 0, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 0, + "normal_price": 0, + "min_purchase": 1, + "max_purchase": 0, + "remain_quantity": 0, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-05 13:45:00", + "warranty": "24 th\u00e1ng", + "productName": "\u1ed4 C\u1ee9ng HDD Seagate BarraCuda 1TB (3.5 inch, Sata3 6Gb\/s, 64MB Cache, 7200rpm)", + "productSummary": "

Seagate Barracuda 1TB<\/p>\r\n

Dung l\u01b0\u01a1\u0323ng: 1Tb<\/p>\r\n

T\u00f4\u0301c \u0111\u00f4\u0323 quay: 7200rpm<\/p>\r\n

B\u00f4\u0323 nh\u01a1\u0301 Cache: 64Mb<\/p>\r\n

Chu\u00e2\u0309n giao ti\u00ea\u0301p: SATA3<\/p>\r\n

Ki\u0301ch th\u01b0\u01a1\u0301c: 3.5Inch<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_123_hdd_seagate_barracuda_1tb.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_123_hdd_seagate_barracuda_1tb.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_123_hdd_seagate_barracuda_1tb.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_123_hdd_seagate_barracuda_1tb.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_123_hdd_seagate_barracuda_1tb_2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_123_hdd_seagate_barracuda_1tb_2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_123_hdd_seagate_barracuda_1tb_1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_123_hdd_seagate_barracuda_1tb_1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/hdd-seagate-1tb-7200rpm-sata3-64mb-cache", + "brand": { + "id": 50, + "brand_index": "seagate", + "name": "SEAGATE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/seagate.jpg", + "url": "\/brand\/seagate" + }, + "visit": 20256, + "rating": 5, + "reviewCount": 3810, + "review": { + "rate": 5, + "total": 3810 + }, + "comment": { + "rate": 5, + "total": 1 + }, + "quantity": 0, + "productSKU": "", + "productModel": "0", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": null, + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": null, + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 214, + "catPath": ":214:15:5", + "name": "HDD Seagate", + "url": "\/hdd-seagate" + }, + { + "id": 15, + "catPath": ":15:5", + "name": "\u1ed4 C\u1ee9ng HDD", + "url": "\/o-cung-hdd" + } + ] + }, + { + "id": 1538, + "productId": 1538, + "priceUnit": "chi\u1ebfc", + "marketPrice": 6500000, + "price": 5990000, + "price_off": 8, + "currency": "vnd", + "sale_rules": { + "price": 5990000, + "normal_price": 5990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-12 14:39:41", + "warranty": "60 Th\u00e1ng", + "productName": "\u00d4\u0309 c\u01b0\u0301ng HDD Seagate Ironwolf Pro 4TB (3.5 inch, 7200 RPM, Cache 256MB, ST4000NT001)", + "productSummary": "

\u1ed4 c\u1ee9ng HDD\u00a0g\u1eafn trong\u00a0Seagate Ironwolf Pro 4TB 3.5 inch<\/p>\r\n

Dung l\u01b0\u01a1\u0323ng: 4TB<\/p>\r\n

T\u00f4\u0301c \u0111\u00f4\u0323 quay: 7200RPM<\/p>\r\n

B\u00f4\u0323 nh\u01a1\u0301 Cache: 256MB<\/p>\r\n

Chu\u00e2\u0309n giao ti\u00ea\u0301p:\u00a0SATA 6Gb\/s<\/p>", + "package_accessory": "", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_1538_st4000nt001_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_1538_st4000nt001_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_1538_st4000nt001_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_1538_st4000nt001_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_1538_st4000nt001_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_1538_st4000nt001_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_1538_st4000nt001_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_1538_st4000nt001_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_1538_st4000nt001_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_1538_st4000nt001_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/o-cung-hdd-seagate-ironwolf-pro-4tb-7200rpm", + "brand": { + "id": 50, + "brand_index": "seagate", + "name": "SEAGATE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/seagate.jpg", + "url": "\/brand\/seagate" + }, + "visit": 4141, + "rating": 5, + "reviewCount": 3810, + "review": { + "rate": 5, + "total": 3810 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": null, + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": null, + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 214, + "catPath": ":214:15:5", + "name": "HDD Seagate", + "url": "\/hdd-seagate" + }, + { + "id": 15, + "catPath": ":15:5", + "name": "\u1ed4 C\u1ee9ng HDD", + "url": "\/o-cung-hdd" + } + ] + }, + { + "id": 6257, + "productId": 6257, + "priceUnit": "chi\u1ebfc", + "marketPrice": 30000000, + "price": 28990000, + "price_off": 3, + "currency": "vnd", + "sale_rules": { + "price": 28990000, + "normal_price": 28990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-08-06 14:43:33", + "warranty": "60 Th\u00e1ng", + "productName": "\u1ed4 c\u1ee9ng SSD Corsair MP600 PRO XT 8TB M.2 NVMe PCIe Gen 4x4 (\u0110\u1ecdc 7000MB\/s, Ghi 6100MB\/s)", + "productSummary": "

Dung l\u01b0\u1ee3ng: 8TB<\/p>\r\n

Lo\u1ea1i: M.2 2280 PCIe Gen 4x4<\/p>\r\n

T\u1ed1c \u0111\u1ed9 \u0111\u1ecdc: Up to\u00a07000MB\/s<\/p>\r\n

T\u1ed1c \u0111\u1ed9 ghi: Up to\u00a06100MB\/s<\/p>\r\n

\u0110\u1ecdc ng\u1eabu nhi\u00ean t\u1ed1i \u0111a QD32 IOMeter :\u00a0Up to 950K IOPS<\/p>\r\n

Ghi\u00a0ng\u1eabu nhi\u00ean t\u1ed1i \u0111a QD32 IOMeter:\u00a0Up to 1.2M IOPS<\/p>\r\n

C\u00f4ng ngh\u1ec7 NAND\u00a03D TLC<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6257_mp600_pro_xt_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6257_mp600_pro_xt_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6257_mp600_pro_xt_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6257_mp600_pro_xt_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6257_mp600_pro_xt_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6257_mp600_pro_xt_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6257_mp600_pro_xt_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6257_mp600_pro_xt_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6257_mp600_pro_xt_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6257_mp600_pro_xt_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/o-cung-ssd-corsair-mp600-pro-xt-8tb", + "brand": { + "id": 13, + "brand_index": "corsair", + "name": "CORSAIR", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/corsair.jpg", + "url": "\/brand\/corsair" + }, + "visit": 370, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 206, + "catPath": ":206:16:5", + "name": "SSD Corsair", + "url": "\/ssd-corsair" + }, + { + "id": 16, + "catPath": ":16:5", + "name": "\u1ed4 C\u1ee9ng SSD", + "url": "\/o-cung-the-ran-ssd" + } + ] + }, + { + "id": 6153, + "productId": 6153, + "priceUnit": "chi\u1ebfc", + "marketPrice": 13000000, + "price": 11990000, + "price_off": 8, + "currency": "vnd", + "sale_rules": { + "price": 11990000, + "normal_price": 11990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-12 14:38:52", + "warranty": "36 th\u00e1ng", + "productName": "\u1ed4 c\u1ee9ng HDD Synology Plus Series HAT3310 12TB (3.5 Inch\/ SATA 6 Gb\/s\/ 7200RPM\/ 512MB Cache)", + "productSummary": "

Dung l\u01b0\u01a1\u0323ng: 12TB<\/p>\r\n

T\u00f4\u0301c \u0111\u00f4\u0323 quay: 7200RPM<\/p>\r\n

B\u00f4\u0323 nh\u01a1\u0301 Cache: 512MB<\/p>\r\n

Chu\u00e2\u0309n giao ti\u00ea\u0301p:\u00a0SATA 6 Gb\/s<\/p>\r\n

Ki\u0301ch th\u01b0\u01a1\u0301c: 3.5 inch<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6153_hat3310_12tb_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6153_hat3310_12tb_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6153_hat3310_12tb_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6153_hat3310_12tb_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6153_hat3310_12tb_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6153_hat3310_12tb_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/o-cung-hdd-synology-hat3310-12tb", + "brand": { + "id": 119, + "brand_index": "synology", + "name": "SYNOLOGY", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/synology.jpg", + "url": "\/brand\/synology" + }, + "visit": 230, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 15, + "catPath": ":15:5", + "name": "\u1ed4 C\u1ee9ng HDD", + "url": "\/o-cung-hdd" + } + ] + }, + { + "id": 6091, + "productId": 6091, + "priceUnit": "chi\u1ebfc", + "marketPrice": 13000000, + "price": 11990000, + "price_off": 8, + "currency": "vnd", + "sale_rules": { + "price": 11990000, + "normal_price": 11990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-18 14:25:34", + "warranty": "60 Th\u00e1ng", + "productName": "\u1ed4 c\u1ee9ng HDD Western Digital Ultrastar DC HA340 12TB (3.5 Inch\/ SATA 3\/ 7200RPM\/ 512MB Cache)", + "productSummary": "

Dung l\u01b0\u01a1\u0323ng: 12TB<\/p>\r\n

T\u00f4\u0301c \u0111\u00f4\u0323 quay: 7200RPM<\/p>\r\n

B\u00f4\u0323 nh\u01a1\u0301 Cache: 512MB<\/p>\r\n

Chu\u00e2\u0309n giao ti\u00ea\u0301p: SATA3<\/p>\r\n

Ki\u0301ch th\u01b0\u01a1\u0301c: 3.5 inch<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6091_ultrastar_dc_ha340_12tb_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6091_ultrastar_dc_ha340_12tb_ha2.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6091_ultrastar_dc_ha340_12tb_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6091_ultrastar_dc_ha340_12tb_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6091_ultrastar_dc_ha340_12tb_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6091_ultrastar_dc_ha340_12tb_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6091_ultrastar_dc_ha340_12tb_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6091_ultrastar_dc_ha340_12tb_ha1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/o-cung-hdd-western-digital-ultrastar-dc-ha340-12tb", + "brand": { + "id": 51, + "brand_index": "western-digital", + "name": "WESTERN DIGITAL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/westerndigital.jpg", + "url": "\/brand\/western-digital" + }, + "visit": 636, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 216, + "catPath": ":216:15:5", + "name": "HDD Western Digital", + "url": "\/hdd-western-digital" + }, + { + "id": 15, + "catPath": ":15:5", + "name": "\u1ed4 C\u1ee9ng HDD", + "url": "\/o-cung-hdd" + } + ] + }, + { + "id": 6090, + "productId": 6090, + "priceUnit": "chi\u1ebfc", + "marketPrice": 19000000, + "price": 17990000, + "price_off": 5, + "currency": "vnd", + "sale_rules": { + "price": 17990000, + "normal_price": 17990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-12-25 10:40:12", + "warranty": "60 Th\u00e1ng", + "productName": "\u1ed4 c\u1ee9ng HDD Western Digital Ultrastar DC HC555 20TB (3.5 Inch\/ SATA 3\/ 7200RPM\/ 512MB Cache)", + "productSummary": "

Dung l\u01b0\u01a1\u0323ng: 20TB<\/p>\r\n

T\u00f4\u0301c \u0111\u00f4\u0323 quay: 7200RPM<\/p>\r\n

B\u00f4\u0323 nh\u01a1\u0301 Cache: 512MB<\/p>\r\n

Chu\u00e2\u0309n giao ti\u00ea\u0301p: SATA3<\/p>\r\n

Ki\u0301ch th\u01b0\u01a1\u0301c: 3.5 inch<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6090_ultrastar_hc555_20tb_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6090_ultrastar_hc555_20tb_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6090_ultrastar_hc555_20tb_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6090_ultrastar_hc555_20tb_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6090_ultrastar_hc555_20tb_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6090_ultrastar_hc555_20tb_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6090_ultrastar_hc555_20tb_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6090_ultrastar_hc555_20tb_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/o-cung-hdd-western-digital-ultrastar-hc555-20tb", + "brand": { + "id": 51, + "brand_index": "western-digital", + "name": "WESTERN DIGITAL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/westerndigital.jpg", + "url": "\/brand\/western-digital" + }, + "visit": 562, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 216, + "catPath": ":216:15:5", + "name": "HDD Western Digital", + "url": "\/hdd-western-digital" + }, + { + "id": 15, + "catPath": ":15:5", + "name": "\u1ed4 C\u1ee9ng HDD", + "url": "\/o-cung-hdd" + } + ] + }, + { + "id": 6065, + "productId": 6065, + "priceUnit": "chi\u1ebfc", + "marketPrice": 4000000, + "price": 3500000, + "price_off": 13, + "currency": "vnd", + "sale_rules": { + "price": 3500000, + "normal_price": 3500000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-12 14:47:11", + "warranty": "24 Th\u00e1ng", + "productName": "\u1ed4 c\u1ee9ng HDD Western Digital Blue 4TB (3.5 Inch\/ SATA 3\/ 5400 RPM\/ 256MB Cache)", + "productSummary": "

Model:\u00a0WD40EZAX<\/p>\r\n

Dung l\u01b0\u01a1\u0323ng: 4TB<\/p>\r\n

T\u00f4\u0301c \u0111\u00f4\u0323 quay: 5400RPM<\/p>\r\n

B\u00f4\u0323 nh\u01a1\u0301 Cache: 256MB<\/p>\r\n

Chu\u00e2\u0309n giao ti\u00ea\u0301p: SATA3<\/p>\r\n

Ki\u0301ch th\u01b0\u01a1\u0301c: 3.5 inch<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6065_wd40ezax_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6065_wd40ezax_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6065_wd40ezax_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6065_wd40ezax_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6065_wd40ezax_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6065_wd40ezax_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/o-cung-hdd-western-digital-blue-4tb", + "brand": { + "id": 51, + "brand_index": "western-digital", + "name": "WESTERN DIGITAL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/westerndigital.jpg", + "url": "\/brand\/western-digital" + }, + "visit": 824, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 216, + "catPath": ":216:15:5", + "name": "HDD Western Digital", + "url": "\/hdd-western-digital" + }, + { + "id": 15, + "catPath": ":15:5", + "name": "\u1ed4 C\u1ee9ng HDD", + "url": "\/o-cung-hdd" + } + ] + }, + { + "id": 6047, + "productId": 6047, + "priceUnit": "chi\u1ebfc", + "marketPrice": 16000000, + "price": 14990000, + "price_off": 6, + "currency": "vnd", + "sale_rules": { + "price": 14990000, + "normal_price": 14990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-12-28 11:01:18", + "warranty": "24 th\u00e1ng", + "productName": "\u1ed4 c\u1ee9ng HDD Seagate Barracuda 24TB (3.5 inch, SATA 3 6Gb\/s, 512MB Cache, 7200RPM)", + "productSummary": "

Model: ST24000DM001<\/p>\r\n

Dung l\u01b0\u01a1\u0323ng: 24TB<\/p>\r\n

T\u00f4\u0301c \u0111\u00f4\u0323 quay:\u00a07200RPM<\/p>\r\n

B\u00f4\u0323 nh\u01a1\u0301 Cache:\u00a0512MB<\/p>\r\n

Chu\u00e2\u0309n giao ti\u00ea\u0301p: SATA3<\/p>\r\n

Ki\u0301ch th\u01b0\u01a1\u0301c: 3.5 inch<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6047_barracuda_24tb_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6047_barracuda_24tb_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6047_barracuda_24tb_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6047_barracuda_24tb_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6047_barracuda_24tb_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6047_barracuda_24tb_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6047_barracuda_24tb_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6047_barracuda_24tb_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6047_barracuda_24tb_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6047_barracuda_24tb_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/o-cung-hdd-seagate-barracuda-24tb", + "brand": { + "id": 50, + "brand_index": "seagate", + "name": "SEAGATE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/seagate.jpg", + "url": "\/brand\/seagate" + }, + "visit": 802, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "0", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 214, + "catPath": ":214:15:5", + "name": "HDD Seagate", + "url": "\/hdd-seagate" + }, + { + "id": 15, + "catPath": ":15:5", + "name": "\u1ed4 C\u1ee9ng HDD", + "url": "\/o-cung-hdd" + } + ] + }, + { + "id": 5956, + "productId": 5956, + "priceUnit": "chi\u1ebfc", + "marketPrice": 6500000, + "price": 5890000, + "price_off": 9, + "currency": "vnd", + "sale_rules": { + "price": 5890000, + "normal_price": 5890000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-24 21:14:15", + "warranty": "60 th\u00e1ng", + "productName": "\u1ed4 c\u1ee9ng SSD Samsung 9100 Pro 1TB PCIe 5.0x4 (\u0110\u1ecdc 14,700MB\/s - Ghi 13,300MB\/s)", + "productSummary": "

SSD Samsung 9100 Pro 1TB\u00a0PCIe 5.0 x4, NVMe 2.0<\/p>\r\n

T\u1ed1c \u0111\u1ed9 \u0111\u1ecdc: 14.700MB\/s<\/p>\r\n

T\u1ed1c \u0111\u1ed9 ghi: 13.300MB\/s<\/p>\r\n

Dung l\u01b0\u1ee3ng: 1TB<\/p>\r\n

K\u00edch th\u01b0\u1edbc: M.2 2280<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5956_samsung_9100_pro_1tb_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5956_samsung_9100_pro_1tb_ha3.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5956_samsung_9100_pro_1tb_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5956_samsung_9100_pro_1tb_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5956_samsung_9100_pro_1tb_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5956_samsung_9100_pro_1tb_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5956_samsung_9100_pro_1tb_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5956_samsung_9100_pro_1tb_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5956_samsung_9100_pro_1tb_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5956_samsung_9100_pro_1tb_ha4.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/o-cung-ssd-samsung-9100-pro-1tb", + "brand": { + "id": 33, + "brand_index": "samsung", + "name": "SAMSUNG", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/samsung.jpg", + "url": "\/brand\/samsung" + }, + "visit": 1168, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

Do gi\u00e1 SSD t\u0103ng m\u1ea1nh, Ho\u00e0ng H\u00e0 PC ch\u1ec9 b\u00e1n\u00a0SSD\u00a0c\u00f9ng b\u1ed9 m\u00e1y!<\/strong><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

Do gi\u00e1 SSD t\u0103ng m\u1ea1nh, Ho\u00e0ng H\u00e0 PC ch\u1ec9 b\u00e1n\u00a0SSD\u00a0c\u00f9ng b\u1ed9 m\u00e1y!<\/strong><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 212, + "catPath": ":212:16:5", + "name": "SSD Samsung", + "url": "\/ssd-samsung" + }, + { + "id": 16, + "catPath": ":16:5", + "name": "\u1ed4 C\u1ee9ng SSD", + "url": "\/o-cung-the-ran-ssd" + } + ] + } + ] + }, + { + "id": 24, + "total": 6, + "list": [ + { + "id": 5982, + "productId": 5982, + "priceUnit": "chi\u1ebfc", + "marketPrice": 3200000, + "price": 2990000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 2990000, + "normal_price": 2990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-06-30 17:30:23", + "warranty": "24 th\u00e1ng", + "productName": "T\u1ea3n nhi\u1ec7t n\u01b0\u1edbc Asus Prime LC 360 ARGB LCD", + "productSummary": "

Socket h\u1ed7 tr\u1ee3:\u00a0Intel: LGA 1851, 1700, 1200, 115x\/ AMD: AM5,AM4<\/p>\r\n

T\u1ed1c \u0111\u1ed9 qu\u1ea1t:\u00a0800 - 2500 RPM +\/- 10%<\/strong><\/p>\r\n

T\u1ed1c \u0111\u1ed9 b\u01a1m:\u00a0800 - 3600 RPM\u00b1 300 RPM<\/strong><\/p>\r\n

H\u1ec7 th\u1ed1ng ARGB th\u00f4ng minh<\/p>\r\n

M\u00e0n h\u00ecnh LED\u00a02.3-inch LCD<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5982_prime_lc_360_argb_lcd_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5982_prime_lc_360_argb_lcd_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5982_prime_lc_360_argb_lcd_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5982_prime_lc_360_argb_lcd_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5982_prime_lc_360_argb_lcd_ha1s.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5982_prime_lc_360_argb_lcd_ha1s.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5982_prime_lc_360_argb_lcd_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5982_prime_lc_360_argb_lcd_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5982_prime_lc_360_argb_lcd_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5982_prime_lc_360_argb_lcd_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5982_prime_lc_360_argb_lcd_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5982_prime_lc_360_argb_lcd_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5982_prime_lc_360_argb_lcd_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5982_prime_lc_360_argb_lcd_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5982_prime_lc_360_argb_lcd_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5982_prime_lc_360_argb_lcd_ha6.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/tan-nhiet-nuoc-asus-prime-lc-360-argb-lcd", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 1438, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3690000, + "type": "deal", + "type_id": 301 + } + ], + "categories": [ + { + "id": 223, + "catPath": ":223:28:24", + "name": "T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc Asus", + "url": "\/tan-nhiet-nuoc-asus" + } + ] + }, + { + "id": 6032, + "productId": 6032, + "priceUnit": "chi\u1ebfc", + "marketPrice": 2500000, + "price": 2290000, + "price_off": 8, + "currency": "vnd", + "sale_rules": { + "price": 2290000, + "normal_price": 2290000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-11-03 16:42:40", + "warranty": "36 th\u00e1ng", + "productName": "T\u1ea3n nhi\u1ec7t n\u01b0\u1edbc Thermaltake LA360-S ARGB Sync Black", + "productSummary": "

T\u01b0\u01a1ng th\u00edch: Intel\uff1aIntel LGA 2066\/ 2011-3\/ 2011\/ 1851\/ 1700\/ 1200\/ 1156\/ 1155\/ 1151\/ 1150<\/p>\r\n

AMD AM5\/ AM4\/ AM3+\/ AM3<\/p>\r\n

T\u1ed1c \u0111\u1ed9 \u0111\u1ecbnh m\u1ee9c c\u1ee7a b\u01a1m\uff1a1500~2500 RPM<\/strong><\/p>\r\n

T\u1ed1c \u0111\u1ed9 \u0111\u1ecbnh m\u1ee9c c\u1ee7a qu\u1ea1t\uff1a600~2500 RPM<\/strong><\/p>\r\n

LCD: 2.4 inch \u201d Segment<\/strong><\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6032_la360_s_argb_sync_black_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6032_la360_s_argb_sync_black_ha4.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6032_la360_s_argb_sync_black_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6032_la360_s_argb_sync_black_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6032_la360_s_argb_sync_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6032_la360_s_argb_sync_black_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6032_la360_s_argb_sync_black_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6032_la360_s_argb_sync_black_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6032_la360_s_argb_sync_black_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6032_la360_s_argb_sync_black_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6032_la360_s_argb_sync_black_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6032_la360_s_argb_sync_black_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6032_la360_s_argb_sync_black_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6032_la360_s_argb_sync_black_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/tan-nhiet-nuoc-thermaltake-la360-s-argb-sync-black", + "brand": { + "id": 40, + "brand_index": "thermaltake", + "name": "THERMALTAKE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/thermaltake.png", + "url": "\/brand\/thermaltake" + }, + "visit": 1221, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "other": [ + { + "id": 0, + "title": "

\ud83c\udf81 Gi\u00e1 \u01b0u \u0111\u00e3i c\u00f9ng Thermaltake \u0111\u00f3n Gi\u00e1ng sinh 2025<\/strong><\/span><\/p>\r\n

B\u1ea3o h\u00e0nh 3 n\u0103m l\u1ed7i 1 \u0111\u1ed5i 1<\/strong><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ], + "all": [ + { + "id": 0, + "title": "

\ud83c\udf81 Gi\u00e1 \u01b0u \u0111\u00e3i c\u00f9ng Thermaltake \u0111\u00f3n Gi\u00e1ng sinh 2025<\/strong><\/span><\/p>\r\n

B\u1ea3o h\u00e0nh 3 n\u0103m l\u1ed7i 1 \u0111\u1ed5i 1<\/strong><\/span><\/p>", + "type": "", + "thumbnail": "", + "cash_value": 0, + "quantity": 1, + "from_time": "", + "to_time": "", + "url": "", + "description": "", + "status": 1 + } + ] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3690000, + "type": "deal", + "type_id": 301 + } + ], + "categories": [ + { + "id": 228, + "catPath": ":228:28:24", + "name": "T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc Thermaltake", + "url": "\/tan-nhiet-nuoc-thermaltake" + } + ] + }, + { + "id": 5969, + "productId": 5969, + "priceUnit": "chi\u1ebfc", + "marketPrice": 3200000, + "price": 2990000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 2990000, + "normal_price": 2990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-06-30 17:30:31", + "warranty": "24 th\u00e1ng", + "productName": "T\u1ea3n nhi\u1ec7t n\u01b0\u1edbc CPU Deepcool LT360 ARGB Black", + "productSummary": "

Socket h\u1ed7 tr\u1ee3:\u00a0Intel LGA1851\/ 1700\/ 1200\/ 1151\/ 1150\/ 1155 v\u00e0 AMD AM5\/ AM4<\/p>\r\n

T\u1ed1c \u0111\u1ed9 qu\u1ea1t:\u00a0600~2400 RPM\u00b110%<\/strong><\/p>\r\n

T\u1ed1c \u0111\u1ed9 b\u01a1m:\u00a03400 RPM\u00b110%<\/strong><\/p>\r\n

H\u1ec7 th\u1ed1ng RGB th\u00f4ng minh<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5969_deepcool_lt360_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5969_deepcool_lt360_black_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5969_deepcool_lt360_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5969_deepcool_lt360_black_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5969_deepcool_lt360_black_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5969_deepcool_lt360_black_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5969_deepcool_lt360_black_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5969_deepcool_lt360_black_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5969_deepcool_lt360_black_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5969_deepcool_lt360_black_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5969_deepcool_lt360_black_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5969_deepcool_lt360_black_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5969_deepcool_lt360_black_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5969_deepcool_lt360_black_ha6.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/tan-nhiet-nuoc-cpu-deepcool-lt360-argb-black", + "brand": { + "id": 46, + "brand_index": "deepcool", + "name": "DEEPCOOL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/deepcool.png", + "url": "\/brand\/deepcool" + }, + "visit": 1609, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3690000, + "type": "deal", + "type_id": 301 + } + ], + "categories": [ + { + "id": 233, + "catPath": ":233:28:24", + "name": "T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc DeepCool", + "url": "\/tan-nhiet-nuoc-deepcool" + } + ] + }, + { + "id": 5795, + "productId": 5795, + "priceUnit": "chi\u1ebfc", + "marketPrice": 6000000, + "price": 5590000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 5590000, + "normal_price": 5590000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-06-16 14:02:05", + "warranty": "24 th\u00e1ng", + "productName": "T\u1ea3n nhi\u1ec7t n\u01b0\u1edbc Thermaltake MAGFloe 420 Ultra ARGB Black", + "productSummary": "

T\u01b0\u01a1ng th\u00edch: Intel LGA 2066\/ 2011-3\/ 2011\/ 1851\/ 1700\/ 1200\/ 1156\/ 1155\/ 1151\/ 1150<\/p>\r\n

AMD AM5\/ AM4\/ AM3+\/ AM3\/ AM2+\/ AM2\/ FM2\/ FM1<\/p>\r\n

T\u1ed1c \u0111\u1ed9 \u0111\u1ecbnh m\u1ee9c c\u1ee7a b\u01a1m\uff1a1500~3300 RPM<\/strong><\/p>\r\n

T\u1ed1c \u0111\u1ed9 \u0111\u1ecbnh m\u1ee9c c\u1ee7a qu\u1ea1t\uff1a500~2000 RPM<\/strong><\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5795_thermaltake_magfloe_420_ultra_argb_black_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5795_thermaltake_magfloe_420_ultra_argb_black_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/tan-nhiet-nuoc-thermaltake-magfloe-420-ultra-argb-black", + "brand": { + "id": 40, + "brand_index": "thermaltake", + "name": "THERMALTAKE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/thermaltake.png", + "url": "\/brand\/thermaltake" + }, + "visit": 883, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3690000, + "type": "deal", + "type_id": 301 + } + ], + "categories": [ + { + "id": 228, + "catPath": ":228:28:24", + "name": "T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc Thermaltake", + "url": "\/tan-nhiet-nuoc-thermaltake" + } + ] + }, + { + "id": 5536, + "productId": 5536, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 2990000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 2990000, + "normal_price": 2990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2024-12-01 15:18:04", + "warranty": "24 th\u00e1ng", + "productName": "T\u1ea3n nhi\u1ec7t n\u01b0\u1edbc CPU Thermalright Grand Vision 360 ARGB Black", + "productSummary": "

Socket h\u1ed7 tr\u1ee3: LGA115X\/ 1200\/ 1700\/ 1851\/ 2011\/ 2066 v\u00e0 AM4\/ AM5<\/p>\r\n

T\u1ed1c \u0111\u1ed9 b\u01a1m:\u00a06400 RPM\u00b110% (MAX)<\/p>\r\n

T\u1ed1c \u0111\u1ed9 qu\u1ea1t:\u00a02150 RPM\u00b110% (MAX)<\/p>\r\n

H\u1ec7 th\u1ed1ng RGB th\u00f4ng minh<\/p>\r\n

M\u00e0n h\u00ecnh LCD 3.4 inch<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5536_grand_vision_360_argb_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5536_grand_vision_360_argb_black_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5536_grand_vision_360_argb_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5536_grand_vision_360_argb_black_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5536_grand_vision_360_argb_black_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5536_grand_vision_360_argb_black_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5536_grand_vision_360_argb_black_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5536_grand_vision_360_argb_black_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5536_grand_vision_360_argb_black_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5536_grand_vision_360_argb_black_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5536_grand_vision_360_argb_black_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5536_grand_vision_360_argb_black_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5536_grand_vision_360_argb_black_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5536_grand_vision_360_argb_black_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5536_grand_vision_360_argb_black_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5536_grand_vision_360_argb_black_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5536_grand_vision_360_argb_black_ha8.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5536_grand_vision_360_argb_black_ha8.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/tan-nhiet-nuoc-cpu-thermalright-grand-vision-360-argb-black", + "brand": { + "id": 55, + "brand_index": "thermalright", + "name": "THERMALRIGHT", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/thermalright.jpg", + "url": "\/brand\/thermalright" + }, + "visit": 4013, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 3690000, + "type": "deal", + "type_id": 301 + } + ], + "categories": [ + { + "id": 227, + "catPath": ":227:28:24", + "name": "T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc Thermalright", + "url": "\/tan-nhiet-nuoc-thermalright" + } + ] + }, + { + "id": 5446, + "productId": 5446, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 3690000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 3690000, + "normal_price": 3990000, + "min_purchase": 1, + "max_purchase": 10, + "remain_quantity": 1, + "from_time": 1767574800, + "to_time": 1769995800, + "type": "deal", + "type_id": 301 + }, + "lastUpdate": "2025-10-09 15:11:45", + "warranty": "24 th\u00e1ng", + "productName": "T\u1ea3n nhi\u1ec7t n\u01b0\u1edbc CPU Deepcool MYSTIQUE 360 White", + "productSummary": "

Socket h\u1ed7 tr\u1ee3: LGA1700\/ 1200\/ 1151\/ 1150\/ 1155 v\u00e0\u00a0AM5\/ AM4<\/p>\r\n

T\u1ed1c \u0111\u1ed9 b\u01a1m:\u00a03400 RPM\u00b110%<\/p>\r\n

T\u1ed1c \u0111\u1ed9 qu\u1ea1t:\u00a0500~2150 RPM\u00b110%<\/p>\r\n

H\u1ec7 th\u1ed1ng RGB th\u00f4ng minh<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_white_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_white_sale.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_ha9.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_ha9.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_ha8.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_ha8.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5446_mystique_360_white_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5446_mystique_360_white_sale.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/tan-nhiet-nuoc-cpu-deepcool-mystique-360-white", + "brand": { + "id": 46, + "brand_index": "deepcool", + "name": "DEEPCOOL", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/deepcool.png", + "url": "\/brand\/deepcool" + }, + "visit": 1170, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [ + { + "id": 301, + "pro_id": 5446, + "title": "T\u1ea3n nhi\u1ec7t n\u01b0\u1edbc CPU Deepcool MYSTIQUE 360 White", + "price": 3690000, + "quantity": 10, + "sale_quantity": 0, + "min_purchase": 1, + "max_purchase": 10, + "is_featured": 0, + "from_time": 1767574800, + "to_time": 1769995800, + "discount_type": "percent", + "discount_value": 0, + "is_started": 1 + } + ], + "pricing_traces": [ + { + "price": 3690000, + "type": "deal", + "type_id": 301 + } + ], + "categories": [ + { + "id": 233, + "catPath": ":233:28:24", + "name": "T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc DeepCool", + "url": "\/tan-nhiet-nuoc-deepcool" + } + ] + } + ] + }, + { + "id": 25, + "total": 18, + "list": [ + { + "id": 5534, + "productId": 5534, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 0, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 0, + "normal_price": 0, + "min_purchase": 1, + "max_purchase": 0, + "remain_quantity": 0, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-12-01 16:22:33", + "warranty": "12 th\u00e1ng", + "productName": "B\u00e0n ph\u00edm c\u01a1 DareU EK104 White Black", + "productSummary": "

S\u1eed d\u1ee5ng swich DareU Dream (linear) cao c\u1ea5p, \u0111\u00e3 \u0111\u01b0\u1ee3c lube s\u1eb5n.<\/p>\r\n

Stabilizer \u0111\u01b0\u1ee3c c\u00e2n ch\u1ec9nh v\u00e0 lube s\u1eb5n<\/p>\r\n

Switch: DareU DREAM\u00a0<\/p>\r\n

Keycap ABS Doubleshot ch\u1ea5t l\u01b0\u1ee3ng cao<\/p>\r\n

LED 7 m\u00e0u chia theo v\u00f9ng<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5534_ek104_white_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5534_ek104_white_black_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5534_ek104_white_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5534_ek104_white_black_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5534_ek104_white_black_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5534_ek104_white_black_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_5534_ek104_white_black_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_5534_ek104_white_black_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/ban-phim-co-dareu-ek104-white-black", + "brand": { + "id": 5, + "brand_index": "dareu", + "name": "DAREU", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/dareu.jpg", + "url": "\/brand\/dareu" + }, + "visit": 2286, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 0, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 390000, + "type": "deal", + "type_id": 169 + } + ], + "categories": [ + { + "id": 18, + "catPath": ":18:25", + "name": "B\u00e0n Ph\u00edm", + "url": "\/ban-phim" + } + ] + }, + { + "id": 6035, + "productId": 6035, + "priceUnit": "chi\u1ebfc", + "marketPrice": 500000, + "price": 450000, + "price_off": 10, + "currency": "vnd", + "sale_rules": { + "price": 450000, + "normal_price": 450000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-06-30 17:43:45", + "warranty": "12 th\u00e1ng", + "productName": "Chu\u1ed9t Fuhlen G90 Pro X Black", + "productSummary": "

Chu\u1ea9n k\u1ebft n\u1ed1i: D\u00e2y USB<\/p>\r\n

Thi\u1ebft k\u1ebf b\u1ea5t \u0111\u1ed1i x\u1ee9ng d\u00e0nh cho ng\u01b0\u1eddi thu\u1eadn tay ph\u1ea3i.<\/p>\r\n

M\u1eaft c\u1ea3m bi\u1ebfn\u00a0PWM3325<\/p>\r\n

\u0110\u1ed9 ph\u00e2n gi\u1ea3i:\u00a08.000 DPI<\/p>\r\n

Led: RGB Logo<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6035_g90_pro_x_black_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6035_g90_pro_x_black_ha4.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6035_g90_pro_x_black_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6035_g90_pro_x_black_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6035_g90_pro_x_black_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6035_g90_pro_x_black_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6035_g90_pro_x_black_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6035_g90_pro_x_black_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6035_g90_pro_x_black_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6035_g90_pro_x_black_ha1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/chuot-fuhlen-g90-pro-x-black", + "brand": { + "id": 64, + "brand_index": "fuhlen", + "name": "FUHLEN", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/fuhlen.jpg", + "url": "\/brand\/fuhlen" + }, + "visit": 906, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 390000, + "type": "deal", + "type_id": 169 + } + ], + "categories": [ + { + "id": 19, + "catPath": ":19:25", + "name": "Chu\u1ed9t M\u00e1y T\u00ednh", + "url": "\/chuot-may-tinh" + } + ] + }, + { + "id": 6061, + "productId": 6061, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 1290000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 1290000, + "normal_price": 1490000, + "min_purchase": 1, + "max_purchase": 10, + "remain_quantity": 1, + "from_time": 1767574800, + "to_time": 1769995800, + "type": "deal", + "type_id": 361 + }, + "lastUpdate": "2026-01-05 10:53:38", + "warranty": "12 th\u00e1ng", + "productName": "B\u00e0n ph\u00edm c\u01a1 DareU EK106 PRO Black Golden Cloud switch", + "productSummary": "

H\u1ed7 tr\u1ee3 3 k\u1ebft n\u1ed1i: Wireless 2.4 Ghz, Bluetooth v\u00e0 c\u00f3 d\u00e2y USB<\/p>\r\n

H\u1ed7 tr\u1ee3 hotswap switch<\/p>\r\n

LED RGB 16.8 tri\u1ec7u m\u00e0u<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6061_ek106_pro_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6061_ek106_pro_sale.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6061_ek106_pro_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6061_ek106_pro_sale.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6061_ek106_pro_black_golden_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6061_ek106_pro_black_golden_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6061_ek106_pro_black_golden_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6061_ek106_pro_black_golden_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6061_ek106_pro_black_golden_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6061_ek106_pro_black_golden_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6061_ek106_pro_black_golden_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6061_ek106_pro_black_golden_ha1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/ban-phim-co-dareu-ek106-pro-black-golden-cloud", + "brand": { + "id": 5, + "brand_index": "dareu", + "name": "DAREU", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/dareu.jpg", + "url": "\/brand\/dareu" + }, + "visit": 820, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [ + { + "id": 361, + "pro_id": 6061, + "title": "B\u00e0n ph\u00edm c\u01a1 DareU EK106 PRO Black Golden Cloud switch", + "price": 1290000, + "quantity": 10, + "sale_quantity": 2, + "min_purchase": 1, + "max_purchase": 10, + "is_featured": 0, + "from_time": 1767574800, + "to_time": 1769995800, + "discount_type": "percent", + "discount_value": 0, + "is_started": 1 + } + ], + "pricing_traces": [ + { + "price": 390000, + "type": "deal", + "type_id": 169 + }, + { + "price": 1290000, + "type": "deal", + "type_id": 361 + } + ], + "categories": [ + { + "id": 18, + "catPath": ":18:25", + "name": "B\u00e0n Ph\u00edm", + "url": "\/ban-phim" + } + ] + }, + { + "id": 6317, + "productId": 6317, + "priceUnit": "chi\u1ebfc", + "marketPrice": 2300000, + "price": 2149000, + "price_off": 7.000000000000001, + "currency": "vnd", + "sale_rules": { + "price": 2149000, + "normal_price": 2149000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-09-03 14:33:48", + "warranty": "24 th\u00e1ng", + "productName": "Tai nghe Asus ROG Delta Core (Jack 3.5mm\/ \u0110en x\u00e1m)", + "productSummary": "

K\u1ebft n\u1ed1i:\u00a0Jack 3.5mm<\/p>\r\n

\u0110\u1ed9 l\u1edbn Driver: \u00f850mm<\/p>\r\n

Tr\u1edf kh\u00e1ng tr\u1edf kh\u00e1ng: 32\u03a9<\/p>\r\n

T\u1ea7n s\u1ed1 tai nghe:\u00a020 ~ 40000 Hz<\/p>\r\n

T\u1ea7n s\u1ed1\u00a0microphone:\u00a0100 ~ 10000 Hz<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6317_rog_delta_core_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6317_rog_delta_core_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6317_rog_delta_core_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6317_rog_delta_core_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6317_rog_delta_core_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6317_rog_delta_core_ha2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6317_rog_delta_core_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6317_rog_delta_core_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6317_rog_delta_core_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6317_rog_delta_core_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6317_rog_delta_core_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6317_rog_delta_core_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6317_rog_delta_core_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6317_rog_delta_core_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6317_rog_delta_core_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6317_rog_delta_core_ha4.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/tai-nghe-asus-rog-delta-core", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 107, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 390000, + "type": "deal", + "type_id": 169 + }, + { + "price": 1290000, + "type": "deal", + "type_id": 361 + } + ], + "categories": [ + { + "id": 26, + "catPath": ":26:25", + "name": "Tai Nghe", + "url": "\/tai-nghe" + } + ] + }, + { + "id": 6321, + "productId": 6321, + "priceUnit": "chi\u1ebfc", + "marketPrice": 6000000, + "price": 5790000, + "price_off": 4, + "currency": "vnd", + "sale_rules": { + "price": 5790000, + "normal_price": 5790000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-09-03 16:18:56", + "warranty": "24 th\u00e1ng", + "productName": "Tai nghe Asus ROG Delta II Wireless (Bluetooth\/ RF 2.4 GHz\/ RGB\/ M\u00e0u \u0111en)", + "productSummary": "

K\u1ebft n\u1ed1i:\u00a0Bluetooth\u00ae, RF 2.4 GHz, Jack 3.5mm<\/p>\r\n

\u0110\u1ed9 l\u1edbn Driver: \u00f850mm<\/p>\r\n

Tr\u1edf kh\u00e1ng tr\u1edf kh\u00e1ng: 32\u03a9<\/p>\r\n

T\u1ea7n s\u1ed1 tai nghe:\u00a020Hz - 20KHz<\/p>\r\n

T\u1ea7n s\u1ed1\u00a0microphone:\u00a0100Hz - 10KHz<\/p>\r\n

Pin:\u00a01800 mAh<\/p>\r\n

Lighting: RGB<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6321_rog_delta_ii_wireless_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6321_rog_delta_ii_wireless_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6321_rog_delta_ii_wireless_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6321_rog_delta_ii_wireless_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6321_rog_delta_ii_wireless_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6321_rog_delta_ii_wireless_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6321_rog_delta_ii_wireless_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6321_rog_delta_ii_wireless_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6321_rog_delta_ii_wireless_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6321_rog_delta_ii_wireless_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6321_rog_delta_ii_wireless_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6321_rog_delta_ii_wireless_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/tai-nghe-asus-rog-delta-ii-wireless", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 124, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 390000, + "type": "deal", + "type_id": 169 + }, + { + "price": 1290000, + "type": "deal", + "type_id": 361 + } + ], + "categories": [ + { + "id": 26, + "catPath": ":26:25", + "name": "Tai Nghe", + "url": "\/tai-nghe" + } + ] + }, + { + "id": 6323, + "productId": 6323, + "priceUnit": "chi\u1ebfc", + "marketPrice": 4000000, + "price": 3490000, + "price_off": 13, + "currency": "vnd", + "sale_rules": { + "price": 3490000, + "normal_price": 3490000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-09-03 16:19:43", + "warranty": "24 th\u00e1ng", + "productName": "Tai nghe Asus ROG Pelta Wireless (Bluetooth\/ RF 2.4 GHz\/ USB-C\/ RGB\/ M\u00e0u \u0111en)", + "productSummary": "

K\u1ebft n\u1ed1i:\u00a0Bluetooth, RF 2.4 GHz, USB-C<\/p>\r\n

\u0110\u1ed9 l\u1edbn Driver: \u00f850mm<\/p>\r\n

Tr\u1edf kh\u00e1ng tr\u1edf kh\u00e1ng: 32\u03a9<\/p>\r\n

T\u1ea7n s\u1ed1 tai nghe:\u00a020Hz - 20KHz<\/p>\r\n

T\u1ea7n s\u1ed1\u00a0microphone:\u00a0100Hz - 10KHz<\/p>\r\n

Pin:\u00a0900 mAh<\/p>\r\n

Lighting: RGB<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6323_rog_pelta_wireless_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6323_rog_pelta_wireless_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6323_rog_pelta_wireless_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6323_rog_pelta_wireless_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6323_rog_pelta_wireless_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6323_rog_pelta_wireless_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6323_rog_pelta_wireless_ha23.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6323_rog_pelta_wireless_ha23.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6323_rog_pelta_wireless_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6323_rog_pelta_wireless_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6323_rog_pelta_wireless_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6323_rog_pelta_wireless_ha5.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/tai-nghe-asus-rog-pelta-wireless", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 127, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 390000, + "type": "deal", + "type_id": 169 + }, + { + "price": 1290000, + "type": "deal", + "type_id": 361 + } + ], + "categories": [ + { + "id": 26, + "catPath": ":26:25", + "name": "Tai Nghe", + "url": "\/tai-nghe" + } + ] + }, + { + "id": 6324, + "productId": 6324, + "priceUnit": "chi\u1ebfc", + "marketPrice": 6000000, + "price": 5400000, + "price_off": 10, + "currency": "vnd", + "sale_rules": { + "price": 5400000, + "normal_price": 5400000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-09-03 15:46:11", + "warranty": "24 th\u00e1ng", + "productName": "B\u00e0n ph\u00edm c\u01a1 Asus ROG Strix Flare II Animate (USB\/ RGB\/ NX Blue\/ M\u00e0u \u0111en)", + "productSummary": "

K\u1ebft n\u1ed1i: USB 2.0 (TypeC sang TypeA)<\/p>\r\n

Key Switch:\u00a0ROG NX Blue<\/p>\r\n

Size: 100%<\/p>\r\n

T\u1ea5t c\u1ea3 c\u00e1c ph\u00edm \u0111\u1ec1u c\u00f3 th\u1ec3 l\u1eadp tr\u00ecnh<\/p>\r\n

M\u00e0n h\u00ecnh LED AniMe Matrix\u2122<\/p>\r\n

\u0110\u00e8n LED RGB tr\u00ean t\u1eebng ph\u00edm<\/p>\r\n

\u0110\u00e8n LED d\u01b0\u1edbi m\u1eb7t tr\u01b0\u1edbc b\u00e0n ph\u00edm<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6324_rog_strix_flare_ii_animate_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6324_rog_strix_flare_ii_animate_ha1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6324_rog_strix_flare_ii_animate_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6324_rog_strix_flare_ii_animate_ha1.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6324_rog_strix_flare_ii_animate_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6324_rog_strix_flare_ii_animate_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6324_rog_strix_flare_ii_animate_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6324_rog_strix_flare_ii_animate_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6324_rog_strix_flare_ii_animate_ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6324_rog_strix_flare_ii_animate_ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6324_rog_strix_flare_ii_animate_ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6324_rog_strix_flare_ii_animate_ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/ban-phim-co-asus-rog-strix-flare-ii-animate", + "brand": { + "id": 2, + "brand_index": "asus", + "name": "ASUS", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/asus.jpg", + "url": "\/brand\/asus" + }, + "visit": 230, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 390000, + "type": "deal", + "type_id": 169 + }, + { + "price": 1290000, + "type": "deal", + "type_id": 361 + } + ], + "categories": [ + { + "id": 18, + "catPath": ":18:25", + "name": "B\u00e0n Ph\u00edm", + "url": "\/ban-phim" + } + ] + }, + { + "id": 6437, + "productId": 6437, + "priceUnit": "chi\u1ebfc", + "marketPrice": 4500000, + "price": 3990000, + "price_off": 11, + "currency": "vnd", + "sale_rules": { + "price": 3990000, + "normal_price": 3990000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2025-10-14 15:28:41", + "warranty": "12 th\u00e1ng", + "productName": "B\u00e0n ph\u00edm c\u01a1 kh\u00f4ng d\u00e2y Machenike KT68 Pro White North Pole Brown Switch", + "productSummary": "

Layout: 68 ph\u00edm<\/p>\r\n

K\u1ebft n\u1ed1i:\u00a0Wired\/ Bluetooth\/ 2.4G Wireless<\/p>\r\n

Switch:\u00a0Gateron G Pro 2.0<\/p>\r\n

Hot Swapping.\u00a0Audio visualizer. Smart Screen<\/span><\/p>\r\n

\u0110\u00e8n n\u1ec1n RGB<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white_ha10.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white_ha10.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white_ha9.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white_ha9.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white_ha8.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white_ha8.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white_ha7.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white_ha7.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white_ha6.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white_ha6.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white_ha5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white_ha5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white_ha4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white_ha4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white__ha3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white__ha3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_6437_kt68_pro_white__ha2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_6437_kt68_pro_white__ha2.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/ban-phim-machenike-kt68-pro-white", + "brand": { + "id": 151, + "brand_index": "machenike", + "name": "MACHENIKE", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/machenike.png", + "url": "\/brand\/machenike" + }, + "visit": 155, + "rating": 0, + "reviewCount": 0, + "review": { + "rate": 0, + "total": 0 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [ + { + "price": 390000, + "type": "deal", + "type_id": 169 + }, + { + "price": 1290000, + "type": "deal", + "type_id": 361 + } + ], + "categories": [ + { + "id": 18, + "catPath": ":18:25", + "name": "B\u00e0n Ph\u00edm", + "url": "\/ban-phim" + } + ] + }, + { + "id": 4999, + "productId": 4999, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 390000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 390000, + "normal_price": 590000, + "min_purchase": 1, + "max_purchase": 10, + "remain_quantity": 1, + "from_time": 1767574800, + "to_time": 1769995800, + "type": "deal", + "type_id": 169 + }, + "lastUpdate": "2025-12-29 13:49:46", + "warranty": "12 th\u00e1ng", + "productName": "Chu\u1ed9t Gaming Motospeed V100 Pro Red True Esport", + "productSummary": "

C\u1ea3m bi\u1ebfn k\u00e9p, C\u1ea3m bi\u1ebfn quang PAW3327 v\u00e0 LOD<\/p>\r\n

N\u00fat b\u1ea5m Huano \u0111\u1ed9 b\u1ec1n 20 tri\u1ec7u l\u1ea7n<\/p>\r\n

D\u00e2y t\u00edn hi\u1ec7u b\u1ecdc d\u00f9 m\u1ec1m \u0111\u1ed9 d\u00e0i 1,7m, ch\u1ed1ng nhi\u1ec5u, \u0111\u1ea7u c\u1eafm USB m\u1ea1 v\u00e0ng<\/p>\r\n

Ch\u00e2n \u0111\u1ebf Teflon b\u1ea3n l\u1edbn<\/p>", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4999_v100_pro_red_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4999_v100_pro_red_sale.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4999_v100_pro_red_sale.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4999_v100_pro_red_sale.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_4999_v100pro_red_ha1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_4999_v100pro_red_ha1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/chuot-gaming-motospeed-v100-pro-red-true-esport", + "brand": { + "id": 92, + "brand_index": "motospeed", + "name": "MOTOSPEED", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/motospeed.jpg", + "url": "\/brand\/motospeed" + }, + "visit": 1465, + "rating": 5, + "reviewCount": 1, + "review": { + "rate": 5, + "total": 1 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": [], + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": [], + "weight": 0, + "promotion_price": null, + "deal_list": [ + { + "id": 169, + "pro_id": 4999, + "title": "Chu\u1ed9t gaming Motospeed V100 Pro Red True Esport", + "price": 390000, + "quantity": 10, + "sale_quantity": 7, + "min_purchase": 1, + "max_purchase": 10, + "is_featured": 0, + "from_time": 1767574800, + "to_time": 1769995800, + "discount_type": "percent", + "discount_value": 0, + "is_started": 1 + } + ], + "pricing_traces": [ + { + "price": 390000, + "type": "deal", + "type_id": 169 + } + ], + "categories": [ + { + "id": 19, + "catPath": ":19:25", + "name": "Chu\u1ed9t M\u00e1y T\u00ednh", + "url": "\/chuot-may-tinh" + } + ] + }, + { + "id": 3332, + "productId": 3332, + "priceUnit": "chi\u1ebfc", + "marketPrice": 0, + "price": 499000, + "price_off": "", + "currency": "vnd", + "sale_rules": { + "price": 499000, + "normal_price": 499000, + "min_purchase": 1, + "max_purchase": 1, + "remain_quantity": 1, + "from_time": 0, + "to_time": 0, + "type": "" + }, + "lastUpdate": "2022-03-19 15:06:21", + "warranty": "12 th\u00e1ng", + "productName": "Chu\u1ed9t m\u00e1y t\u00ednh Galax Slider-03 RGB Gaming", + "productSummary": "DPI: 7200\r\nMouse Backlighting: RGB\r\n\u0110\u1ed9 d\u00e0i c\u00e1p: 1.5M\r\nD\u1ea1ng c\u00e1p: USB 2.0 s\u1ee3i b\u1ec7n\r\nTr\u1ecdng l\u01b0\u1ee3ng: 121.7g (c\u00f3 c\u00e1p)\r\nK\u1ebft n\u1ed1i\uff1a USB\r\nPh\u1ea7n m\u1ec1m: kh\u00f4ng\r\nS\u1ed1 n\u00fat: 7 n\u00fat Macro c\u00f3 th\u1ec3 l\u1eadp tr\u00ecnh", + "package_accessory": "0", + "productImage": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3332_galax_slider_3_1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3332_galax_slider_3_1.jpg", + "original": "" + }, + "imageCollection": [ + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3332_", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3332_", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3332_galax_slider_3_5.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3332_galax_slider_3_5.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3332_galax_slider_3_4.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3332_galax_slider_3_4.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3332_galax_slider_3_3.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3332_galax_slider_3_3.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3332_galax_slider_3_2.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3332_galax_slider_3_2.jpg", + "original": "" + }, + "alt": "" + }, + { + "image": { + "small": "https:\/\/hoanghapccdn.com\/media\/product\/75_3332_galax_slider_3_1.jpg", + "large": "https:\/\/hoanghapccdn.com\/media\/product\/250_3332_galax_slider_3_1.jpg", + "original": "" + }, + "alt": "" + } + ], + "productUrl": "\/chuot-may-tinh-galax-slider-03-rgb-gaming", + "brand": { + "id": 16, + "brand_index": "galax", + "name": "GALAX", + "image": "https:\/\/hoanghapccdn.com\/media\/brand\/galax.jpg", + "url": "\/brand\/galax" + }, + "visit": 5923, + "rating": 5, + "reviewCount": 3810, + "review": { + "rate": 5, + "total": 3810 + }, + "comment": { + "rate": 0, + "total": 0 + }, + "quantity": 1, + "productSKU": "0", + "productModel": "", + "hasVAT": 0, + "condition": "0", + "config_count": 0, + "configurable": 0, + "component_count": 0, + "specialOffer": { + "all": [] + }, + "specialOfferGroup": [], + "productType": { + "isNew": 0, + "isHot": 1, + "isBestSale": 0, + "isSaleOff": 0, + "online-only": 0 + }, + "bulk_price": null, + "thum_poster": "0", + "thum_poster_type": "", + "addon": [], + "variants": [], + "variant_option": [], + "extend": null, + "weight": 0, + "promotion_price": null, + "deal_list": [], + "pricing_traces": [], + "categories": [ + { + "id": 19, + "catPath": ":19:25", + "name": "Chu\u1ed9t M\u00e1y T\u00ednh", + "url": "\/chuot-may-tinh" + } + ] + } + ] + } +]; \ No newline at end of file diff --git a/src/hooks/useCart.ts b/src/hooks/useCart.ts new file mode 100644 index 0000000..fc8a288 --- /dev/null +++ b/src/hooks/useCart.ts @@ -0,0 +1,53 @@ +'use client'; + +import { useEffect, useState, useCallback } from 'react'; +import { + getCartProductIds, + addProductToCart, + removeProductFromCart, + clearCart, +} from '../services/cart'; + +export function useCart() { + const [cartIds, setCartIds] = useState(null); + + // Load cart lần đầu + useEffect(() => { + setCartIds(getCartProductIds()); + }, []); + + const refresh = useCallback(() => { + setCartIds(getCartProductIds()); + }, []); + + const addToCart = useCallback((productId: number) => { + addProductToCart(productId); + refresh(); + }, [refresh]); + + const removeFromCart = useCallback((productId: number) => { + removeProductFromCart(productId); + refresh(); + }, [refresh]); + + const clear = useCallback(() => { + clearCart(); + setCartIds([]); + }, []); + + const isInCart = useCallback( + (productId: number) => cartIds?.includes(productId) ?? false, + [cartIds] + ); + + return { + cartIds: cartIds ?? [], + cartCount: cartIds?.length ?? 0, + loading: cartIds === null, + + addToCart, + removeFromCart, + clear, + isInCart, + }; +} diff --git a/src/hooks/useDealItem.ts b/src/hooks/useDealItem.ts new file mode 100644 index 0000000..bb586f1 --- /dev/null +++ b/src/hooks/useDealItem.ts @@ -0,0 +1,26 @@ +import { calculateDiscount } from "../lib/utils"; +import type { DealItemProps } from "../types/deal" + +export function useDealItem(item: DealItemProps) { + if (item.deal_time_left <= 0) return null; + + const productInfo = item.product_info; + const price = Number(item.price); + const marketPrice = Number(productInfo.price); + const discount = calculateDiscount(price, marketPrice); + + const remain = item.quantity - item.sale_quantity; + const saleRemainPercent = 100 - (item.sale_quantity / item.quantity) * 100; + + const specialOffer = productInfo?.specialOffer?.all?.[0]?.title ?? ''; + + return { + productInfo, + price, + marketPrice, + discount, + remain, + saleRemainPercent, + specialOffer, + }; +} diff --git a/src/lib/utils.tsx b/src/lib/utils.tsx new file mode 100644 index 0000000..f7909bd --- /dev/null +++ b/src/lib/utils.tsx @@ -0,0 +1,20 @@ +// Add tất cả sp trong data product vào 1 mảng +import { productList } from '@/data/products'; + +export function getAllProducts() { + return productList.flatMap((group:any) => group.list); +} + +// Format giá +export function formatPrice(amount: number) { + return amount.toLocaleString('vi-VN'); +} + +// Tính % giảm giá +export function calculateDiscount( + price: number, + marketPrice: number +) { + if (price <= 0 || marketPrice <= price) return 0; + return Math.ceil(((marketPrice - price) / marketPrice) * 100); +} \ No newline at end of file diff --git a/src/services/cart.ts b/src/services/cart.ts new file mode 100644 index 0000000..38c6ec0 --- /dev/null +++ b/src/services/cart.ts @@ -0,0 +1,48 @@ +'use client'; + +const CART_KEY = 'cart_product_ids'; + +// 1. Lấy danh sách ID +export function getCartProductIds(): number[] { + if (typeof window === 'undefined') return []; + + try { + const raw = localStorage.getItem(CART_KEY); + return raw ? (JSON.parse(raw) as number[]) : []; + } catch (error) { + console.error('Invalid cart data', error); + return []; + } +} + +// 2. Thêm sản phẩm +export function addProductToCart(productId: number) { + if (typeof window === 'undefined') return; + + const ids = getCartProductIds(); + + if (ids.includes(productId)) { + console.log('Product đã tồn tại:', productId); + return; + } + + ids.push(productId); + localStorage.setItem(CART_KEY, JSON.stringify(ids)); +} + +// 3. Xóa 1 sản phẩm +export function removeProductFromCart(productId: number) { + if (typeof window === 'undefined') return; + + const ids = getCartProductIds(); + const newIds = ids.filter(id => id !== productId); + + localStorage.setItem(CART_KEY, JSON.stringify(newIds)); +} + +// 4. Xóa giỏ hàng +export function clearCart() { + if (typeof window === 'undefined') return; + + localStorage.removeItem(CART_KEY); +} diff --git a/src/styles/pc_style.css b/src/styles/pc_style.css index 885f32e..3c9915f 100644 --- a/src/styles/pc_style.css +++ b/src/styles/pc_style.css @@ -208,6 +208,9 @@ body{min-width:1248px;background:#E8ECF6} .home-banner-container a{border-radius:8px;overflow:hidden;display:block;position:relative} .home-banner-container a:hover::before{width:120%;background-color:rgba(255,255,255,0);z-index:2;transition:.45s ease-out} .home-banner-container a::before{content:"";position:absolute;top:0;left:-15%;bottom:0;width:0;height:100%;background-color:rgba(255,255,255,0.5);transition:none;transform:skewX(-25deg)} +.home-banner-right a{margin-bottom: 16px;} +.home-banner-right a:last-child{margin-bottom: 0;} +.home-banner-left {max-height: 420px;overflow: hidden;} .deal-container{position:relative;/*background:linear-gradient(3.56deg,#41A7FF 16.18%,#114CDD 115.33%)*/} /*.deal-container::before{content:"";background:url(/images/deal-bg.png) no-repeat;z-index:1;position:absolute;top:0;right:0;height:50%;width:50%;opacity:.8;background-size:contain;background-position:bottom}*/ .deal-container .deal-time-holder{display:flex;align-items:center;color:#333;font-weight:700;font-size:18px;gap:24px;text-align:center} @@ -491,6 +494,7 @@ body{min-width:1248px;background:#E8ECF6} .footer-contact-info > p{font-size:20px;line-height:26px} .global-faq-container{padding-top:64px;padding-bottom:64px} .home-page .banner-slider{width:1196px} + .home-banner-left {max-height: 792px;} .deal-container .group-title a{font-size:18px} .home-categories-container .group-title{line-height:40px;font-size:32px} .home-categories-container .item{padding:8px;font-size:16px;line-height:20px} diff --git a/src/types/deal.ts b/src/types/deal.ts new file mode 100644 index 0000000..491477e --- /dev/null +++ b/src/types/deal.ts @@ -0,0 +1,8 @@ +// src/types/deal.ts +export type DealItemProps = { + deal_time_left: number; + price: number; + quantity: number; + sale_quantity: number; + product_info: any; +};