From 9486dabdb01c8ecff14e43a62f47ec9c6b4923ce Mon Sep 17 00:00:00 2001 From: tieptk Date: Tue, 6 Jan 2026 11:02:01 +0700 Subject: [PATCH] update --- src/app/[slug]/page.tsx | 3 + src/app/buildpc/Slider/index.tsx | 38 + src/app/buildpc/page.tsx | 85 + src/app/pages/Product/ProductHot/index.tsx | 80 + src/components/Product/BoxFilter/index.tsx | 22 +- src/components/common/BoxShowroom.tsx | 27 +- src/components/other/BoxHotline/index.tsx | 134 + .../other/Header/HeaderMid/index.tsx | 14 +- src/data/producthot/index.ts | 29269 ++++++++++++++++ src/lib/product/producthot/index.tsx | 15 + src/lib/resolvePageType.ts | 8 +- src/styles/buildpc.css | 1909 + src/styles/globals.css | 32 +- src/types/product/category/index.ts | 14 +- src/types/producthot/index.ts | 34 + 15 files changed, 31638 insertions(+), 46 deletions(-) create mode 100644 src/app/buildpc/Slider/index.tsx create mode 100644 src/app/buildpc/page.tsx create mode 100644 src/app/pages/Product/ProductHot/index.tsx create mode 100644 src/components/other/BoxHotline/index.tsx create mode 100644 src/data/producthot/index.ts create mode 100644 src/lib/product/producthot/index.tsx create mode 100644 src/styles/buildpc.css create mode 100644 src/types/producthot/index.ts diff --git a/src/app/[slug]/page.tsx b/src/app/[slug]/page.tsx index d261e6a..4040a43 100644 --- a/src/app/[slug]/page.tsx +++ b/src/app/[slug]/page.tsx @@ -6,6 +6,7 @@ import { resolvePageType } from '@/lib/resolvePageType'; import CategoryPage from '@/app/pages/Product/Category'; import ProductSearchPage from '@/app/pages/Product/ProductSearch'; import ProductDetailPage from '@/app/pages/Product/ProductDetail'; +import ProductHotPage from '@/app/pages/Product/ProductHot'; import ArticlePage from '@/app/pages/Article/HomeArticlePage'; import ArticleCategoryPage from '@/app/pages/Article/CategoryPage'; import ArticleDetailPage from '@/app/pages/Article/DetailPage'; @@ -23,6 +24,8 @@ export default function DynamicPage() { return ; case 'product-detail': return ; + case 'product-hot': + return ; case 'article-home': return ; case 'article-category': diff --git a/src/app/buildpc/Slider/index.tsx b/src/app/buildpc/Slider/index.tsx new file mode 100644 index 0000000..43f2bb0 --- /dev/null +++ b/src/app/buildpc/Slider/index.tsx @@ -0,0 +1,38 @@ +'use client'; +import { Swiper, SwiperSlide } from 'swiper/react'; +import { Autoplay, Navigation, Pagination } from 'swiper/modules'; +import Image from 'next/image'; +import Link from 'next/link'; +import { bannerData } from '@/data/banner'; + +const Slider = () => { + const dataSlider = bannerData[0].header; + + return ( +
+ + {dataSlider?.banner_buildpc?.map((banner, index) => ( + + + {banner.title} + + + ))} + +
+ ); +}; + +export default Slider; diff --git a/src/app/buildpc/page.tsx b/src/app/buildpc/page.tsx new file mode 100644 index 0000000..5e38cfe --- /dev/null +++ b/src/app/buildpc/page.tsx @@ -0,0 +1,85 @@ +import React from 'react'; +import '@styles/buildpc.css'; +import { Metadata } from 'next'; +import { Breadcrumb } from '@/components/Common/Breadcrumb'; + +import Slider from '@/app/buildpc/Slider'; + +export const metadata: Metadata = { + title: 'Build PC - Xây dựng cấu hình máy tính PC giá rẻ chuẩn nhất', + description: + 'Build pc gaming giá rẻ nhất 2025 - Tự build PC đơn giản nhất - Xây dựng cấu hình máy tính PC với mọi nhu cầu gaming, đồ họa, văn phòng phù hợp với ngân sách', +}; + +export default function BuildPcPage() { + const breadcrumbItems = [{ name: 'Build PC', url: '/buildpc' }]; + + return ( + <> +
+ +
+
+
+
+ + +

+ Build PC - Xây dựng cấu hình máy tính PC giá rẻ chuẩn nhất +

+

+ Chọn linh kiện xây dựng cấu hình - Tự build PC +

+ + {/* tab */} +
    +
  • + Cấu hình 1 +
  • +
  • + Cấu hình 2 +
  • +
  • + Cấu hình 3 +
  • +
  • + Cấu hình 4 +
  • +
  • + Cấu hình 5 +
  • +
+
+
+
+
+ + ); +} diff --git a/src/app/pages/Product/ProductHot/index.tsx b/src/app/pages/Product/ProductHot/index.tsx new file mode 100644 index 0000000..0efdcca --- /dev/null +++ b/src/app/pages/Product/ProductHot/index.tsx @@ -0,0 +1,80 @@ +'use client'; +import React from 'react'; +import Link from 'next/link'; + +import { ErrorLink } from '@/components/Common/error'; +import type { TypeProductHot } from '@/types/producthot'; +import { ProductHotPageData } from '@/data/producthot'; +import { findProductHotBySlug } from '@/lib/product/producthot'; + +import { Breadcrumb } from '@/components/Common/Breadcrumb'; +import BoxFilter from '@components/Product/BoxFilter'; +import BoxSort from '@components/Product/BoxSort'; +import ItemProduct from '@/components/Common/ItemProduct'; + +interface ProductHotPageProps { + slug: string; // khai báo prop slug +} + +const ProductHotPage: React.FC = ({ slug }) => { + const ProductHot = ProductHotPageData as unknown as TypeProductHot[]; + const Pages = findProductHotBySlug(slug, ProductHot); + + const breadcrumbItems = [ + { name: 'Trang chủ', url: '/' }, + { name: Pages?.title, url: Pages?.url }, + ]; + + if (!Pages) { + return ; + } + + // lấy sản phẩm + const products = Object.values(Pages.product_list); + + return ( + <> +
+ +
+
+
+
+

{Pages.title}

+ (Tổng {Pages.product_count} sản phẩm) +
+
+
+ {/* filter */} + + +
+ {/* filter sort */} + +
+ + {/* list product */} + +
+ {products.map((item, index) => ( + + ))} +
+
+ {Pages.paging_collection.map((item, index) => ( + + {item.name} + + ))} +
+
+
+ + ); +}; + +export default ProductHotPage; diff --git a/src/components/Product/BoxFilter/index.tsx b/src/components/Product/BoxFilter/index.tsx index 9f2e5bb..73e1570 100644 --- a/src/components/Product/BoxFilter/index.tsx +++ b/src/components/Product/BoxFilter/index.tsx @@ -40,13 +40,33 @@ const BoxFilter: React.FC = ({ filters }) => { )} + {/* Thương hiệu */} + {brand_filter_list && ( +
+

Thương hiệu:

+
+ {brand_filter_list.map((ItemBrand, index) => ( + + ))} +
+
+ )} + {/* chọn thiêu tiêu trí */} {attribute_filter_list && (

Chọn theo tiêu chí:

{/* thương hiệu */} - {brand_filter_list && brand_filter_list.length > 0 && ( + {brand_filter_list && (
{brand_filter_list[0].is_selected === '1' ? ( diff --git a/src/components/common/BoxShowroom.tsx b/src/components/common/BoxShowroom.tsx index a7ac4f9..1b24971 100644 --- a/src/components/common/BoxShowroom.tsx +++ b/src/components/common/BoxShowroom.tsx @@ -2,42 +2,41 @@ const BoxShowroom: React.FC = () => { return ( <> -
+

HỆ THỐNG SHOWROOM

-
+

1. Hà Nội

17 Hà Kế Tấn, Phường Phương Liệt, Hà Nội.

Giờ làm việc: 08:30 - 20:30

-
+
-

2. Hồ Chí Minh

249 Lý Thường Kiệt, Phường Phú Thọ, TP. Hồ Chí Minh

Giờ làm việc: 08:30 - 20:30

-
+
- +
+ +
); diff --git a/src/components/other/BoxHotline/index.tsx b/src/components/other/BoxHotline/index.tsx new file mode 100644 index 0000000..815511b --- /dev/null +++ b/src/components/other/BoxHotline/index.tsx @@ -0,0 +1,134 @@ +const BoxHotLine = () => { + return ( + +
+
+ +
+ +
+
+ +
+
+ ); +}; +export default BoxHotLine; diff --git a/src/components/other/Header/HeaderMid/index.tsx b/src/components/other/Header/HeaderMid/index.tsx index 39ae17d..3963ba8 100644 --- a/src/components/other/Header/HeaderMid/index.tsx +++ b/src/components/other/Header/HeaderMid/index.tsx @@ -4,6 +4,8 @@ import Image from 'next/image'; import Link from 'next/link'; import { FaMapMarkerAlt, FaBars } from 'react-icons/fa'; import BoxShowroom from '@/components/Common/BoxShowroom'; +import BoxHotLine from '../../BoxHotline'; + import { TypeCartItem } from '@/types/cart'; import { formatCurrency } from '@/lib/formatPrice'; @@ -30,6 +32,11 @@ const HeaderMid: React.FC = () => { modal?.showModal(); }; + const PopupHotLine = () => { + const modal = document.getElementById('boxHotline') as HTMLDialogElement; + modal?.showModal(); + }; + return (
@@ -89,15 +96,15 @@ const HeaderMid: React.FC = () => { Xây dựng cấu hình -

Khách hàng liên hệ - +

@@ -181,6 +188,7 @@ const HeaderMid: React.FC = () => {

+
); }; diff --git a/src/data/producthot/index.ts b/src/data/producthot/index.ts new file mode 100644 index 0000000..e09c28a --- /dev/null +++ b/src/data/producthot/index.ts @@ -0,0 +1,29269 @@ +import { TypeProductHot } from '@/types/producthot'; +export const ProductHotPageData: TypeProductHot[] = [ + { + keywords: 'S\u1ea3n ph\u1ea9m m\u1edbi', + description: 'S\u1ea3n ph\u1ea9m m\u1edbi', + title: 'S\u1ea3n ph\u1ea9m m\u1edbi', + favicon: '', + canonical: '', + image: '', + page_title: 'S\u1ea3n ph\u1ea9m m\u1edbi', + url: '/san-pham-moi', + other_filter_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?other_filter=in-stock', + key: 'in-stock', + name: 'C\u00f2n h\u00e0ng', + }, + ], + sort_by_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?sort=new', + key: 'new', + name: 'M\u1edbi nh\u1ea5t', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?sort=price-asc', + key: 'price-asc', + name: 'Gi\u00e1 t\u0103ng d\u1ea7n', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?sort=price-desc', + key: 'price-desc', + name: 'Gi\u00e1 gi\u1ea3m d\u1ea7n', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?sort=view', + key: 'view', + name: 'L\u01b0\u1ee3t xem', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?sort=comment', + key: 'comment', + name: 'Trao \u0111\u1ed5i', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?sort=rating', + key: 'rating', + name: '\u0110\u00e1nh gi\u00e1', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?sort=name', + key: 'name', + name: 'T\u00ean A->Z', + }, + ], + display_by_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?display=list', + key: 'list', + name: 'Danh s\u00e1ch', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?display=grid', + key: 'grid', + name: 'Xem nh\u00f3m', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?display=detail', + key: 'detail', + name: 'Chi ti\u1ebft', + }, + ], + paging_collection: [ + { + name: '1', + url: '\/san-pham-moi', + is_active: '1', + }, + { + name: '2', + url: '\/san-pham-moi?page=2', + is_active: '0', + }, + { + name: '3', + url: '\/san-pham-moi?page=3', + is_active: '0', + }, + { + name: '4', + url: '\/san-pham-moi?page=4', + is_active: '0', + }, + { + name: '5', + url: '\/san-pham-moi?page=5', + is_active: '0', + }, + { + name: '6', + url: '\/san-pham-moi?page=6', + is_active: '0', + }, + { + name: '7', + url: '\/san-pham-moi?page=7', + is_active: '0', + }, + ], + paging: + '
1<\/td><\/td>2<\/a><\/td><\/td>3<\/a><\/td><\/td>4<\/a><\/td><\/td>5<\/a><\/td><\/td>6<\/a><\/td><\/td>7<\/a><\/td><\/td><\/tr><\/table>', + paging_count: '7', + product_count: '194', + product_list: { + '26857': { + id: '26857', + productId: '26857', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3600000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3600000', + normal_price: '3600000', + min_purchase: '1', + max_purchase: '2298', + remain_quantity: '2298', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-13 14:13:54', + warranty: '60 Th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD Kingston SNV3S 1TB NVME M.2 2280 PCIE GEN 4X4 (SNV3S\/1000G)', + productSummary: + 'K\u00edch th\u01b0\u1edbc: M.2 2280\r\nGiao di\u1ec7n: PCIe 4.0 x4 NVMe\r\nDung l\u01b0\u1ee3ng: 1000GB\r\n\u0110\u1ecdc t\u1ed1i \u0111a: 6000 MB\/gi\u00e2y\r\nGhi t\u1ed1i \u0111a: 4000 MB\/gi\u00e2y', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26857-o-ssd-kingston-nv3-1000gb-nvme-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26857-o-ssd-kingston-nv3-1000gb-nvme-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26857-o-ssd-kingston-nv3-1000gb-nvme-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26857-o-ssd-kingston-nv3-1000gb-nvme-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26857-ncpc0278.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26857-ncpc0278.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26857-ncpc0282.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26857-ncpc0282.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26857-ncpc0277.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26857-ncpc0277.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26857-o-ssd-kingston-nv3-1000gb-nvme-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26857-o-ssd-kingston-nv3-1000gb-nvme-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26857-ncpc0284.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26857-ncpc0284.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26857-ncpc0286.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26857-ncpc0286.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26857-ncpc0289.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26857-ncpc0289.JPG', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-kingston-snv3s-1tb-nvme-m2-2280-pcie-gen-4x4-snv3s1000g', + brand: { + id: '45', + brand_index: 'kingston', + name: 'KINGSTON', + image: '', + url: '\/brand\/kingston', + }, + visit: '17438', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '2298', + productSKU: 'SSD0000169', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '248', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + id: '458', + catPath: ':458:3476:284:0', + name: '\u1ed4 c\u1ee9ng Kingston', + url: '\/o-cung-kingston', + }, + { + id: '284', + catPath: ':284:0', + name: 'THI\u1ebeT B\u1eca L\u01afU TR\u1eee', + url: '\/o-cung-hdd-ssd', + }, + { + id: '3274', + catPath: ':3274:284:0', + name: '\u1ed4 C\u1ee8NG SSD', + url: '\/o-cung-ssd', + }, + ], + }, + '26856': { + id: '26856', + productId: '26856', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '2200000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '2200000', + normal_price: '2200000', + min_purchase: '1', + max_purchase: '465', + remain_quantity: '465', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-13 14:00:02', + warranty: '60 Th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD Kingston SNV3S 500GB NVME M.2 2280 PCIE GEN 4X4 (SNV3S\/500G)', + productSummary: + 'K\u00edch th\u01b0\u1edbc: M.2 2280\r\nGiao di\u1ec7n: PCIe 4.0 x4 NVMe\r\nDung l\u01b0\u1ee3ng: 500GB\r\n\u0110\u1ecdc t\u1ed1i \u0111a: 5000 MB\/gi\u00e2y\r\nGhi t\u1ed1i \u0111a: 3000 MB\/gi\u00e2y', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26856-o-cung-ssd-kingston-nv3-500gb-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26856-o-cung-ssd-kingston-nv3-500gb-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26856-o-cung-ssd-kingston-nv3-500gb-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26856-o-cung-ssd-kingston-nv3-500gb-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26856-o-cung-ssd-kingston-nv3-500gb-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26856-o-cung-ssd-kingston-nv3-500gb-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26856-ncpc0262.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26856-ncpc0262.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26856-ncpc0268.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26856-ncpc0268.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26856-ncpc0267.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26856-ncpc0267.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26856-ncpc0264.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26856-ncpc0264.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26856-ncpc0274.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26856-ncpc0274.JPG', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-kingston-snv3s-500gb-nvme-m2-2280-pcie-gen-4x4-snv3s500g', + brand: { + id: '45', + brand_index: 'kingston', + name: 'KINGSTON', + image: '', + url: '\/brand\/kingston', + }, + visit: '7546', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '465', + productSKU: 'SSD0000168', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '74', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '458', + catPath: ':458:3476:284:0', + name: '\u1ed4 c\u1ee9ng Kingston', + url: '\/o-cung-kingston', + }, + { + id: '3490', + catPath: ':3490:3477:284:0', + name: '500GB', + url: '\/500gb', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + id: '3274', + catPath: ':3274:284:0', + name: '\u1ed4 C\u1ee8NG SSD', + url: '\/o-cung-ssd', + }, + { + id: '284', + catPath: ':284:0', + name: 'THI\u1ebeT B\u1eca L\u01afU TR\u1eee', + url: '\/o-cung-hdd-ssd', + }, + { + id: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + ], + }, + '26718': { + id: '26718', + productId: '26718', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '2350000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '2350000', + normal_price: '2350000', + min_purchase: '1', + max_purchase: '465', + remain_quantity: '465', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 11:57:55', + warranty: '36 Th\u00e1ng', + productName: 'RAM HIKSEMI ARMOR DDR4 16GB 3200MHZ- M\u00e0u \u0110en', + productSummary: + 'Dung l\u01b0\u1ee3ng: 16GB\r\nKi\u1ec3u ram: DDR4\r\nBus ram: 3200 MHz\r\n\u0110\u1ed9 tr\u1ec5: CL16', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26718-ram-hiksemi-armor-ddr4-16gb-3200mhz-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26718-ram-hiksemi-armor-ddr4-16gb-3200mhz-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26718-ram-hiksemi-armor-ddr4-16gb-3200mhz-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26718-ram-hiksemi-armor-ddr4-16gb-3200mhz-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26718-ram-hiksemi-armor-ddr4-16gb-3200mhz-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26718-ram-hiksemi-armor-ddr4-16gb-3200mhz-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26718-ram-hiksemi-armor-ddr4-16gb-3200mhz-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26718-ram-hiksemi-armor-ddr4-16gb-3200mhz-3.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ram-hiksemi-armor-ddr4-16gb-3200mhz', + brand: { + id: '211', + brand_index: 'hiksemi', + name: 'HIKSEMI', + image: '', + url: '\/brand\/hiksemi', + }, + visit: '6454', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '465', + productSKU: 'RAM00000272', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

\r\n
\r\n
\r\n

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n

 <\/div>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '
\r\n
\r\n
\r\n

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n

 <\/div>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '564', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '283', + catPath: ':283:3431:0', + name: 'Ram - B\u1ed9 nh\u1edb trong', + url: '\/ram', + }, + { + id: '3686', + catPath: ':3686:283:3431:0', + name: 'RAM HIKSEMI', + url: '\/ram-hiksemi', + }, + ], + }, + '26813': { + id: '26813', + productId: '26813', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '8500000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '8500000', + normal_price: '8500000', + min_purchase: '1', + max_purchase: '434', + remain_quantity: '434', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-16 09:59:55', + warranty: '36 Th\u00e1ng', + productName: + 'RAM CORSAIR VENGEANCE RGB 32GB (2x16GB) DDR5 bus 6000MHz Black (CMH32GX5M2E6000C36)', + productSummary: + 'Dung l\u01b0\u1ee3ng c\u1ea5u h\u00ecnh: 32GB (2x16GB)\r\nChu\u1ea9n k\u1ebft n\u1ed1i: DDR5\r\nBus XMP: 6000MHz\r\n\u0110\u1ed9 tr\u1ec5 XMP: CL 40-40-40-77\r\n\u0110i\u1ec7n \u00e1p XMP: 1.1 - 1.40V\r\nT\u1ea3n nhi\u1ec7t: C\u00f3\r\nLED : C\u00f3', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26813-ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-bus-6000mhz-black-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26813-ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-bus-6000mhz-black-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26813-ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-bus-6000mhz-black-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26813-ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-bus-6000mhz-black-1.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: + '\/ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-bus-6000mhz-black-cmh32gx5m2e6000c36', + brand: { + id: '31', + brand_index: 'corsair', + name: 'CORSAIR', + image: '', + url: '\/brand\/corsair', + }, + visit: '6522', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '5', + total: '1', + }, + quantity: '434', + productSKU: 'RAM00000185', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Do ngu\u1ed3n hàng khan hi\u1ebfm nên Nguy\u1ec5n Công PC ch\u1ec9 bán kèm PC l\u1eafp ráp và cho khách hàng nâng c\u1ea5p PC Build s\u1eb5n t\u1ea1i Nguy\u1ec5n Công, Mong quý khách hàng thông c\u1ea3m !<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Do ngu\u1ed3n hàng khan hi\u1ebfm nên Nguy\u1ec5n Công PC ch\u1ec9 bán kèm PC l\u1eafp ráp và cho khách hàng nâng c\u1ea5p PC Build s\u1eb5n t\u1ea1i Nguy\u1ec5n Công, Mong quý khách hàng thông c\u1ea3m !<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '283', + catPath: ':283:3431:0', + name: 'Ram - B\u1ed9 nh\u1edb trong', + url: '\/ram', + }, + { + id: '486', + catPath: ':486:283:3431:0', + name: 'RAM Corsair', + url: '\/ram-corsair', + }, + ], + }, + '26590': { + id: '26590', + productId: '26590', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '4800000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '4800000', + normal_price: '4800000', + min_purchase: '1', + max_purchase: '237', + remain_quantity: '237', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-11-22 10:32:07', + warranty: '36 Th\u00e1ng', + productName: 'Card M\u00e0n H\u00ecnh ASUS DUAL RTX 3050 OC 6GB', + productSummary: + 'Lo\u1ea1i s\u1ea3n ph\u1ea9m: VGA - Card m\u00e0n h\u00ecnh\r\nModel: DUAL RTX3050 \r\nNh\u00e2n \u0111\u1ed3 h\u1ecda: NVIDIA\u00ae GeForce GTX 3050\r\nGiao th\u1ee9c k\u1ebft n\u1ed1i: PCI Express 4.0\r\nNh\u00e2n CUDA: 2304 Units\r\nT\u1ed1c \u0111\u1ed9 b\u1ed9 nh\u1edb:\t14 Gbps\r\nB\u1ed9 nh\u1edb: 6GB GDDR6\r\nBus b\u1ed9 nh\u1edb: 96-Bit', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26590-asus-dual-rtx-3050-oc-6gb-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26590-asus-dual-rtx-3050-oc-6gb-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26590-vga-sieu-re-card-m--n-h--nh-asus-dual-rtx-3050-oc-6gb_2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26590-vga-sieu-re-card-m--n-h--nh-asus-dual-rtx-3050-oc-6gb_2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26590-asus-dual-rtx-3050-oc-6gb-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26590-asus-dual-rtx-3050-oc-6gb-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26590-asus-dual-rtx-3050-oc-6gb-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26590-asus-dual-rtx-3050-oc-6gb-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26590-asus-dual-rtx-3050-oc-6gb-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26590-asus-dual-rtx-3050-oc-6gb-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26590-asus-dual-rtx-3050-oc-6gb-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26590-asus-dual-rtx-3050-oc-6gb-4.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26590-asus-dual-rtx-3050-oc-6gb-5.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26590-asus-dual-rtx-3050-oc-6gb-5.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26590-vg0000271.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26590-vg0000271.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/card-man-hinh-asus-dual-rtx-3050-oc-6gb', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '9583', + rating: '5', + reviewCount: '1', + review: { + rate: '5', + total: '1', + }, + comment: { + rate: '5', + total: '3', + }, + quantity: '237', + productSKU: 'VG0000271', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '324', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '607', + catPath: ':607:3730:279:3431:0', + name: 'VGA Asus', + url: '\/vga-asus', + }, + { + id: '3610', + catPath: ':3610:843:279:3431:0', + name: 'Nvidia RTX 3000 Series', + url: '\/nvidia-rtx-3000-series', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '279', + catPath: ':279:3431:0', + name: 'VGA - Card M\u00e0n H\u00ecnh', + url: '\/vga-card-man-hinh', + }, + { + id: '3725', + catPath: ':3725:279:3431:0', + name: 'RTX 3050', + url: '\/rtx-3050', + }, + ], + }, + '26676': { + id: '26676', + productId: '26676', + priceUnit: 'chi\u1ebfc', + marketPrice: '5590000', + price: '3990000', + price_off: '29', + currency: 'vnd', + sale_rules: { + price: '3990000', + normal_price: '3990000', + min_purchase: '1', + max_purchase: '207', + remain_quantity: '207', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-09-12 18:05:11', + warranty: '36 Th\u00e1ng', + productName: 'Mainboard Asus TUF Gaming B760M-PLUS Wifi DDR5 II', + productSummary: + 'Chipset: Intel B760 Chipset\r\nCPU h\u1ed7 tr\u1ee3: Intel Gen 14th, Intel Gen 13th, Intel Gen, Pentium Gold, Celeron\r\nSocket: LGA1700\r\nLo\u1ea1i Ram: DDR5', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26676-asus-tuf-gaming-b760m-plus-wifi-ii-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26676-asus-tuf-gaming-b760m-plus-wifi-ii-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26676-asus-tuf-gaming-b760m-plus-wifi-ii-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26676-asus-tuf-gaming-b760m-plus-wifi-ii-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26676-asus-tuf-gaming-b760m-plus-wifi-ii-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26676-asus-tuf-gaming-b760m-plus-wifi-ii-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26676-asus-tuf-gaming-b760m-plus-wifi-ii-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26676-asus-tuf-gaming-b760m-plus-wifi-ii-2.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: + '\/mainboard-asus-tuf-gaming-b760m-plus-wifi-ddr5-ii-socket-1700-m-atx-4-khe-ram', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '26357', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '5', + total: '3', + }, + quantity: '207', + productSKU: 'MB0000228', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '783', + pixel_code: '', + review_count: '7', + review_score: '4.9', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '278', + catPath: ':278:3431:0', + name: 'Main - Bo m\u1ea1ch ch\u1ee7', + url: '\/mainboard-bo-mach-chu', + }, + { + id: '639', + catPath: ':639:278:3431:0', + name: 'Main Asus', + url: '\/main-asus', + }, + ], + }, + '24145': { + id: '24145', + productId: '24145', + priceUnit: 'chi\u1ebfc', + marketPrice: '7900000', + price: '4990000', + price_off: '37', + currency: 'vnd', + sale_rules: { + price: '4990000', + normal_price: '4990000', + min_purchase: '1', + max_purchase: '148', + remain_quantity: '148', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 13:55:45', + warranty: '36 th\u00e1ng', + productName: + 'CPU AMD Ryzen 7 7700 (Tray Ch\u00ednh H\u00e3ng, 3,8 GHz Boost 5,3 GHz | 8 Cores \/ 16 Threads | 32 MB Cache| PCIe 5.0)', + productSummary: + 'Th\u1ebf h\u1ec7: AMD Ryzen 7000 Series\r\nS\u1ed1 nh\u00e2n - Lu\u1ed3ng: 8 Cores \/ 16 Threads\r\nXung nh\u1ecbp: 3.8 GHz up to 5.3 GHz\r\nCache: 32 MB\r\nH\u1ed7 tr\u1ee3 PCI-e 5.0', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-24145-28280-ryzen-7-7700-tray.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-24145-28280-ryzen-7-7700-tray.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-24145-28280-ryzen-7-7700-tray.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-24145-28280-ryzen-7-7700-tray.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28280-cpu-amd-ryzen-7-7700-tray-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28280-cpu-amd-ryzen-7-7700-tray-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28280-cpu-amd-ryzen-7-7700-tray-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28280-cpu-amd-ryzen-7-7700-tray-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28280-cpu-amd-ryzen-7-7700-tray-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28280-cpu-amd-ryzen-7-7700-tray-01.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/amd-ryzen-7-7700', + brand: { + id: '3', + brand_index: 'amd', + name: 'AMD', + image: '', + url: '\/brand\/amd', + }, + visit: '11325', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '148', + productSKU: 'CPU000092T', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

• Giá Build PC : 4.990.000\u0111 Khi kèm PC
• Giá Build PC : 5.490.000\u0111 Khi mua PC không có VGA
• Giá bán l\u1ebb r\u1eddi CPU : 5.990.000\u0111
Áp d\u1ee5ng Build PC có thêm 5 linh ki\u1ec7n sau: MAIN, RAM, SSD, NGU\u1ed2N VGA( t\u1eeb GTX 1650, RX 6500XT tr\u1edf lên )<\/div>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '
• Giá Build PC : 4.990.000\u0111 Khi kèm PC
• Giá Build PC : 5.490.000\u0111 Khi mua PC không có VGA
• Giá bán l\u1ebb r\u1eddi CPU : 5.990.000\u0111
Áp d\u1ee5ng Build PC có thêm 5 linh ki\u1ec7n sau: MAIN, RAM, SSD, NGU\u1ed2N VGA( t\u1eeb GTX 1650, RX 6500XT tr\u1edf lên )<\/div>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '533', + pixel_code: '', + review_count: '55', + review_score: '4.9', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '561', + catPath: ':561:277:3431:0', + name: 'CPU AMD', + url: '\/cpu-amd', + }, + { + id: '277', + catPath: ':277:3431:0', + name: 'CPU - B\u1ed9 vi x\u1eed l\u00fd', + url: '\/cpu-bo-vi-xu-ly', + }, + { + id: '3615', + catPath: ':3615:561:277:3431:0', + name: 'AMD Ryzen 7', + url: '\/amd-ryzen-7', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + ], + }, + '26605': { + id: '26605', + productId: '26605', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '1350000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '1350000', + normal_price: '1350000', + min_purchase: '1', + max_purchase: '133', + remain_quantity: '133', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 16:52:18', + warranty: '60 Th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD PNY CS1031 500GB NVMe M.2 2280 PCIe Gen 3.0 x4 (M280CS1031-500-CL)', + productSummary: + 'H\u00e3ng s\u1ea3n xu\u1ea5t: PNY\r\nModel: M280CS1031-256-CL\r\nDung l\u01b0\u1ee3ng: 500GB\r\nT\u1ed1c \u0111\u1ecdc \u0111\u1ecdc: 2200 MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi: 1200 MB\/s\r\nK\u00edch th\u01b0\u1edbc: 22x80mm\r\nChu\u1ea9n: PCIe Gen 3\u00d74 NVMe', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26605-ssd-pny-cs1031-500gb-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26605-ssd-pny-cs1031-500gb-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26605-ssd-pny-cs1031-500gb-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26605-ssd-pny-cs1031-500gb-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26605-ssd-pny-cs1031-500gb-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26605-ssd-pny-cs1031-500gb-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26605-ssd-pny-cs1031-500gb-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26605-ssd-pny-cs1031-500gb-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26605-ssd-pny-cs1031-500gb-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26605-ssd-pny-cs1031-500gb-4.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-pny-cs1031-500gb-nvme-m2-2280-pcie-gen-30-x4-m280cs1031-500-cl', + brand: { + id: '53', + brand_index: 'pny', + name: 'PNY', + image: '', + url: '\/brand\/pny', + }, + visit: '6884', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '133', + productSKU: 'SSD0000157', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '68', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '284', + catPath: ':284:0', + name: 'THI\u1ebeT B\u1eca L\u01afU TR\u1eee', + url: '\/o-cung-hdd-ssd', + }, + { + id: '3274', + catPath: ':3274:284:0', + name: '\u1ed4 C\u1ee8NG SSD', + url: '\/o-cung-ssd', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + id: '1459', + catPath: ':1459:3476:284:0', + name: '\u1ed4 c\u1ee9ng PNY', + url: '\/pny', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3490', + catPath: ':3490:3477:284:0', + name: '500GB', + url: '\/500gb', + }, + { + id: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + ], + }, + '27774': { + id: '27774', + productId: '27774', + priceUnit: 'chi\u1ebfc', + marketPrice: '2390000', + price: '1850000', + price_off: '23', + currency: 'vnd', + sale_rules: { + price: '1850000', + normal_price: '1850000', + min_purchase: '1', + max_purchase: '119', + remain_quantity: '119', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-11-26 09:37:38', + warranty: '24 th\u00e1ng', + productName: 'M\u00e0n H\u00ecnh EDRA EGM24F100s 24 inch, FHD, IPS, 100Hz', + productSummary: + 'Ki\u1ec3u d\u00e1ng m\u00e0n h\u00ecnh: Ph\u1eb3ng\r\nT\u1ec9 l\u1ec7 khung h\u00ecnh: 16:9\r\nK\u00edch th\u01b0\u1edbc m\u1eb7c \u0111\u1ecbnh: 23.8 inch\r\nC\u00f4ng ngh\u1ec7 t\u1ea5m n\u1ec1n: IPS\r\nPh\u00e2n gi\u1ea3i \u0111i\u1ec3m \u1ea3nh: FHD - 1920 x 1080\r\nCh\u1ec9 s\u1ed1 m\u00e0u s\u1eafc: 16.7 tri\u1ec7u m\u00e0u\r\n\u0110\u1ed9 s\u00e1ng hi\u1ec3n th\u1ecb: 250 Nits cd\/m2\r\nT\u1ea7n s\u1ed1 qu\u00e9t m\u00e0n: Real 100Hz (Hertz)\r\nTh\u1eddi gian \u0111\u00e1p \u1ee9ng: 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: '4682', + rating: '5', + reviewCount: '1', + review: { + rate: '5', + total: '1', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '119', + productSKU: 'MH0000364', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3724', + catPath: ':3724:3500:281:0', + name: 'M\u00e0n h\u00ecnh E-Dra', + url: '\/man-hinh-e-dra', + }, + { + id: '3500', + catPath: ':3500:281:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang-1-2', + }, + { + id: '3507', + catPath: ':3507:3501:281:0', + name: 'M\u00e0n h\u00ecnh 24 inches', + url: '\/man-hinh-24-inches', + }, + { + id: '3501', + catPath: ':3501:281:0', + name: 'CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC', + 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\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I', + 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\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T', + url: '\/tan-so-quet', + }, + { + id: '281', + catPath: ':281:0', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + url: '\/man-hinh-may-tinh', + }, + { + id: '3705', + catPath: ':3705:0', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + url: '\/man-hinh-phu', + }, + ], + }, + '26673': { + id: '26673', + productId: '26673', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '8500000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '8500000', + normal_price: '8500000', + min_purchase: '1', + max_purchase: '80', + remain_quantity: '80', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-06 13:45:28', + warranty: '36 Th\u00e1ng', + productName: + 'RAM Corsair VENGEANCE RGB 32GB (2x16GB) DDR5 bus 6000MHz White (CMH32GX5M2E6000C36W)', + productSummary: + 'Dung l\u01b0\u1ee3ng c\u1ea5u h\u00ecnh: 32GB (2x16GB)\r\nChu\u1ea9n k\u1ebft n\u1ed1i: DDR5\r\nBus XMP: 6000MHz\r\n\u0110\u1ed9 tr\u1ec5 XMP: CL 40-40-40-77\r\n\u0110i\u1ec7n \u00e1p XMP: 1.1 - 1.40V\r\nT\u1ea3n nhi\u1ec7t: C\u00f3\r\nLED : C\u00f3', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26673-ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-6000mhz-white-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26673-ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-6000mhz-white-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26673-ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-6000mhz-white-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26673-ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-6000mhz-white-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26673-ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-6000mhz-white-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26673-ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-6000mhz-white-2.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: + '\/ram-corsair-vengeance-rgb-32gb-2x16gb-ddr5-bus-6000mhz-white-cmh32gx5m2e6000c36w', + brand: { + id: '31', + brand_index: 'corsair', + name: 'CORSAIR', + image: '', + url: '\/brand\/corsair', + }, + visit: '4266', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '80', + productSKU: 'RAM00000172', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Do ngu\u1ed3n hàng khan hi\u1ebfm nên Nguy\u1ec5n Công PC ch\u1ec9 bán kèm PC l\u1eafp ráp và cho khách hàng nâng c\u1ea5p PC Build s\u1eb5n t\u1ea1i Nguy\u1ec5n Công, Mong quý khách hàng thông c\u1ea3m !<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Do ngu\u1ed3n hàng khan hi\u1ebfm nên Nguy\u1ec5n Công PC ch\u1ec9 bán kèm PC l\u1eafp ráp và cho khách hàng nâng c\u1ea5p PC Build s\u1eb5n t\u1ea1i Nguy\u1ec5n Công, Mong quý khách hàng thông c\u1ea3m !<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '0', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '486', + catPath: ':486:283:3431:0', + name: 'RAM Corsair', + url: '\/ram-corsair', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '283', + catPath: ':283:3431:0', + name: 'Ram - B\u1ed9 nh\u1edb trong', + url: '\/ram', + }, + ], + }, + '24921': { + id: '24921', + productId: '24921', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '8500000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '8500000', + normal_price: '8500000', + min_purchase: '1', + max_purchase: '77', + remain_quantity: '77', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-17 10:04:11', + warranty: '60 Th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD Samsung 990 PRO 2TB M.2 NVMe M.2 2280 PCIe Gen4.0 x4 MZ-V9P2T0BW', + productSummary: + 'K\u00edch th\u01b0\u1edbc: M.2 2280\r\nGiao di\u1ec7n: PCIe Gen4.0 x4, NVMe 2.0\r\nDung l\u01b0\u1ee3ng: 2TB\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc\/ghi (up to ): 7450MB\/s - 6900MB\/s\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc\/ghi 4K (4KB, QD32) up to: 1.400.000 IOPS - 1,550,000 IOPS\r\nKi\u1ec3u Flash: Samsung V-NAND 3-bit MLC', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-24921-----c---ng-ssd-samsung-990-pro-2tb-m-2-nvme-m-2-2280-pcie-1.jpeg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-24921-----c---ng-ssd-samsung-990-pro-2tb-m-2-nvme-m-2-2280-pcie-1.jpeg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-24921-----c---ng-ssd-samsung-990-pro-2tb-m-2-nvme-m-2-2280-pcie-3.jpeg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-24921-----c---ng-ssd-samsung-990-pro-2tb-m-2-nvme-m-2-2280-pcie-3.jpeg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-24921-----c---ng-ssd-samsung-990-pro-2tb-m-2-nvme-m-2-2280-pcie-2.jpeg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-24921-----c---ng-ssd-samsung-990-pro-2tb-m-2-nvme-m-2-2280-pcie-2.jpeg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-24921-----c---ng-ssd-samsung-990-pro-2tb-m-2-nvme-m-2-2280-pcie-1.jpeg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-24921-----c---ng-ssd-samsung-990-pro-2tb-m-2-nvme-m-2-2280-pcie-1.jpeg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-24921-----c---ng-ssd-samsung-990-pro-2tb-m-2-nvme-m-2-2280-pcie-gen4-0-x4-mz-v9p2t0bw.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-24921-----c---ng-ssd-samsung-990-pro-2tb-m-2-nvme-m-2-2280-pcie-gen4-0-x4-mz-v9p2t0bw.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-samsung-990-pro-2tb-m2-nvme-m2-2280-pcie-gen40-x4-mz-v9p2t0bw', + brand: { + id: '7', + brand_index: 'samsung', + name: 'Samsung', + image: '', + url: '\/brand\/samsung', + }, + visit: '10407', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '77', + productSKU: 'SSD0000043', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '0', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '284', + catPath: ':284:0', + name: 'THI\u1ebeT B\u1eca L\u01afU TR\u1eee', + url: '\/o-cung-hdd-ssd', + }, + { + id: '3274', + catPath: ':3274:284:0', + name: '\u1ed4 C\u1ee8NG SSD', + url: '\/o-cung-ssd', + }, + { + id: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + ], + }, + '26893': { + id: '26893', + productId: '26893', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '6800000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '6800000', + normal_price: '6800000', + min_purchase: '1', + max_purchase: '57', + remain_quantity: '57', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 17:23:04', + warranty: '60 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD Kingston SNV3S 2TB NVME M.2 2280 PCIE GEN 4X4 (SNV3S\/2000G)', + productSummary: '', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26893-snv3s_2000gb-lg.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26893-snv3s_2000gb-lg.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26893-snv3s_2000gb-lg.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26893-snv3s_2000gb-lg.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26893-ncpc0291.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26893-ncpc0291.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26893-snv3s_2000gb_angle-lg.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26893-snv3s_2000gb_angle-lg.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26893-ncpc0294.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26893-ncpc0294.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26893-ncpc0296.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26893-ncpc0296.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26893-ncpc0300.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26893-ncpc0300.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26893-ncpc0303.JPG', + large: 'https://nguyencongpc.vn\/media\/product\/250-26893-ncpc0303.JPG', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-kingston-snv3s-2tb-nvme-m2-2280-pcie-gen-4x4-snv3s2000g', + brand: { + id: '45', + brand_index: 'kingston', + name: 'KINGSTON', + image: '', + url: '\/brand\/kingston', + }, + visit: '4437', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '57', + productSKU: 'SSD0000170', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '0', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3274', + catPath: ':3274:284:0', + name: '\u1ed4 C\u1ee8NG SSD', + url: '\/o-cung-ssd', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + id: '284', + catPath: ':284:0', + name: 'THI\u1ebeT B\u1eca L\u01afU TR\u1eee', + url: '\/o-cung-hdd-ssd', + }, + { + id: '3493', + catPath: ':3493:3477:284:0', + name: '2TB', + url: '\/2tb', + }, + { + id: '458', + catPath: ':458:3476:284:0', + name: '\u1ed4 c\u1ee9ng Kingston', + url: '\/o-cung-kingston', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + ], + }, + '26879': { + id: '26879', + productId: '26879', + priceUnit: 'chi\u1ebfc', + marketPrice: '990000', + price: '850000', + price_off: '14', + currency: 'vnd', + sale_rules: { + price: '850000', + normal_price: '850000', + min_purchase: '1', + max_purchase: '52', + remain_quantity: '52', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-03-14 12:03:03', + warranty: '24 Th\u00e1ng', + productName: 'B\u00e0n ph\u00edm quang c\u01a1 DareU EK98X Black Grey (Optical Switch)', + productSummary: + 'B\u00e0n ph\u00edm layout 98 ph\u00edm\r\nS\u1eed d\u1ee5ng keycap PBT\r\nSwitch quang c\u01a1 Blue switch\r\nK\u1ebft n\u1ed1i d\u00e2y c\u1ed5ng USB d\u00e0i 1.8m', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26879-ban-phim-quang-co-gaming-dareu-ek98x-black-grey-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26879-ban-phim-quang-co-gaming-dareu-ek98x-black-grey-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26879-ban-phim-quang-co-gaming-dareu-ek98x-black-grey-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26879-ban-phim-quang-co-gaming-dareu-ek98x-black-grey-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26879-ban-phim-quang-co-gaming-dareu-ek98x-black-grey-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26879-ban-phim-quang-co-gaming-dareu-ek98x-black-grey-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26879-ban-phim-quang-co-gaming-dareu-ek98x-black-grey-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26879-ban-phim-quang-co-gaming-dareu-ek98x-black-grey-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26879-ban-phim-quang-co-gaming-dareu-ek98x-black-grey-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26879-ban-phim-quang-co-gaming-dareu-ek98x-black-grey-4.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ban-phim-quang-co-dareu-ek98x-black-grey-optical-switch', + brand: { + id: '52', + brand_index: 'dareu', + name: 'DAREU', + image: '', + url: '\/brand\/dareu', + }, + visit: '2315', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '52', + productSKU: 'BP0000193', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '0', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3544', + catPath: ':3544:1235:410:0', + name: 'B\u00e0n ph\u00edm theo h\u00e3ng', + url: '\/ban-phim-theo-hang-1', + }, + { + id: '3543', + catPath: ':3543:1235:410:0', + name: 'B\u00e0n ph\u00edm c\u00f3 d\u00e2y', + url: '\/ban-phim-co-day-1', + }, + { + id: '1235', + catPath: ':1235:410:0', + name: 'B\u00e0n Ph\u00edm', + url: '\/ban-phim', + }, + { + id: '3552', + catPath: ':3552:3544:1235:410:0', + name: 'B\u00e0n ph\u00edm DAREU', + url: '\/ban-phim-dareu-1', + }, + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + ], + }, + '26697': { + id: '26697', + productId: '26697', + priceUnit: 'chi\u1ebfc', + marketPrice: '250000', + price: '120000', + price_off: '52', + currency: 'vnd', + sale_rules: { + price: '120000', + normal_price: '120000', + min_purchase: '1', + max_purchase: '47', + remain_quantity: '47', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-03-06 12:34:14', + warranty: '12 Th\u00e1ng', + productName: + 'FAN T\u1ea2N NHI\u1ec6T V\u00d4 C\u1ef0C JUNGLE LEOPARD PRISM 4RS ARGB (120MM | M\u00c0U TR\u1eaeNG TH\u1ed4I RA)', + productSummary: + 'Lo\u1ea1i m\u00e0u tr\u1eafng th\u1ed5i ra\r\nSize: 120 x 120 x 25 mm\r\nFan speed: 800-1800 (\u00b110% RPM)\r\nLED color: ARGB\r\nRated voltage: 12VDC\r\nRated current: 0.25A\r\nInterface: 4Pin + 5V 3Pin\r\nMaximum volume: 58.36CFM\r\nMaximum noise: 29dBA', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26697-fan-tan-nhiet-vo-cuc-jungle-leopard-prism-4rs-argb-mau-trang-thoi-ra-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26697-fan-tan-nhiet-vo-cuc-jungle-leopard-prism-4rs-argb-mau-trang-thoi-ra-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26697-fan-tan-nhiet-vo-cuc-jungle-leopard-prism-4rs-argb-mau-trang-thoi-ra-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26697-fan-tan-nhiet-vo-cuc-jungle-leopard-prism-4rs-argb-mau-trang-thoi-ra-1.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/fan-tan-nhiet-vo-cuc-jungle-leopard-prism-4rs-argb-120mm-mau-trang-thoi-ra', + brand: { + id: '208', + brand_index: 'jungle', + name: 'Jungle', + image: '', + url: '\/brand\/jungle', + }, + visit: '4505', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '47', + productSKU: 'FAN0000055', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '0', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3271', + catPath: ':3271:1255:0', + name: 'Fan t\u1ea3n nhi\u1ec7t', + url: '\/quat-tan-nhiet', + }, + { + id: '1255', + catPath: ':1255:0', + name: 'T\u1ea2N NHI\u1ec6T PC - COOLING', + url: '\/tan-nhiet', + }, + ], + }, + '26896': { + id: '26896', + productId: '26896', + priceUnit: 'chi\u1ebfc', + marketPrice: '2490000', + price: '1880000', + price_off: '24', + currency: 'vnd', + sale_rules: { + price: '1880000', + normal_price: '1880000', + min_purchase: '1', + max_purchase: '29', + remain_quantity: '29', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-04-15 11:03:54', + warranty: '36 Th\u00e1ng', + productName: 'Mainboard MSI H610M Bomber DDR4', + productSummary: + 'Th\u01b0\u01a1ng hi\u1ec7u: MSI\r\nModel: H610M BOMBER DDR4\r\nChipset: H610\r\nSocket: LGA 1700\r\nH\u1ed7 tr\u1ee3 ram: 2 khe DDR4\r\nK\u00edch th\u01b0\u1edbc: m-ATX\r\nK\u1ebft n\u1ed1i: 1 x HDMI, 1 x VGA', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26896-mainboard-msi-h610m-bomber-ddr4-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26896-mainboard-msi-h610m-bomber-ddr4-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26896-mainboard-msi-h610m-bomber-ddr4-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26896-mainboard-msi-h610m-bomber-ddr4-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26896-mainboard-msi-h610m-bomber-ddr4-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26896-mainboard-msi-h610m-bomber-ddr4-2.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/mainboard-msi-h610m-bomber-ddr4', + brand: { + id: '5', + brand_index: 'msi', + name: 'MSI', + image: '', + url: '\/brand\/msi', + }, + visit: '6679', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '29', + productSKU: 'MB0000585', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '0', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '278', + catPath: ':278:3431:0', + name: 'Main - Bo m\u1ea1ch ch\u1ee7', + url: '\/mainboard-bo-mach-chu', + }, + { + id: '598', + catPath: ':598:278:3431:0', + name: 'Main Msi', + url: '\/main-msi', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + ], + }, + '21961': { + id: '21961', + productId: '21961', + priceUnit: 'chi\u1ebfc', + marketPrice: '150000', + price: '120000', + price_off: '20', + currency: 'vnd', + sale_rules: { + price: '120000', + normal_price: '120000', + min_purchase: '1', + max_purchase: '26', + remain_quantity: '26', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2024-12-25 10:57:12', + warranty: '24 th\u00e1ng', + productName: 'Chu\u1ed9t m\u00e1y t\u00ednh Dareu LM130S \u0110en (RGB, USB)', + productSummary: + 'Chu\u1ed9t Dareu LM130S\r\nSensor: PAN3512\r\nDPI: 1000\r\nPolling rate: 100Hz\r\nSwitch: Huano (10 tri\u1ec7u l\u1ea7n click)\r\nLed RGB', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-21961-sp180233.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-21961-sp180233.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-21961-da3.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-21961-da3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-21961-da2.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-21961-da2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-21961-sp180233.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-21961-sp180233.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/chuot-may-tinh-dareu-lm130s-den-rgb-usb', + brand: { + id: '52', + brand_index: 'dareu', + name: 'DAREU', + image: '', + url: '\/brand\/dareu', + }, + visit: '11827', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '26', + productSKU: 'SP180233', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '1257', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + { + id: '1147', + catPath: ':1147:410:0', + name: 'Mouse - Chu\u1ed9t', + url: '\/chuot-mouse', + }, + { + id: '3565', + catPath: ':3565:1147:410:0', + name: 'Chu\u1ed9t C\u00f3 D\u00e2y', + url: '\/chuot-co-day', + }, + { + id: '3562', + catPath: ':3562:1147:410:0', + name: 'Chu\u1ed9t theo h\u00e3ng', + url: '\/chuot-theo-hang', + }, + { + id: '3231', + catPath: ':3231:3562:1147:410:0', + name: 'Chu\u1ed9t Dareu', + url: '\/chuot-dareu', + }, + ], + }, + '26535': { + id: '26535', + productId: '26535', + priceUnit: 'chi\u1ebfc', + marketPrice: '1190000', + price: '790000', + price_off: '34', + currency: 'vnd', + sale_rules: { + price: '790000', + normal_price: '790000', + min_purchase: '1', + max_purchase: '20', + remain_quantity: '20', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2024-08-20 11:11:52', + warranty: '12 Th\u00e1ng', + productName: 'V\u1ecf Case Xigmatek Cubi M Black EN42775 (MATX, M\u00e0u \u0110en)', + productSummary: + 'V\u1eadt li\u1ec7u: Steel\r\nK\u00edch th\u01b0\u1edbc: 430 x 277 x 372 mm\r\nH\u1ed7 tr\u1ee3: 2.5"" x 3 \/ 3.5"" x 2\r\nKhe m\u1edf r\u1ed9ng: 4 slots\r\nH\u1ed7 tr\u1ee3 Mainboard: Micro-ATX, ITX\r\nC\u1ed5ng k\u1ebft n\u1ed1i: USB3.0 x 1 - USB2.0 x 2 - Audio in\/out x 1 (HD Audio)\r\nH\u1ed7 tr\u1ee3 t\u1ea3n nhi\u1ec7t: CPU 165mm\r\nH\u1ed7 tr\u1ee3 VGA: 358mm\r\nM\u1eb7t k\u00ednh c\u01b0\u1eddng l\u1ef1c: 3 m\u1eb7t k\u00ednh\r\nQu\u1ea1t h\u1ec7 th\u1ed1ng: \u0110\u00e1y (x3) - Sau (x1) - N\u00f3c (x3) - MB (x2) (t\u00f9y ch\u1ecdn)', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26535-47829_xigmatek_cubi_m_black_en42--3-.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26535-47829_xigmatek_cubi_m_black_en42--3-.png', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26535-47829_xigmatek_cubi_m_black_en42--3-.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26535-47829_xigmatek_cubi_m_black_en42--3-.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26535-47829_xigmatek_cubi_m_black_en42--4-.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26535-47829_xigmatek_cubi_m_black_en42--4-.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26535-47829_xigmatek_cubi_m_black_en42--5-.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26535-47829_xigmatek_cubi_m_black_en42--5-.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26535-47829_xigmatek_cubi_m_black_en42--6-.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26535-47829_xigmatek_cubi_m_black_en42--6-.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26535-47829_xigmatek_cubi_m_black_en42--7-.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26535-47829_xigmatek_cubi_m_black_en42--7-.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26535-47829_xigmatek_cubi_m_black_en42--8-.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26535-47829_xigmatek_cubi_m_black_en42--8-.png', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/vo-case-xigmatek-cubi-m-black-en42775', + brand: { + id: '38', + brand_index: 'xigmatek', + name: 'XIGMATEK', + image: '', + url: '\/brand\/xigmatek', + }, + visit: '22819', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '5', + total: '4', + }, + quantity: '20', + productSKU: 'VO0000207', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: { + pixel_code: '', + review_count: '14', + review_score: '4.9', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '280', + catPath: ':280:3431:0', + name: 'Case - V\u1ecf m\u00e1y t\u00ednh', + url: '\/case-vo-may-tinh', + }, + { + id: '1229', + catPath: ':1229:280:3431:0', + name: 'Case Xigmatek', + url: '\/case-xigmatek', + }, + ], + }, + '26705': { + id: '26705', + productId: '26705', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '18000000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '18000000', + normal_price: '18000000', + min_purchase: '1', + max_purchase: '18', + remain_quantity: '18', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-11 16:58:12', + warranty: '36 Th\u00e1ng', + productName: + 'RAM KINGSTON FURY BEAST BLACK RGB (KF560C36BBE2AK2-64) 64GB (2X32GB) DDR5 6000MHZ (AMD EXPO+INTEL XMP)', + productSummary: + 'Lo\u1ea1i s\u1ea3n ph\u1ea9m: RAM - B\u1ed9 nh\u1edb trong\r\nTh\u01b0\u01a1ng hi\u1ec7u: KINGSTON\r\nLo\u1ea1i Ram: Desktop\r\nD\u00f2ng: Fury Beast\r\nM\u00e3 Part: KF560C36BBE2AK2-64\r\nDung l\u01b0\u1ee3ng: 64GB (2 x 32GB)\r\nLo\u1ea1i: DDR5\r\nT\u1ed1c \u0111\u1ed9: 6000 MHz', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26705-ram-kingston-fury-beast-black-rgb-xmp-kf560c40bbak2-64-64gb-2x32gb-ddr5-6000mhz-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26705-ram-kingston-fury-beast-black-rgb-xmp-kf560c40bbak2-64-64gb-2x32gb-ddr5-6000mhz-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26705-ram-kingston-fury-beast-black-rgb-xmp-kf560c40bbak2-64-64gb-2x32gb-ddr5-6000mhz-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26705-ram-kingston-fury-beast-black-rgb-xmp-kf560c40bbak2-64-64gb-2x32gb-ddr5-6000mhz-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26705-ram-kingston-fury-beast-black-rgb-xmp-kf560c40bbak2-64-64gb-2x32gb-ddr5-6000mhz-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26705-ram-kingston-fury-beast-black-rgb-xmp-kf560c40bbak2-64-64gb-2x32gb-ddr5-6000mhz-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26705-ram-kingston-fury-beast-black-rgb-xmp-kf560c40bbak2-64-64gb-2x32gb-ddr5-6000mhz-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26705-ram-kingston-fury-beast-black-rgb-xmp-kf560c40bbak2-64-64gb-2x32gb-ddr5-6000mhz-3.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: + '\/ram-kingston-fury-beast-black-rgb-xmp-kf560c40bbak2-64-64gb-2x32gb-ddr5-6000mhz', + brand: { + id: '45', + brand_index: 'kingston', + name: 'KINGSTON', + image: '', + url: '\/brand\/kingston', + }, + visit: '3572', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '18', + productSKU: 'RAM00000173', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/span><\/strong><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/span><\/strong><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3313', + catPath: ':3313:283:3431:0', + name: 'RAM Kingston', + url: '\/ram-kingston', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '283', + catPath: ':283:3431:0', + name: 'Ram - B\u1ed9 nh\u1edb trong', + url: '\/ram', + }, + ], + }, + '26880': { + id: '26880', + productId: '26880', + priceUnit: 'chi\u1ebfc', + marketPrice: '6990000', + price: '5500000', + price_off: '21', + currency: 'vnd', + sale_rules: { + price: '5500000', + normal_price: '5500000', + min_purchase: '1', + max_purchase: '17', + remain_quantity: '17', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-25 10:55:06', + warranty: '36 Th\u00e1ng', + productName: 'M\u00e0n H\u00ecnh Dell P2725H (27.0 inch | IPS | FHD | 100Hz | 5ms)', + productSummary: + 'K\u00edch th\u01b0\u1edbc m\u1eb7c \u0111\u1ecbnh: 27.0 inch\r\nC\u00f4ng ngh\u1ec7 t\u1ea5m n\u1ec1n: IPS\r\nPh\u00e2n gi\u1ea3i \u0111i\u1ec3m \u1ea3nh: FHD - 1920 x 1080\r\n\u0110\u1ed9 s\u00e1ng hi\u1ec3n th\u1ecb: 300 cd\/m2 (typical)\r\nT\u1ea7n s\u1ed1 qu\u00e9t m\u00e0n: 100 Hz (Hertz)\r\nTh\u1eddi gian \u0111\u00e1p \u1ee9ng: 5ms gray-to-gray (Fast mode), 8ms gray-to-gray (Normal mode)', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26880-man-hinh-dell-p2725h-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26880-man-hinh-dell-p2725h-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26880-man-hinh-dell-p2725h-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26880-man-hinh-dell-p2725h-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26880-man-hinh-dell-p2725h-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26880-man-hinh-dell-p2725h-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26880-man-hinh-dell-p2725h-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26880-man-hinh-dell-p2725h-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26880-man-hinh-dell-p2725h-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26880-man-hinh-dell-p2725h-4.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26880-man-hinh-dell-p2725h-5.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26880-man-hinh-dell-p2725h-5.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/man-hinh-dell-p2725h-270-inch-ips-fhd-100hz-5ms', + brand: { + id: '20', + brand_index: 'dell', + name: 'DELL', + image: '', + url: '\/brand\/dell', + }, + visit: '4525', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '17', + productSKU: 'MH0000280', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '64', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3515', + catPath: ':3515:281:0', + name: 'CH\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I', + url: '\/chon-do-phan-giai', + }, + { + id: '3500', + catPath: ':3500:281:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang-1-2', + }, + { + id: '3528', + catPath: ':3528:281:0', + name: 'CH\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T', + url: '\/tan-so-quet', + }, + { + id: '3531', + catPath: ':3531:3528:281:0', + name: '100 Hz', + url: '\/100-hz', + }, + { + id: '3519', + catPath: ':3519:3515:281:0', + name: '1920 x 1080 (FHD)', + url: '\/1920-x-1080-fhd', + }, + { + id: '281', + catPath: ':281:0', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + url: '\/man-hinh-may-tinh', + }, + { + id: '522', + catPath: ':522:3500:281:0', + name: 'M\u00e0n h\u00ecnh Dell', + url: '\/man-hinh-dell', + }, + { + id: '3509', + catPath: ':3509:3501:281:0', + name: 'M\u00e0n h\u00ecnh 27 inches', + url: '\/man-hinh-27-inches', + }, + { + id: '3501', + catPath: ':3501:281:0', + name: 'CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC', + url: '\/chon-theo-kich-thuoc', + }, + { + id: '3705', + catPath: ':3705:0', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + url: '\/man-hinh-phu', + }, + ], + }, + '26626': { + id: '26626', + productId: '26626', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '1490000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '1490000', + normal_price: '1490000', + min_purchase: '1', + max_purchase: '17', + remain_quantity: '17', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2024-04-23 10:38:52', + warranty: '36 Th\u00e1ng', + productName: 'Mainboard MSI A520M-A PRO', + productSummary: + 'Th\u01b0\u01a1ng hi\u1ec7u: MSI\r\nMainboard: A520M-A PRO\r\nSocket: AMD AM4\r\nChu\u1ea9n khe RAM: DDR4 (t\u1ed1i \u0111a 64GB, 2 khe)\r\nK\u00edch th\u01b0\u1edbc: mATX\r\nC\u1ed5ng xu\u1ea5t h\u00ecnh: VGA v\u00e0 HDMI', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26626-mainboard-msi-a520m-a-pro-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26626-mainboard-msi-a520m-a-pro-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26626-mainboard-msi-a520m-a-pro-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26626-mainboard-msi-a520m-a-pro-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26626-mainboard-msi-a520m-a-pro-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26626-mainboard-msi-a520m-a-pro-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26626-mainboard-msi-a520m-a-pro-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26626-mainboard-msi-a520m-a-pro-3.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/mainboard-msi-a520m-a-pro', + brand: { + id: '5', + brand_index: 'msi', + name: 'MSI', + image: '', + url: '\/brand\/msi', + }, + visit: '4362', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '17', + productSKU: 'MB0000210', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: { + pixel_code: '', + review_count: '11', + review_score: '4.5', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '278', + catPath: ':278:3431:0', + name: 'Main - Bo m\u1ea1ch ch\u1ee7', + url: '\/mainboard-bo-mach-chu', + }, + { + id: '598', + catPath: ':598:278:3431:0', + name: 'Main Msi', + url: '\/main-msi', + }, + ], + }, + '26816': { + id: '26816', + productId: '26816', + priceUnit: 'chi\u1ebfc', + marketPrice: '990000', + price: '750000', + price_off: '24', + currency: 'vnd', + sale_rules: { + price: '750000', + normal_price: '750000', + min_purchase: '1', + max_purchase: '14', + remain_quantity: '14', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2024-11-18 08:56:54', + warranty: '24 Th\u00e1ng', + productName: 'B\u00e0n ph\u00edm c\u01a1 DareU EK98 White Black (Dream Switch)', + productSummary: + 'B\u00e0n ph\u00edm c\u01a1 DareU EK98 White Black DareU Dream switch\r\nS\u1eeda d\u1ee5ng swich DareU Dream (linear) cao c\u1ea5p, \u0111\u00e3 \u0111\u01b0\u1ee3c lube s\u1eb5n\r\nStabilizer \u0111\u01b0\u1ee3c c\u00e2n ch\u1ec9nh v\u00e0 lube s\u1eb5n\r\nC\u00f3 s\u1eb5n foam PCB Eva\r\nLED 7 m\u00e0u chia theo v\u00f9ng\r\nKeycap ABS Doubleshot ch\u1ea5t l\u01b0\u1ee3ng cao', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26816-ban-phim-coi-dareu-ek98-white-black.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26816-ban-phim-coi-dareu-ek98-white-black.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26816-ban-phim-coi-dareu-ek98-white-black.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26816-ban-phim-coi-dareu-ek98-white-black.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ban-phim-co-dareu-ek98-white-black-dream-switch', + brand: { + id: '52', + brand_index: 'dareu', + name: 'DAREU', + image: '', + url: '\/brand\/dareu', + }, + visit: '2609', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '14', + productSKU: 'BP0000179', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '0', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + { + id: '1235', + catPath: ':1235:410:0', + name: 'B\u00e0n Ph\u00edm', + url: '\/ban-phim', + }, + { + id: '3543', + catPath: ':3543:1235:410:0', + name: 'B\u00e0n ph\u00edm c\u00f3 d\u00e2y', + url: '\/ban-phim-co-day-1', + }, + { + id: '3544', + catPath: ':3544:1235:410:0', + name: 'B\u00e0n ph\u00edm theo h\u00e3ng', + url: '\/ban-phim-theo-hang-1', + }, + { + id: '3552', + catPath: ':3552:3544:1235:410:0', + name: 'B\u00e0n ph\u00edm DAREU', + url: '\/ban-phim-dareu-1', + }, + ], + }, + '26629': { + id: '26629', + productId: '26629', + priceUnit: 'chi\u1ebfc', + marketPrice: '5400000', + price: '4300000', + price_off: '20', + currency: 'vnd', + sale_rules: { + price: '4300000', + normal_price: '4300000', + min_purchase: '1', + max_purchase: '13', + remain_quantity: '13', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-08-15 14:12:00', + warranty: '36 Th\u00e1ng', + productName: 'M\u00e0n H\u00ecnh Dell S2725H 27 inch FHD IPS 100HZ LOA', + productSummary: + 'K\u00edch th\u01b0\u1edbc: 27inch\r\n\u0110\u1ed9 ph\u00e2n gi\u1ea3i: FHD 1920 x 1080\r\nT\u1ea5m n\u1ec1n: IPS\r\nT\u1ea7n s\u1ed1 qu\u00e9t: 100Hz\r\nTh\u1eddi gian ph\u1ea3n h\u1ed3i: 4ms\r\nT\u00edch h\u1ee3p loa: 2x 5W\r\n\u0110\u1ed9 s\u00e1ng: 250 nits\r\nT\u1ec9 l\u1ec7 t\u01b0\u01a1ng ph\u1ea3n: 1000:1\r\nT\u01b0\u01a1ng th\u00edch VESA: 100x100mm\r\nK\u1ebft n\u1ed1i: HDMI x1, VGA x1', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26629-man_hinh_dell_s2725h_1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26629-man_hinh_dell_s2725h_1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26629-man_hinh_dell_s2725h_1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26629-man_hinh_dell_s2725h_1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26629-man_hinh_dell_s2725h_2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26629-man_hinh_dell_s2725h_2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26629-man_hinh_dell_s2725h_3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26629-man_hinh_dell_s2725h_3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26629-man_hinh_dell_s2725h_4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26629-man_hinh_dell_s2725h_4.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/man-hinh-dell-s2725h-27-inch-fhd-ips-100hz-loa', + brand: { + id: '20', + brand_index: 'dell', + name: 'DELL', + image: '', + url: '\/brand\/dell', + }, + visit: '4378', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '13', + productSKU: 'MH0000264', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '281', + catPath: ':281:0', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + url: '\/man-hinh-may-tinh', + }, + { + id: '3509', + catPath: ':3509:3501:281:0', + name: 'M\u00e0n h\u00ecnh 27 inches', + url: '\/man-hinh-27-inches', + }, + { + id: '3519', + catPath: ':3519:3515:281:0', + name: '1920 x 1080 (FHD)', + url: '\/1920-x-1080-fhd', + }, + { + id: '522', + catPath: ':522:3500:281:0', + name: 'M\u00e0n h\u00ecnh Dell', + url: '\/man-hinh-dell', + }, + { + id: '3515', + catPath: ':3515:281:0', + name: 'CH\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I', + url: '\/chon-do-phan-giai', + }, + { + id: '3531', + catPath: ':3531:3528:281:0', + name: '100 Hz', + url: '\/100-hz', + }, + { + id: '3500', + catPath: ':3500:281:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang-1-2', + }, + { + id: '3501', + catPath: ':3501:281:0', + name: 'CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC', + url: '\/chon-theo-kich-thuoc', + }, + { + id: '3528', + catPath: ':3528:281:0', + name: 'CH\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T', + url: '\/tan-so-quet', + }, + { + id: '3705', + catPath: ':3705:0', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + url: '\/man-hinh-phu', + }, + ], + }, + '26829': { + id: '26829', + productId: '26829', + priceUnit: 'chi\u1ebfc', + marketPrice: '1300000', + price: '1150000', + price_off: '12', + currency: 'vnd', + sale_rules: { + price: '1150000', + normal_price: '1150000', + min_purchase: '1', + max_purchase: '11', + remain_quantity: '11', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2024-08-09 10:52:40', + warranty: '12 Th\u00e1ng', + productName: 'Chu\u1ed9t Kh\u00f4ng D\u00e2y DARMOSHARK M3S White', + productSummary: + 'Chu\u1ea9n k\u1ebft n\u1ed1i: Wireless 2.4Ghz \/ Bluetooth \/ D\u00e2y USB\r\nThi\u1ebft k\u1ebf \u0111\u1ed1i x\u1ee9ng\r\nM\u1eaft c\u1ea3m bi\u1ebfn cao c\u1ea5p PAW3395\r\n\u0110\u1ed9 ph\u00e2n gi\u1ea3i 26000 DPI\r\nPolling Rate: 2000Hz\r\nSwitch b\u1ea5m TTC Gold micro-action m\u1ea1 v\u00e0ng ch\u1ed1ng b\u1ee5i cao c\u1ea5p\r\nDung l\u01b0\u1ee3ng pin 500mAh, th\u1eddi l\u01b0\u1ee3ng s\u1eed d\u1ee5ng l\u00ean \u0111\u1ebfn 80h \u1edf ch\u1ebf \u0111\u1ed9 Polling rate 1000Hz, v\u00e0 kho\u1ea3ng 65h \u1edf 2000Hz\r\nLed RGB \u1edf n\u00fat cu\u1ed9n', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26829-chuot-khong-day-darmoshark-m3s-white.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26829-chuot-khong-day-darmoshark-m3s-white.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26829-chuot-khong-day-darmoshark-m3s-white.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26829-chuot-khong-day-darmoshark-m3s-white.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/chuot-khong-day-darmoshark-m3s-white', + brand: { + id: '183', + brand_index: 'darmoshark', + name: 'DARMOSHARK', + image: '', + url: '\/brand\/darmoshark', + }, + visit: '2047', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '11', + productSKU: 'MOU000110', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: { + pixel_code: '', + review_count: '12', + review_score: '9.1', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + { + id: '3564', + catPath: ':3564:1147:410:0', + name: 'Chu\u1ed9t Kh\u00f4ng D\u00e2y', + url: '\/chuot-khong-day', + }, + { + id: '1147', + catPath: ':1147:410:0', + name: 'Mouse - Chu\u1ed9t', + url: '\/chuot-mouse', + }, + { + id: '3562', + catPath: ':3562:1147:410:0', + name: 'Chu\u1ed9t theo h\u00e3ng', + url: '\/chuot-theo-hang', + }, + ], + }, + '26772': { + id: '26772', + productId: '26772', + priceUnit: 'chi\u1ebfc', + marketPrice: '4590000', + price: '3990000', + price_off: '13', + currency: 'vnd', + sale_rules: { + price: '3990000', + normal_price: '3990000', + min_purchase: '1', + max_purchase: '11', + remain_quantity: '11', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2024-09-10 14:17:18', + warranty: '60 Th\u00e1ng', + productName: 'T\u1ea3n nhi\u1ec7t n\u01b0\u1edbc CPU Deepcool MYSTIQUE 360', + productSummary: + 'Socket h\u1ed7 tr\u1ee3: LGA1700\/ 1200\/ 1151\/ 1150\/ 1155 v\u00e0 AM5\/ AM4\r\nT\u1ed1c \u0111\u1ed9 b\u01a1m: 3400 RPM\u00b110%\r\nT\u1ed1c \u0111\u1ed9 qu\u1ea1t: 500~2150 RPM\u00b110%\r\nH\u1ec7 th\u1ed1ng RGB th\u00f4ng minh', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26772-tan-nhiet-deepcool-mystique-360-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26772-tan-nhiet-deepcool-mystique-360-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26772-tan-nhiet-deepcool-mystique-360-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26772-tan-nhiet-deepcool-mystique-360-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26772-tan-nhiet-deepcool-mystique-360-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26772-tan-nhiet-deepcool-mystique-360-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26772-tan-nhiet-deepcool-mystique-360-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26772-tan-nhiet-deepcool-mystique-360-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26772-tan-nhiet-deepcool-mystique-360-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26772-tan-nhiet-deepcool-mystique-360-4.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26772-tan-nhiet-deepcool-mystique-360-5.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26772-tan-nhiet-deepcool-mystique-360-5.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/tan-nhiet-nuoc-cpu-deepcool-mystique-360', + brand: { + id: '72', + brand_index: 'deepcool', + name: 'DEEPCOOL', + image: '', + url: '\/brand\/deepcool', + }, + visit: '6373', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '11', + productSKU: 'TN00000142', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: { + pixel_code: '', + review_count: '15', + review_score: '4.7', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3269', + catPath: ':3269:1255:0', + name: 'T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc AIO', + url: '\/tan-nhiet-nuoc-aio', + }, + { + id: '1255', + catPath: ':1255:0', + name: 'T\u1ea2N NHI\u1ec6T PC - COOLING', + url: '\/tan-nhiet', + }, + ], + }, + '26708': { + id: '26708', + productId: '26708', + priceUnit: 'chi\u1ebfc', + marketPrice: '1990000', + price: '1450000', + price_off: '27', + currency: 'vnd', + sale_rules: { + price: '1450000', + normal_price: '1450000', + min_purchase: '1', + max_purchase: '11', + remain_quantity: '11', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-03-18 17:13:55', + warranty: '24 Th\u00e1ng', + productName: 'B\u00e0n Ph\u00edm C\u01a1 ASUS TUF Gaming K3 Gen II - Red swtich', + productSummary: + 'Nh\u00e0 S\u1ea3n Xu\u1ea5t : Asus\r\nT\u00ecnh Tr\u1ea1ng : M\u1edbi \r\nB\u1ea3o H\u00e0nh : 24 th\u00e1ng\r\nSwitch: Optical-Mechanical RGB Switch', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26708-ban-phim-asus-tuf-gaming-k3-gen-ii.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26708-ban-phim-asus-tuf-gaming-k3-gen-ii.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26708-ban-phim-asus-tuf-gaming-k3-gen-ii.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26708-ban-phim-asus-tuf-gaming-k3-gen-ii.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ban-phim-co-asus-tuf-gaming-k3-gen-ii', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '4647', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '11', + productSKU: 'BP0000171', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '32', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3543', + catPath: ':3543:1235:410:0', + name: 'B\u00e0n ph\u00edm c\u00f3 d\u00e2y', + url: '\/ban-phim-co-day-1', + }, + { + id: '3544', + catPath: ':3544:1235:410:0', + name: 'B\u00e0n ph\u00edm theo h\u00e3ng', + url: '\/ban-phim-theo-hang-1', + }, + { + id: '1235', + catPath: ':1235:410:0', + name: 'B\u00e0n Ph\u00edm', + url: '\/ban-phim', + }, + { + id: '3559', + catPath: ':3559:3544:1235:410:0', + name: 'B\u00e0n ph\u00edm ASUS', + url: '\/ban-phim-asus-1', + }, + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + ], + }, + '25844': { + id: '25844', + productId: '25844', + priceUnit: 'chi\u1ebfc', + marketPrice: '14990000', + price: '8300000', + price_off: '45', + currency: 'vnd', + sale_rules: { + price: '8300000', + normal_price: '8300000', + min_purchase: '1', + max_purchase: '11', + remain_quantity: '11', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-09-12 18:04:55', + warranty: '36 Th\u00e1ng', + productName: 'Mainboard ASUS ROG STRIX Z790-A GAMING WIFI II', + productSummary: + 'Socket: LGA1700\r\nH\u1ed7 tr\u1ee3 CPU: Intel Core, Pentium\u00ae Gold v\u00e0 Celeron\u00ae th\u1ebf h\u1ec7 th\u1ee9 14, 13 v\u00e0 12\r\nH\u1ed7 tr\u1ee3 Ram: 4 khe, DDR5 8000+(OC) (T\u1ed1i \u0111a 192GB)\r\nK\u00edch th\u01b0\u1edbc: ATX', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-asus-rog-strix-z790-a-gaming-wifi-ii.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-asus-rog-strix-z790-a-gaming-wifi-ii.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-06.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-07.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-07.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-08.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-08.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-11.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-11.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-12.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-12.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-14.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-14.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-rog-strix-z790-a-gaming-wifi-ii-15.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-rog-strix-z790-a-gaming-wifi-ii-15.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25844-asus-rog-strix-z790-a-gaming-wifi-ii.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25844-asus-rog-strix-z790-a-gaming-wifi-ii.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/mainboard-asus-rog-strix-z790-a-gaming-wifi-ii', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '12628', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '11', + productSKU: 'MB0000209', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '234', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '639', + catPath: ':639:278:3431:0', + name: 'Main Asus', + url: '\/main-asus', + }, + { + id: '278', + catPath: ':278:3431:0', + name: 'Main - Bo m\u1ea1ch ch\u1ee7', + url: '\/mainboard-bo-mach-chu', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3625', + catPath: ':3625:278:3431:0', + name: 'Intel Z790', + url: '\/intel-z790', + }, + ], + }, + '22907': { + id: '22907', + productId: '22907', + priceUnit: 'chi\u1ebfc', + marketPrice: '13990000', + price: '11900000', + price_off: '15', + currency: 'vnd', + sale_rules: { + price: '11900000', + normal_price: '11900000', + min_purchase: '1', + max_purchase: '10', + remain_quantity: '10', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-09-25 08:36:07', + warranty: '36 th\u00e1ng', + productName: 'M\u00e0n H\u00ecnh ASUS ProArt PA279CV 27 inch 4K IPS 100% sRGB', + productSummary: + 'Lo\u1ea1i m\u00e0n h\u00ecnh: Ph\u1eb3ng\r\nT\u1ec9 l\u1ec7: 16:9\r\nK\u00edch th\u01b0\u1edbc: 27 inch\r\nT\u1ea5m n\u1ec1n: IPS\r\n\u0110\u1ed9 ph\u00e2n gi\u1ea3i : 4K (3840x2160 )\r\nTh\u1eddi gian \u0111\u00e1p \u1ee9ng: 5ms', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-22907-m--n-h--nh-asus-proart-pa279cv-r.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-22907-m--n-h--nh-asus-proart-pa279cv-r.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-ava0.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-ava0.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-07.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-07.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-06.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-05-0.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-05-0.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-04c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-04c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-03c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-03c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-02c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-02c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-01c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-01c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-08.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-08.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-09.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-09.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-10.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-10.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-11.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-11.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-12.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-12.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-22907-m--n-h--nh-asus-proart-pa279cv-r.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-22907-m--n-h--nh-asus-proart-pa279cv-r.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/man-hinh-asus-proart-pa279cv-27-inch-4k-ips-100-srgb', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '11604', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '10', + productSKU: 'SP140230', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '939', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '281', + catPath: ':281:0', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + url: '\/man-hinh-may-tinh', + }, + { + id: '3500', + catPath: ':3500:281:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang-1-2', + }, + { + id: '2455', + catPath: ':2455:3500:281:0', + name: 'M\u00e0n h\u00ecnh Asus', + url: '\/man-hinh-asus', + }, + { + id: '3501', + catPath: ':3501:281:0', + name: 'CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC', + url: '\/chon-theo-kich-thuoc', + }, + { + id: '3509', + catPath: ':3509:3501:281:0', + name: 'M\u00e0n h\u00ecnh 27 inches', + url: '\/man-hinh-27-inches', + }, + { + id: '3515', + catPath: ':3515:281:0', + name: 'CH\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I', + url: '\/chon-do-phan-giai', + }, + { + id: '3526', + catPath: ':3526:3515:281:0', + name: '3840 x 2160 (UHD 4K)', + url: '\/3840-x-2160-uhd-4k', + }, + { + id: '3528', + catPath: ':3528:281:0', + name: 'CH\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T', + url: '\/tan-so-quet', + }, + { + id: '3529', + catPath: ':3529:3528:281:0', + name: '60 Hz', + url: '\/60-hz', + }, + { + id: '3624', + catPath: ':3624:281:0', + name: 'M\u00c0N H\u00ccNH \u0110\u1ed2 H\u1eccA', + url: '\/man-hinh-do-hoa', + }, + { + id: '3705', + catPath: ':3705:0', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + url: '\/man-hinh-phu', + }, + ], + }, + '26837': { + id: '26837', + productId: '26837', + priceUnit: 'chi\u1ebfc', + marketPrice: '1290000', + price: '1020000', + price_off: '21', + currency: 'vnd', + sale_rules: { + price: '1020000', + normal_price: '1020000', + min_purchase: '1', + max_purchase: '9', + remain_quantity: '9', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2024-08-05 08:50:19', + warranty: '24 Th\u00e1ng', + productName: 'B\u00e0n ph\u00edm c\u01a1 DareU EK87 Pro Triple Mode Proto (Dream Switch)', + productSummary: + 'H\u1ed7 tr\u1ee3 3 k\u1ebft n\u1ed1i: Wireless 2.4 Ghz, Bluetooth v\u00e0 c\u00f3 d\u00e2y USB\r\nC\u1ea5u tr\u00fac Gasket - T\u1ed1t nh\u1ea5t cho ph\u00edm c\u01a1\r\nM\u1ea1ch Hotswap 5 pin, m\u1ea1ch xu\u00f4i\r\nM\u1ea1ch c\u00f3 flex cut, cho c\u1ea3m gi\u00e1c g\u00f5 si\u00eau \u00eam, si\u00eau m\u1ec1m\r\nS\u1eeda d\u1ee5ng swich DareU Dream (linear) cao c\u1ea5p, \u0111\u00e3 \u0111\u01b0\u1ee3c lube s\u1eb5n\r\nStabilizer \u0111\u01b0\u1ee3c c\u00e2n ch\u1ec9nh v\u00e0 lube s\u1eb5n\r\nKeycap PBT Double shot Cherry profile\r\nPlate Polycarbonate c\u00f3 flex-cut\r\nC\u00f3 s\u1eb5n foam PCB Eva\r\nLED RGB 16.8 tri\u1ec7u m\u00e0u\r\nPin 4000mAh', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26837-ban-phim-dareu-ek87-pro-proto-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26837-ban-phim-dareu-ek87-pro-proto-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26837-ban-phim-dareu-ek87-pro-proto-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26837-ban-phim-dareu-ek87-pro-proto-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26837-dareu-ek87-pro-triple-mode-proto-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26837-dareu-ek87-pro-triple-mode-proto-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26837-dareu-ek87-pro-triple-mode-proto-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26837-dareu-ek87-pro-triple-mode-proto-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26837-dareu-ek87-pro-triple-mode-proto-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26837-dareu-ek87-pro-triple-mode-proto-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26837-dareu-ek87-pro-triple-mode-proto-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26837-dareu-ek87-pro-triple-mode-proto-4.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ban-phim-co-dareu-ek87-pro-triple-mode-proto-dream-switch', + brand: { + id: '52', + brand_index: 'dareu', + name: 'DAREU', + image: '', + url: '\/brand\/dareu', + }, + visit: '2168', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '9', + productSKU: 'BP0000190', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: { + pixel_code: '', + review_count: '15.84', + review_score: '17.99', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + { + id: '3544', + catPath: ':3544:1235:410:0', + name: 'B\u00e0n ph\u00edm theo h\u00e3ng', + url: '\/ban-phim-theo-hang-1', + }, + { + id: '3552', + catPath: ':3552:3544:1235:410:0', + name: 'B\u00e0n ph\u00edm DAREU', + url: '\/ban-phim-dareu-1', + }, + { + id: '3541', + catPath: ':3541:1235:410:0', + name: 'B\u00e0n ph\u00edm kh\u00f4ng d\u00e2y', + url: '\/ban-phim-khong-day', + }, + { + id: '1235', + catPath: ':1235:410:0', + name: 'B\u00e0n Ph\u00edm', + url: '\/ban-phim', + }, + ], + }, + '28019': { + id: '28019', + productId: '28019', + priceUnit: 'chi\u1ebfc', + marketPrice: '26990000', + price: '24590000', + price_off: '9', + currency: 'vnd', + sale_rules: { + price: '24590000', + normal_price: '24590000', + min_purchase: '1', + max_purchase: '9', + remain_quantity: '9', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-03 13:58:07', + warranty: '24 Th\u00e1ng, Pin - S\u1ea1c b\u1ea3o h\u00e0nh 12 th\u00e1ng', + productName: + 'Laptop GIGABYTE G6 MF H2VN854KH (Intel Core i7-13620H, RTX 4050, 16GB, 1TB SSD, 16 inch FHD+, Win 11, \u0110en)', + productSummary: + 'CPU: Intel Core i7-13620H (10 nh\u00e2n, 16 lu\u1ed3ng, upto 4.90GHz, 24MB)\r\nVGA: NVIDIA GeForce RTX 4050 6GB GDDR6 (AI TOPS: 194)\r\nM\u00e0n h\u00ecnh: 16 inch FHD+ 165Hz 16:10\r\nRAM: 16GB (2x8GB) DDR5-4800MHz ( 2 khe)\r\n\u1ed4 c\u1ee9ng: SSD 1TB M.2 PCIe Gen4x4\r\nPin: 54Wh\r\nTr\u1ecdng l\u01b0\u1ee3ng: 2.3 kg\r\nM\u00e0u s\u1eafc: \u0110en', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh-1114.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh-1114.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh-1114.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh-1114.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh111.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh111.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh116.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh116.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh113.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh113.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh112.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh112.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh114.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh114.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh115.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh115.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/laptop-gigabyte-g6-mf-h2vn854kh', + brand: { + id: '2', + brand_index: 'gigabyte', + name: 'Gigabyte', + image: '', + url: '\/brand\/gigabyte', + }, + visit: '2929', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '5', + total: '2', + }, + quantity: '9', + productSKU: 'LT0000858', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

+ T\u1eb7ng Balo gigabyte tr\u1ecb giá 500.000\u0111<\/p>\r\n

+ T\u1eb7ng Chu\u1ed9t không dây tr\u1ecb giá: 150.000\u0111
+ T\u1eb7ng Bàn di chu\u1ed9t tr\u1ecb giá: 50.000\u0111
+ T\u1eb7ng B\u1ed9 v\u1ec7 sinh Laptop tr\u1ecb giá: 40.000\u0111
+ Gi\u1ea3m 10% khi mua thêm RAM, HDD laptop
+ Gi\u1ea3m 5% khi mua kèm Gear, \u0110\u1ebf t\u1ea3n nhi\u1ec7t Laptop<\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

+ T\u1eb7ng Balo gigabyte tr\u1ecb giá 500.000\u0111<\/p>\r\n

+ T\u1eb7ng Chu\u1ed9t không dây tr\u1ecb giá: 150.000\u0111
+ T\u1eb7ng Bàn di chu\u1ed9t tr\u1ecb giá: 50.000\u0111
+ T\u1eb7ng B\u1ed9 v\u1ec7 sinh Laptop tr\u1ecb giá: 40.000\u0111
+ Gi\u1ea3m 10% khi mua thêm RAM, HDD laptop
+ Gi\u1ea3m 5% khi mua kèm Gear, \u0110\u1ebf t\u1ea3n nhi\u1ec7t Laptop<\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '12', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3440', + catPath: ':3440:407:0', + name: 'LAPTOP GAMING', + url: '\/laptop-gaming', + }, + { + id: '407', + catPath: ':407:0', + name: 'LAPTOP', + url: '\/laptop', + }, + { + id: '3441', + catPath: ':3441:407:0', + name: 'CH\u1eccN THEO NHU C\u1ea6U', + url: '\/chon-theo-nhu-cau', + }, + { + id: '3446', + catPath: ':3446:3441:407:0', + name: 'Laptop Gaming', + url: '\/laptop-gaming-1', + }, + { + id: '3442', + catPath: ':3442:407:0', + name: 'CH\u1eccN THEO KHO\u1ea2NG GI\u00c1', + url: '\/chon-theo-khoang-gia', + }, + { + id: '3462', + catPath: ':3462:3442:407:0', + name: '20 Tri\u1ec7u - 30 Tri\u1ec7u', + url: '\/20-trieu-30-trieu', + }, + { + id: '3443', + catPath: ':3443:407:0', + name: 'CH\u1eccN THEO CPU', + url: '\/chon-theo-cpu', + }, + { + id: '3453', + catPath: ':3453:3443:407:0', + name: 'Intel Core i7', + url: '\/intel-core-i7', + }, + { + id: '3439', + catPath: ':3439:407:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/laptop-chon-theo-hang', + }, + { + id: '3395', + catPath: ':3395:3439:407:0', + name: 'Laptop Gigabyte', + url: '\/laptop-gigabyte', + }, + ], + }, + '26594': { + id: '26594', + productId: '26594', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '990000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '990000', + normal_price: '990000', + min_purchase: '1', + max_purchase: '8', + remain_quantity: '8', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-05 17:38:50', + warranty: '12 Th\u00e1ng', + productName: 'V\u1ecf Case MIK Focalors M White', + productSummary: + 'Lo\u1ea1i s\u1ea3n ph\u1ea9m: V\u1ecf Case\r\nM\u00e0u s\u1eafc: Tr\u1eafng\/ White\r\nThi\u1ebft k\u1ebf nh\u1ecf g\u1ecdn - hi\u1ec7n \u0111\u1ea1i - sang tr\u1ecdng\r\nH\u1ed7 tr\u1ee3 main: Mini-ITX, Micro-ATX\r\nK\u00edch th\u01b0\u1edbc: 390mm (D) x 210mm (W) x 435mm (H)', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26594-vo-mik-focalors-m-white-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26594-vo-mik-focalors-m-white-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26594-vo-mik-focalors-m-white-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26594-vo-mik-focalors-m-white-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26594-vo-mik-focalors-m-white-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26594-vo-mik-focalors-m-white-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26594-vo-mik-focalors-m-white-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26594-vo-mik-focalors-m-white-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26594-vo-mik-focalors-m-white-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26594-vo-mik-focalors-m-white-4.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26594-vo-mik-focalors-m-white-5.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26594-vo-mik-focalors-m-white-5.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/vo-case-mik-focalors-m-white', + brand: { + id: '133', + brand_index: 'mik', + name: 'MIK', + image: '', + url: '\/brand\/mik', + }, + visit: '13741', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '5', + total: '5', + }, + quantity: '8', + productSKU: 'VO0000209', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: { + pixel_code: '', + review_count: '11', + review_score: '4.5', + buy_count: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '280', + catPath: ':280:3431:0', + name: 'Case - V\u1ecf m\u00e1y t\u00ednh', + url: '\/case-vo-may-tinh', + }, + { + id: '3628', + catPath: ':3628:280:3431:0', + name: 'Case MIK', + url: '\/case-mik', + }, + ], + }, + }, + price_filter_list: [ + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?p=duoi-1trieu', + name: 'D\u01b0\u1edbi 1 tri\u1ec7u', + count: '47', + isCurrent: '0', + max: '1000000', + min: '0', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?p=1trieu-4trieu', + name: '1 tri\u1ec7u - 4 tri\u1ec7u', + count: '70', + isCurrent: '0', + max: '4000000', + min: '1000000', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?p=4trieu-10trieu', + name: '4 tri\u1ec7u - 10 tri\u1ec7u', + count: '38', + isCurrent: '0', + max: '10000000', + min: '4000000', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?p=10trieu-20trieu', + name: '10 tri\u1ec7u - 20 tri\u1ec7u', + count: '9', + isCurrent: '0', + max: '20000000', + min: '10000000', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?p=tren-20trieu', + name: 'Tr\u00ean 20 tri\u1ec7u', + count: '22', + isCurrent: '0', + max: '0', + min: '20000000', + }, + ], + category_collection: [ + { + id: '277', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=277', + url: '\/cpu-bo-vi-xu-ly', + name: 'CPU - B\u1ed9 vi x\u1eed l\u00fd', + productCount: '11', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '278', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=278', + url: '\/mainboard-bo-mach-chu', + name: 'Main - Bo m\u1ea1ch ch\u1ee7', + productCount: '23', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '279', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=279', + url: '\/vga-card-man-hinh', + name: 'VGA - Card M\u00e0n H\u00ecnh', + productCount: '10', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '280', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=280', + url: '\/case-vo-may-tinh', + name: 'Case - V\u1ecf m\u00e1y t\u00ednh', + productCount: '15', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '281', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=281', + url: '\/man-hinh-may-tinh', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + productCount: '23', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '282', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=282', + url: '\/psu-nguon-may-tinh', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + productCount: '4', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '283', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=283', + url: '\/ram', + name: 'Ram - B\u1ed9 nh\u1edb trong', + productCount: '6', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '284', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=284', + url: '\/o-cung-hdd-ssd', + name: 'THI\u1ebeT B\u1eca L\u01afU TR\u1eee', + productCount: '10', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '407', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=407', + url: '\/laptop', + name: 'LAPTOP', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '408', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=408', + url: '\/pc-workstation', + name: 'PC \u0110\u1ed2 HO\u1ea0 - L\u00c0M VI\u1ec6C', + productCount: '11', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '410', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=410', + url: '\/phu-kien', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + productCount: '39', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '452', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=452', + url: '\/o-cung-western-digital', + name: '\u1ed4 c\u1ee9ng Western digital', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '457', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=457', + url: '\/o-cung-sam-sung', + name: '\u1ed4 c\u1ee9ng Samsung', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '458', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=458', + url: '\/o-cung-kingston', + name: '\u1ed4 c\u1ee9ng Kingston', + productCount: '4', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '484', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=484', + url: '\/adata-ram', + name: 'RAM Adata', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '486', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=486', + url: '\/ram-corsair', + name: 'RAM Corsair', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '509', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=509', + url: '\/man-hinh-lg', + name: 'M\u00e0n h\u00ecnh LG', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '522', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=522', + url: '\/man-hinh-dell', + name: 'M\u00e0n h\u00ecnh Dell', + productCount: '4', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '535', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=535', + url: '\/workstation-nc', + name: 'B\u1ed9 M\u00e1y S\u1eed D\u1ee5ng CPU Intel Core I', + productCount: '5', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '547', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=547', + url: '\/cpu-intel', + name: 'CPU INTEL', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '561', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=561', + url: '\/cpu-amd', + name: 'CPU AMD', + productCount: '9', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '598', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=598', + url: '\/main-msi', + name: 'Main Msi', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '599', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=599', + url: '\/main-asrock', + name: 'Main Asrock', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '607', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=607', + url: '\/vga-asus', + name: 'VGA Asus', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '608', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=608', + url: '\/vga-galax', + name: 'VGA Galax', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '624', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=624', + url: '\/main-gigabyte', + name: 'Main Gigabyte', + productCount: '9', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '625', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=625', + url: '\/vga-msi', + name: 'VGA Msi', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '639', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=639', + url: '\/main-asus', + name: 'Main Asus', + productCount: '9', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '649', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=649', + url: '\/psu-antec', + name: 'Ngu\u1ed3n Antec', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '806', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=806', + url: '\/card-man-hinh-vga-colorful', + name: 'VGA Colorful', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '949', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=949', + url: '\/psu-cooler-master', + name: 'Ngu\u1ed3n Cooler master', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '963', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=963', + url: '\/corsair-psu-nguon-may-tinh', + name: 'Ngu\u1ed3n Corsair', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1147', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1147', + url: '\/chuot-mouse', + name: 'Mouse - Chu\u1ed9t', + productCount: '12', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1191', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1191', + url: '\/case-cooler-master', + name: 'Case Cooler Master', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1196', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1196', + url: '\/case-vitra', + name: 'Case Vitra', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1229', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1229', + url: '\/case-xigmatek', + name: 'Case Xigmatek', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1234', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1234', + url: '\/man-hinh-samsung', + name: 'M\u00e0n h\u00ecnh Samsung', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1235', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1235', + url: '\/ban-phim', + name: 'B\u00e0n Ph\u00edm', + productCount: '24', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1255', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1255', + url: '\/tan-nhiet', + name: 'T\u1ea2N NHI\u1ec6T PC - COOLING', + productCount: '28', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1271', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1271', + url: '\/vga-gigabyte', + name: 'VGA Gigabyte', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1459', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1459', + url: '\/pny', + name: '\u1ed4 c\u1ee9ng PNY', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1522', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1522', + url: '\/am-thanh', + name: 'THI\u1ebeT B\u1eca \u00c2M THANH', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1751', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1751', + url: '\/thiet-bi-mang', + name: 'THI\u1ebeT B\u1eca M\u1ea0NG', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '1829', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=1829', + url: '\/pc-gaming', + name: 'PC GAMING', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '2128', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=2128', + url: '\/evga', + name: 'VGA Evga', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '2455', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=2455', + url: '\/man-hinh-asus', + name: 'M\u00e0n h\u00ecnh Asus', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '2794', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=2794', + url: '\/man-hinh-viewsonic', + name: 'M\u00e0n h\u00ecnh Viewsonic', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3036', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3036', + url: '\/edit-render-video-4k-8k', + name: 'PC D\u1ef1ng phim - Editor', + productCount: '6', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3055', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3055', + url: '\/man-hinh-aoc', + name: 'M\u00e0n h\u00ecnh AOC', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3082', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3082', + url: '\/server-may-ao-hoa', + name: 'Server - M\u00e1y \u1ea3o h\u00f3a', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3201', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3201', + url: '\/pc-van-phong-gia-re', + name: 'PC V\u0102N PH\u00d2NG GI\u00c1 R\u1eba', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3231', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3231', + url: '\/chuot-dareu', + name: 'Chu\u1ed9t Dareu', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3239', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3239', + url: '\/case-msi', + name: 'Case MSI', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3253', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3253', + url: '\/antec', + name: 'Case Antec', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3269', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3269', + url: '\/tan-nhiet-nuoc-aio', + name: 'T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc AIO', + productCount: '12', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3270', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3270', + url: '\/tan-nhiet-khi', + name: 'T\u1ea3n Nhi\u1ec7t Kh\u00ed', + productCount: '9', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3271', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3271', + url: '\/quat-tan-nhiet', + name: 'Fan t\u1ea3n nhi\u1ec7t', + productCount: '7', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3274', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3274', + url: '\/o-cung-ssd', + name: '\u1ed4 C\u1ee8NG SSD', + productCount: '8', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3275', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3275', + url: '\/o-cung-di-dong', + name: '\u1ed4 c\u1ee9ng di \u0111\u1ed9ng', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3282', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3282', + url: '\/man-hinh-coolermaster', + name: 'M\u00e0n h\u00ecnh Coolermaster', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3286', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3286', + url: '\/ghe-e-dra', + name: 'Gh\u1ebf E-Dra', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3291', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3291', + url: '\/chuot-e-dra', + name: 'Chu\u1ed9t E-DRA', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3295', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3295', + url: '\/nguon-super-flower', + name: 'Ngu\u1ed3n Super Flower', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3300', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3300', + url: '\/bo-pc-chay-ai-tri-tue-nhan-tao', + name: 'PC AI - TR\u00cd TU\u1ec6 NH\u00c2N T\u1ea0O', + productCount: '5', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3303', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3303', + url: '\/man-hinh-gigabyte', + name: 'M\u00e0n h\u00ecnh Gigabyte', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3304', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3304', + url: '\/case-gigabyte', + name: 'Case GIGABYTE', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3307', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3307', + url: '\/ghe-gaming', + name: 'Gh\u1ebf GAMING', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3309', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3309', + url: '\/tai-nghe', + name: 'Tai Nghe', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3313', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3313', + url: '\/ram-kingston', + name: 'RAM Kingston', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3316', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3316', + url: '\/ghe-warrior', + name: 'Gh\u1ebf Warrior', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3317', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3317', + url: '\/main-huananzhi', + name: 'Main Huananzhi', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3328', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3328', + url: '\/chuot-khac', + name: 'Chu\u1ed9t kh\u00e1c', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3364', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3364', + url: '\/man-hinh-msi', + name: 'M\u00e0n H\u00ecnh MSI', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3395', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3395', + url: '\/laptop-gigabyte', + name: 'Laptop Gigabyte', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3403', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3403', + url: '\/thiet-bi-van-phong', + name: 'THI\u1ebeT B\u1eca V\u0102N PH\u00d2NG', + productCount: '5', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3412', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3412', + url: '\/phu-kien-gaming-khac', + name: 'Ph\u1ee5 Ki\u1ec7n GAMING Kh\u00e1c', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3416', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3416', + url: '\/ram-colorful', + name: 'RAM Colorful', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3431', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3431', + url: '\/linh-kien-may-tinh', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + productCount: '68', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3432', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3432', + url: '\/pc-esport', + name: 'PC ESPORT', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3433', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3433', + url: '\/pc-game-aaa', + name: 'PC GAME AAA', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3434', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3434', + url: '\/pc-stream-game', + name: 'PC STREAM GAME', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3439', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3439', + url: '\/laptop-chon-theo-hang', + name: 'CH\u1eccN THEO H\u00c3NG', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3440', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3440', + url: '\/laptop-gaming', + name: 'LAPTOP GAMING', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3441', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3441', + url: '\/chon-theo-nhu-cau', + name: 'CH\u1eccN THEO NHU C\u1ea6U', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3442', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3442', + url: '\/chon-theo-khoang-gia', + name: 'CH\u1eccN THEO KHO\u1ea2NG GI\u00c1', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3443', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3443', + url: '\/chon-theo-cpu', + name: 'CH\u1eccN THEO CPU', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3446', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3446', + url: '\/laptop-gaming-1', + name: 'Laptop Gaming', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3453', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3453', + url: '\/intel-core-i7', + name: 'Intel Core i7', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3462', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3462', + url: '\/20-trieu-30-trieu', + name: '20 Tri\u1ec7u - 30 Tri\u1ec7u', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3466', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3466', + url: '\/pc-do-hoa-3ds-max', + name: 'PC \u0110\u1ed3 h\u1ecda 3Ds - Ki\u1ebfn Tr\u00fac', + productCount: '7', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3467', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3467', + url: '\/pc-do-hoa-autocad', + name: 'PC \u0110\u1ed3 h\u1ecda AutoCAD', + productCount: '5', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3468', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3468', + url: '\/chon-theo-nhu-cau-1', + name: 'CH\u1eccN THEO NHU C\u1ea6U', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3469', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3469', + url: '\/chon-theo-khoang-gia-1', + name: 'CH\u1eccN THEO KHO\u1ea2NG GI\u00c1', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3473', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3473', + url: '\/30-trieu-50-trieu-1', + name: '30 Tri\u1ec7u - 50 Tri\u1ec7u', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3476', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3476', + url: '\/chon-theo-hang', + name: 'CH\u1eccN THEO H\u00c3NG', + productCount: '8', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3477', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3477', + url: '\/chon-theo-dung-luong', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + productCount: '8', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3488', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3488', + url: '\/256gb', + name: '256GB', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3490', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3490', + url: '\/500gb', + name: '500GB', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3492', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3492', + url: '\/1tb', + name: '1TB', + productCount: '4', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3493', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3493', + url: '\/2tb', + name: '2TB', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3500', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3500', + url: '\/chon-theo-hang-1-2', + name: 'CH\u1eccN THEO H\u00c3NG', + productCount: '21', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3501', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3501', + url: '\/chon-theo-kich-thuoc', + name: 'CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC', + productCount: '21', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3505', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3505', + url: '\/man-hinh-22-inches', + name: 'M\u00e0n h\u00ecnh 22 inches', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3506', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3506', + url: '\/man-hinh-23-inches', + name: 'M\u00e0n h\u00ecnh 23 inches', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3507', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3507', + url: '\/man-hinh-24-inches', + name: 'M\u00e0n h\u00ecnh 24 inches', + productCount: '6', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3508', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3508', + url: '\/man-hinh-25-inches', + name: 'M\u00e0n h\u00ecnh 25 inches', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3509', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3509', + url: '\/man-hinh-27-inches', + name: 'M\u00e0n h\u00ecnh 27 inches', + productCount: '7', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3511', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3511', + url: '\/man-hinh-32-inches', + name: 'M\u00e0n h\u00ecnh 32 inches', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3512', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3512', + url: '\/man-hinh-34-inches', + name: 'M\u00e0n h\u00ecnh 34 inches', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3513', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3513', + url: '\/man-hinh-34-inches-1', + name: 'M\u00e0n h\u00ecnh > 34 inches', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3515', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3515', + url: '\/chon-do-phan-giai', + name: 'CH\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I', + productCount: '20', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3519', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3519', + url: '\/1920-x-1080-fhd', + name: '1920 x 1080 (FHD)', + productCount: '12', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3521', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3521', + url: '\/2560-x-1080-wfhd', + name: '2560 x 1080 (WFHD)', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3522', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3522', + url: '\/2560-x-1440-qhd-2k', + name: '2560 x 1440 (QHD 2K)', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3523', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3523', + url: '\/3440x1440-wqhd', + name: '3440x1440 (WQHD)', + productCount: '5', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3526', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3526', + url: '\/3840-x-2160-uhd-4k', + name: '3840 x 2160 (UHD 4K)', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3528', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3528', + url: '\/tan-so-quet', + name: 'CH\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T', + productCount: '17', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3529', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3529', + url: '\/60-hz', + name: '60 Hz', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3530', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3530', + url: '\/75-hz', + name: '75 Hz', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3531', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3531', + url: '\/100-hz', + name: '100 Hz', + productCount: '9', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3532', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3532', + url: '\/144-hz', + name: '144 Hz', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3533', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3533', + url: '\/165-hz', + name: '165 Hz', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3535', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3535', + url: '\/240-hz', + name: '240 Hz', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3536', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3536', + url: '\/360-hz', + name: '360 Hz', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3541', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3541', + url: '\/ban-phim-khong-day', + name: 'B\u00e0n ph\u00edm kh\u00f4ng d\u00e2y', + productCount: '18', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3543', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3543', + url: '\/ban-phim-co-day-1', + name: 'B\u00e0n ph\u00edm c\u00f3 d\u00e2y', + productCount: '6', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3544', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3544', + url: '\/ban-phim-theo-hang-1', + name: 'B\u00e0n ph\u00edm theo h\u00e3ng', + productCount: '24', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3549', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3549', + url: '\/ban-phim-akko-1-2', + name: 'B\u00e0n ph\u00edm AKKO', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3551', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3551', + url: '\/ban-phim-e-dra-1', + name: 'B\u00e0n ph\u00edm E-DRA', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3552', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3552', + url: '\/ban-phim-dareu-1', + name: 'B\u00e0n ph\u00edm DAREU', + productCount: '9', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3559', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3559', + url: '\/ban-phim-asus-1', + name: 'B\u00e0n ph\u00edm ASUS', + productCount: '4', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3562', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3562', + url: '\/chuot-theo-hang', + name: 'Chu\u1ed9t theo h\u00e3ng', + productCount: '10', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3564', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3564', + url: '\/chuot-khong-day', + name: 'Chu\u1ed9t Kh\u00f4ng D\u00e2y', + productCount: '5', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3565', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3565', + url: '\/chuot-co-day', + name: 'Chu\u1ed9t C\u00f3 D\u00e2y', + productCount: '7', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3567', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3567', + url: '\/pc-animation', + name: 'PC Animation - VFX', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3568', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3568', + url: '\/ghe-theo-hang', + name: 'Gh\u1ebf theo h\u00e3ng', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3588', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3588', + url: '\/pc-photoshop-illustrator', + name: 'PC PHOTOSHOP - ILLUSTRATOR', + productCount: '7', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3590', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3590', + url: '\/ghe-cong-thai-hoc', + name: 'GH\u1ebe C\u00d4NG TH\u00c1I H\u1eccC', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3598', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3598', + url: '\/gia-treo-man-hinh', + name: 'GI\u00c1 TREO M\u00c0N H\u00ccNH', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3607', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3607', + url: '\/intel-gen-13', + name: 'Intel Gen 13', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3609', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3609', + url: '\/nvidia-rtx-4000-series', + name: 'Nvidia RTX 4000 Series', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3610', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3610', + url: '\/nvidia-rtx-3000-series', + name: 'Nvidia RTX 3000 Series', + productCount: '6', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3614', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3614', + url: '\/amd-ryzen-5', + name: 'AMD Ryzen 5', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3615', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3615', + url: '\/amd-ryzen-7', + name: 'AMD Ryzen 7', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3616', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3616', + url: '\/amd-ryzen-threadripper', + name: 'AMD Ryzen Threadripper', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3617', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3617', + url: '\/amd-ryzen-9', + name: 'AMD Ryzen 9', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3620', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3620', + url: '\/intel-core-i7', + name: 'Intel Core i7', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3624', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3624', + url: '\/man-hinh-do-hoa', + name: 'M\u00c0N H\u00ccNH \u0110\u1ed2 H\u1eccA', + productCount: '4', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3625', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3625', + url: '\/intel-z790', + name: 'Intel Z790', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3626', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3626', + url: '\/amd-x670', + name: 'AMD X670', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3627', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3627', + url: '\/amd-b650', + name: 'AMD B650', + productCount: '10', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3628', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3628', + url: '\/case-mik', + name: 'Case MIK', + productCount: '4', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3634', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3634', + url: '\/man-hinh-vsp', + name: 'M\u00e0n h\u00ecnh VSP', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3635', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3635', + url: '\/ban-phim-rapoo', + name: 'B\u00e0n ph\u00edm RAPOO', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3636', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3636', + url: '\/thiet-bi-chuyen-doi-day-cap', + name: 'THI\u1ebeT B\u1eca CHUY\u1ec2N \u0110\u1ed4I, D\u00c2Y C\u00c1P', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3644', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3644', + url: '\/o-cung-ssd-2', + name: '\u1ed4 c\u1ee9ng SSD 2', + productCount: '8', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3645', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3645', + url: '\/case-deepcool', + name: 'Case Deepcool', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3650', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3650', + url: '\/rtx-4060', + name: 'RTX 4060', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3660', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3660', + url: '\/intel-gen-14', + name: 'Intel Gen 14', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3662', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3662', + url: '\/rtx-3060', + name: 'RTX 3060', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3667', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3667', + url: '\/rtx-3080-ti', + name: 'RTX 3080 Ti', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3669', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3669', + url: '\/rtx-3090-ti', + name: 'RTX 3090 Ti', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3673', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3673', + url: '\/rtx-4080-super', + name: 'RTX 4080 Super', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3675', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3675', + url: '\/rtx-4070-ti-super', + name: 'RTX 4070 Ti Super', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3676', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3676', + url: '\/chuot-glorious', + name: 'Chu\u1ed9t Glorious', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3680', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3680', + url: '\/o-cung-agi', + name: '\u00d4 c\u1ee9ng AGI', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3681', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3681', + url: '\/bam-phim-machenike', + name: 'B\u00e0m ph\u00edm MACHENIKE', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3682', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3682', + url: '\/chuot-rapoo', + name: 'Chu\u1ed9t RAPOO', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3683', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3683', + url: '\/chuot-machenike', + name: 'Chu\u1ed9t Machenike', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3686', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3686', + url: '\/ram-hiksemi', + name: 'RAM HIKSEMI', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3691', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3691', + url: '\/build-pc-custom', + name: 'Build PC Custom', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3695', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3695', + url: '\/amd-ryzen-9000-series', + name: 'AMD Ryzen 9000 Series', + productCount: '3', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3696', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3696', + url: '\/ban-phim-newmen-1', + name: 'B\u00e0n ph\u00edm Newmen', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3703', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3703', + url: '\/main-amd-x870', + name: 'Main AMD X870', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3705', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3705', + url: '\/man-hinh-phu', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + productCount: '23', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3715', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3715', + url: '\/may-tinh-do-hoa', + name: 'M\u00e1y T\u00ednh \u0110\u1ed3 H\u1ecda', + productCount: '7', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3724', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3724', + url: '\/man-hinh-e-dra', + name: 'M\u00e0n h\u00ecnh E-Dra', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3725', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3725', + url: '\/rtx-3050', + name: 'RTX 3050', + productCount: '2', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3733', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3733', + url: '\/pc-nc', + name: 'PC NC', + productCount: '6', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3734', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3734', + url: '\/pc-rtx-5000-series', + name: 'PC RTX 5000 Series', + productCount: '6', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3736', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3736', + url: '\/pc-rtx-5070', + name: 'PC RTX 5070', + productCount: '1', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + { + id: '3738', + urlSearch: 'https:\/\/nguyencongpc.vn\/san-pham-moi?scat_id=3738', + url: '\/pc-rtx-5090', + name: 'PC RTX 5090', + productCount: '5', + is_selected: '0', + url_back: 'https:\/\/nguyencongpc.vn\/san-pham-moi', + }, + ], + brand_filter_list: [ + { + id: '4', + name: 'ASUS', + brand_index: 'asus', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=asus', + isCurrent: '0', + count: '22', + brand_url: '\/brand\/asus', + }, + { + id: '1', + name: 'Intel', + brand_index: 'intel', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=intel', + isCurrent: '0', + count: '2', + brand_url: '\/brand\/intel', + }, + { + id: '6', + name: 'LG', + brand_index: 'lg', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=lg', + isCurrent: '0', + count: '3', + brand_url: '\/brand\/lg', + }, + { + id: '5', + name: 'MSI', + brand_index: 'msi', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=msi', + isCurrent: '0', + count: '8', + brand_url: '\/brand\/msi', + }, + { + id: '2', + name: 'Gigabyte', + brand_index: 'gigabyte', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=gigabyte', + isCurrent: '0', + count: '12', + brand_url: '\/brand\/gigabyte', + }, + { + id: '7', + name: 'Samsung', + brand_index: 'samsung', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=samsung', + isCurrent: '0', + count: '4', + brand_url: '\/brand\/samsung', + }, + { + id: '10', + name: 'Asrock', + brand_index: 'asrock', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=asrock', + isCurrent: '0', + count: '2', + brand_url: '\/brand\/asrock', + }, + { + id: '93', + name: 'HUANANZHI', + brand_index: 'huananzhi', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=huananzhi', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/huananzhi', + }, + { + id: '87', + name: 'SUPER FLOWER', + brand_index: 'super-flower', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=super-flower', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/super-flower', + }, + { + id: '84', + name: 'AKKO', + brand_index: 'akko', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=akko', + isCurrent: '0', + count: '3', + brand_url: '\/brand\/akko', + }, + { + id: '81', + name: 'ID-COOLING', + brand_index: 'id-cooling', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=id-cooling', + isCurrent: '0', + count: '4', + brand_url: '\/brand\/id-cooling', + }, + { + id: '74', + name: 'AOC', + brand_index: 'aoc', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=aoc', + isCurrent: '0', + count: '3', + brand_url: '\/brand\/aoc', + }, + { + id: '72', + name: 'DEEPCOOL', + brand_index: 'deepcool', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=deepcool', + isCurrent: '0', + count: '2', + brand_url: '\/brand\/deepcool', + }, + { + id: '70', + name: 'VIEWSONIC', + brand_index: 'viewsonic', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=viewsonic', + isCurrent: '0', + count: '2', + brand_url: '\/brand\/viewsonic', + }, + { + id: '61', + name: 'EVGA', + brand_index: 'evga', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=evga', + isCurrent: '0', + count: '3', + brand_url: '\/brand\/evga', + }, + { + id: '54', + name: 'E-DRA', + brand_index: 'e-dra', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=e-dra', + isCurrent: '0', + count: '3', + brand_url: '\/brand\/e-dra', + }, + { + id: '53', + name: 'PNY', + brand_index: 'pny', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=pny', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/pny', + }, + { + id: '52', + name: 'DAREU', + brand_index: 'dareu', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=dareu', + isCurrent: '0', + count: '11', + brand_url: '\/brand\/dareu', + }, + { + id: '45', + name: 'KINGSTON', + brand_index: 'kingston', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=kingston', + isCurrent: '0', + count: '5', + brand_url: '\/brand\/kingston', + }, + { + id: '38', + name: 'XIGMATEK', + brand_index: 'xigmatek', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=xigmatek', + isCurrent: '0', + count: '2', + brand_url: '\/brand\/xigmatek', + }, + { + id: '34', + name: 'VITRA', + brand_index: 'vitra', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=vitra', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/vitra', + }, + { + id: '31', + name: 'CORSAIR', + brand_index: 'corsair', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=corsair', + isCurrent: '0', + count: '3', + brand_url: '\/brand\/corsair', + }, + { + id: '30', + name: 'COOLER MASTER', + brand_index: 'coolermaster', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=coolermaster', + isCurrent: '0', + count: '3', + brand_url: '\/brand\/coolermaster', + }, + { + id: '21', + name: 'GALAX', + brand_index: 'galax', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=galax', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/galax', + }, + { + id: '20', + name: 'DELL', + brand_index: 'dell', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=dell', + isCurrent: '0', + count: '4', + brand_url: '\/brand\/dell', + }, + { + id: '14', + name: 'WESTERN DIGITAL', + brand_index: 'western-digital', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=western-digital', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/western-digital', + }, + { + id: '13', + name: 'COLORFUL', + brand_index: 'colorful', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=colorful', + isCurrent: '0', + count: '3', + brand_url: '\/brand\/colorful', + }, + { + id: '23', + name: 'ANTEC', + brand_index: 'antec', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=antec', + isCurrent: '0', + count: '4', + brand_url: '\/brand\/antec', + }, + { + id: '3', + name: 'AMD', + brand_index: 'amd', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=amd', + isCurrent: '0', + count: '9', + brand_url: '\/brand\/amd', + }, + { + id: '183', + name: 'DARMOSHARK', + brand_index: 'darmoshark', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=darmoshark', + isCurrent: '0', + count: '2', + brand_url: '\/brand\/darmoshark', + }, + { + id: '17', + name: 'ADATA', + brand_index: 'adata', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=adata', + isCurrent: '0', + count: '2', + brand_url: '\/brand\/adata', + }, + { + id: '205', + name: 'AGI', + brand_index: 'agi', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=agi', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/agi', + }, + { + id: '207', + name: 'ARES', + brand_index: 'ares', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=ares', + isCurrent: '0', + count: '3', + brand_url: '\/brand\/ares', + }, + { + id: '213', + name: 'Arigato', + brand_index: 'arigato', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=arigato', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/arigato', + }, + { + id: '216', + name: 'FD', + brand_index: 'fd', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=fd', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/fd', + }, + { + id: '212', + name: 'Gamdias', + brand_index: 'gamdias', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=gamdias', + isCurrent: '0', + count: '8', + brand_url: '\/brand\/gamdias', + }, + { + id: '202', + name: 'Glorious', + brand_index: 'glorious', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=glorious', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/glorious', + }, + { + id: '211', + name: 'HIKSEMI', + brand_index: 'hiksemi', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=hiksemi', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/hiksemi', + }, + { + id: '162', + name: 'Human Motion', + brand_index: 'human-motion', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=human-motion', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/human-motion', + }, + { + id: '208', + name: 'Jungle', + brand_index: 'jungle', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=jungle', + isCurrent: '0', + count: '6', + brand_url: '\/brand\/jungle', + }, + { + id: '206', + name: 'MACHENIKE', + brand_index: 'machenike', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=machenike', + isCurrent: '0', + count: '5', + brand_url: '\/brand\/machenike', + }, + { + id: '133', + name: 'MIK', + brand_index: 'mik', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=mik', + isCurrent: '0', + count: '4', + brand_url: '\/brand\/mik', + }, + { + id: '124', + name: 'NCPC', + brand_index: 'ncpc', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=ncpc', + isCurrent: '0', + count: '15', + brand_url: '\/brand\/ncpc', + }, + { + id: '139', + name: 'NEWMEN', + brand_index: 'newman', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=newman', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/newman', + }, + { + id: '161', + name: 'North Bayou', + brand_index: 'north-bayou', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=north-bayou', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/north-bayou', + }, + { + id: '170', + name: 'OCPC', + brand_index: 'ocpc', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=ocpc', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/ocpc', + }, + { + id: '154', + name: 'RAPOO', + brand_index: 'rapoo', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=rapoo', + isCurrent: '0', + count: '4', + brand_url: '\/brand\/rapoo', + }, + { + id: '122', + name: 'SYNOLOGY', + brand_index: 'synology', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=synology', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/synology', + }, + { + id: '136', + name: 'Thermalright', + brand_index: 'thermalright', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=thermalright', + isCurrent: '0', + count: '4', + brand_url: '\/brand\/thermalright', + }, + { + id: '134', + name: 'TP-Link', + brand_index: 'tp-link', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=tp-link', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/tp-link', + }, + { + id: '153', + name: 'VSP', + brand_index: 'vsp', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=vsp', + isCurrent: '0', + count: '2', + brand_url: '\/brand\/vsp', + }, + { + id: '127', + name: 'Warrior', + brand_index: 'warrior', + image: '0', + url: 'https:\/\/nguyencongpc.vn\/san-pham-moi?brand=warrior', + isCurrent: '0', + count: '1', + brand_url: '\/brand\/warrior', + }, + ], + }, + { + keywords: 'S\u1ea3n ph\u1ea9m b\u00e1n ch\u1ea1y', + description: 'S\u1ea3n ph\u1ea9m b\u00e1n ch\u1ea1y', + title: 'S\u1ea3n ph\u1ea9m b\u00e1n ch\u1ea1y', + favicon: '', + canonical: '', + image: '', + page_title: 'S\u1ea3n ph\u1ea9m b\u00e1n ch\u1ea1y', + url: '/san-pham-ban-chay', + other_filter_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?other_filter=in-stock', + key: 'in-stock', + name: 'C\u00f2n h\u00e0ng', + }, + ], + sort_by_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?sort=new', + key: 'new', + name: 'M\u1edbi nh\u1ea5t', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?sort=price-asc', + key: 'price-asc', + name: 'Gi\u00e1 t\u0103ng d\u1ea7n', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?sort=price-desc', + key: 'price-desc', + name: 'Gi\u00e1 gi\u1ea3m d\u1ea7n', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?sort=view', + key: 'view', + name: 'L\u01b0\u1ee3t xem', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?sort=comment', + key: 'comment', + name: 'Trao \u0111\u1ed5i', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?sort=rating', + key: 'rating', + name: '\u0110\u00e1nh gi\u00e1', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?sort=name', + key: 'name', + name: 'T\u00ean A->Z', + }, + ], + display_by_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?display=list', + key: 'list', + name: 'Danh s\u00e1ch', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?display=grid', + key: 'grid', + name: 'Xem nh\u00f3m', + }, + { + url: 'https:\/\/nguyencongpc.vn\/san-pham-ban-chay?display=detail', + key: 'detail', + name: 'Chi ti\u1ebft', + }, + ], + paging_collection: [ + { + name: '1', + url: '\/san-pham-ban-chay', + is_active: '1', + }, + { + name: '2', + url: '\/san-pham-ban-chay?page=2', + is_active: '0', + }, + { + name: '3', + url: '\/san-pham-ban-chay?page=3', + is_active: '0', + }, + ], + paging: + '
1<\/td><\/td>2<\/a><\/td><\/td>3<\/a><\/td><\/td><\/tr><\/table>', + paging_count: '3', + product_count: '80', + product_list: { + '16934': { + id: '16934', + productId: '16934', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '2650000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '2650000', + normal_price: '2650000', + min_purchase: '1', + max_purchase: '1208', + remain_quantity: '1208', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 11:58:59', + warranty: '36 Th\u00e1ng', + productName: 'RAM Corsair Vengeance LPX Black 16GB DDR4 (1 x 16GB) 3200MHz', + productSummary: '', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-16934-sp002159.png', + large: 'https://nguyencongpc.vn\/media\/product\/250-16934-sp002159.png', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-16934-corsair-vengeance-lpx-black-16gb-2.JPG', + large: + 'https://nguyencongpc.vn\/media\/product\/250-16934-corsair-vengeance-lpx-black-16gb-2.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-16934-sp002159.png', + large: 'https://nguyencongpc.vn\/media\/product\/250-16934-sp002159.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-16934-corsair-vengeance-lpx-black-16gb-3.JPG', + large: + 'https://nguyencongpc.vn\/media\/product\/250-16934-corsair-vengeance-lpx-black-16gb-3.JPG', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-16934-corsair-vengeance-lpx-black-16gb-1.JPG', + large: + 'https://nguyencongpc.vn\/media\/product\/250-16934-corsair-vengeance-lpx-black-16gb-1.JPG', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ram-corsair-vengeance-lpx-black-16gb-1-x-16gb-3200mhz-cl16', + brand: { + id: '31', + brand_index: 'corsair', + name: 'CORSAIR', + image: '', + url: '\/brand\/corsair', + }, + visit: '18674', + rating: '7', + reviewCount: '5', + review: { + rate: '7', + total: '5', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '1208', + productSKU: 'SP002159', + productModel: '0', + hasVAT: '0', + condition: 'm\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '
\r\n
\r\n
\r\n

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n

 <\/div>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '
\r\n
\r\n
\r\n

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n

 <\/div>', + 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: '546', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '486', + catPath: ':486:283:3431:0', + name: 'RAM Corsair', + url: '\/ram-corsair', + }, + { + id: '283', + catPath: ':283:3431:0', + name: 'Ram - B\u1ed9 nh\u1edb trong', + url: '\/ram', + }, + ], + }, + '28316': { + id: '28316', + productId: '28316', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3990000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3990000', + normal_price: '3990000', + min_purchase: '1', + max_purchase: '343', + remain_quantity: '343', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 09:02:25', + warranty: '60 th\u00e1ng', + productName: 'RAM TeamGroup T-Force Delta RGB 16GB DDR5 6000MHz - Black', + productSummary: + 'Dung l\u01b0\u1ee3ng: 16GB\r\nTh\u1ebf h\u1ec7: DDR5\r\nBus: 6000 Mhz\r\nCas: CL38\r\n\u0110i\u1ec7n th\u1ebf: 1.25v', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28316-ram-teamgroup-t-force-delta-rgb-16gb-ddr5-6000mhz-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28316-ram-teamgroup-t-force-delta-rgb-16gb-ddr5-6000mhz-03.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28316-ram-teamgroup-t-force-delta-rgb-16gb-ddr5-6000mhz-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28316-ram-teamgroup-t-force-delta-rgb-16gb-ddr5-6000mhz-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28316-ram-teamgroup-t-force-delta-rgb-16gb-ddr5-6000mhz-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28316-ram-teamgroup-t-force-delta-rgb-16gb-ddr5-6000mhz-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28316-ram-teamgroup-t-force-delta-rgb-16gb-ddr5-6000mhz-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28316-ram-teamgroup-t-force-delta-rgb-16gb-ddr5-6000mhz-03.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ram-teamgroup-t-force-delta-rgb-16gb-ddr5-6000mhz-black-ff3d516g6000hc38a01', + brand: { + id: '43', + brand_index: 'team', + name: 'TEAM', + image: '', + url: '\/brand\/team', + }, + visit: '965', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '343', + productSKU: 'RAM00000337', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Do ngu\u1ed3n hàng khan hi\u1ebfm nên Nguy\u1ec5n Công PC ch\u1ec9 bán kèm PC l\u1eafp ráp và cho khách hàng nâng c\u1ea5p PC Build s\u1eb5n t\u1ea1i Nguy\u1ec5n Công, Mong quý khách hàng thông c\u1ea3m !<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Do ngu\u1ed3n hàng khan hi\u1ebfm nên Nguy\u1ec5n Công PC ch\u1ec9 bán kèm PC l\u1eafp ráp và cho khách hàng nâng c\u1ea5p PC Build s\u1eb5n t\u1ea1i Nguy\u1ec5n Công, Mong quý khách hàng thông c\u1ea3m !<\/strong><\/span><\/p>', + 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: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '283', + catPath: ':283:3431:0', + name: 'Ram - B\u1ed9 nh\u1edb trong', + url: '\/ram', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '1333', + catPath: ':1333:283:3431:0', + name: 'RAM Team', + url: '\/ram-team', + }, + ], + }, + '25170': { + id: '25170', + productId: '25170', + priceUnit: 'chi\u1ebfc', + marketPrice: '690000', + price: '380000', + price_off: '45', + currency: 'vnd', + sale_rules: { + price: '380000', + normal_price: '380000', + min_purchase: '1', + max_purchase: '231', + remain_quantity: '231', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-05-09 16:34:53', + warranty: '24 Th\u00e1ng', + productName: 'Chu\u1ed9t ASUS TUF Gaming M3 th\u1ebf h\u1ec7 II', + productSummary: + 'C\u00f4ng t\u1eafc ph\u00edm: 60 tri\u1ec7u\r\nk\u1ebft n\u1ed1i: USB 2.0 (TypeC \u0111\u1ebfn TypeA)\r\nT\u1ed1c \u0111\u1ed9 t\u1ed1i \u0111a: 200\r\nMax Acceleration: 30g\r\nUSB Report rate: 1000 Hz\r\nL\/R Switch Type: 60 tri\u1ec7u', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25170-mou000058.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25170-mou000058.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25170-mou000058.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25170-mou000058.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-7_2_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-7_2_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-8_3_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-8_3_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-9_4_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-9_4_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-10_5_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-10_5_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-11_1_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-11_1_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-12_2_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-12_2_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-13_3_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-13_3_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-5_5_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-5_5_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-4_4_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-4_4_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau_1_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau_1_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-2_2_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-2_2_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-3_3_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-3_3_11zon.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-6_1_11zon.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25170-chuot-asus-tuf-gaming-m3-gen-2-co-mau-6_1_11zon.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/chuot-asus-tuf-gaming-m3-the-he-ii', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '14072', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '231', + productSKU: 'MOU000058', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + 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: '1357', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3312', + catPath: ':3312:3562:1147:410:0', + name: 'Chu\u1ed9t Asus', + url: '\/chuot-asus', + }, + { + id: '3562', + catPath: ':3562:1147:410:0', + name: 'Chu\u1ed9t theo h\u00e3ng', + url: '\/chuot-theo-hang', + }, + { + id: '1147', + catPath: ':1147:410:0', + name: 'Mouse - Chu\u1ed9t', + url: '\/chuot-mouse', + }, + { + id: '3565', + catPath: ':3565:1147:410:0', + name: 'Chu\u1ed9t C\u00f3 D\u00e2y', + url: '\/chuot-co-day', + }, + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + ], + }, + '25185': { + id: '25185', + productId: '25185', + priceUnit: 'chi\u1ebfc', + marketPrice: '2400000', + price: '1850000', + price_off: '23', + currency: 'vnd', + sale_rules: { + price: '1850000', + normal_price: '1850000', + min_purchase: '1', + max_purchase: '216', + remain_quantity: '216', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-30 14:03:09', + warranty: '36 Th\u00e1ng', + productName: 'M\u00e0n H\u00ecnh VSP IP2407SG \/IPS\/ 24 Inch\/ FHD\/ 1ms\/ 100Hz', + productSummary: + 'M\u00e3 s\u1ea3n ph\u1ea9m: IP2407SG\r\nM\u00e0u s\u1eafc: Black\r\nK\u00edch c\u1ee1 m\u00e0n h\u00ecnh: 23.8"\r\nT\u1ec9 l\u1ec7 khung h\u00ecnh: 16:9\r\nT\u1ed1c \u0111\u1ed9 ph\u1ea3n h\u1ed3i: 1ms (OD)\r\nM\u00e0u s\u1eafc h\u1ed7 tr\u1ee3: 6500K\r\nM\u00e0u s\u1eafc hi\u1ec3n th\u1ecb: 16.7M', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25185-vsp-ip2407sg-01.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25185-vsp-ip2407sg-01.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25185-vsp-ip2407sg-01.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25185-vsp-ip2407sg-01.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-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-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: '46231', + rating: '5', + reviewCount: '2', + review: { + rate: '5', + total: '2', + }, + comment: { + rate: '5', + total: '6', + }, + quantity: '216', + productSKU: 'MH0000138', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + 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: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '281', + catPath: ':281:0', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + url: '\/man-hinh-may-tinh', + }, + { + id: '3507', + catPath: ':3507:3501:281:0', + name: 'M\u00e0n h\u00ecnh 24 inches', + url: '\/man-hinh-24-inches', + }, + { + id: '3515', + catPath: ':3515:281:0', + name: 'CH\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I', + 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\u00e0n h\u00ecnh VSP', + url: '\/man-hinh-vsp', + }, + { + id: '3500', + catPath: ':3500:281:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang-1-2', + }, + { + id: '3528', + catPath: ':3528:281:0', + name: 'CH\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T', + url: '\/tan-so-quet', + }, + { + id: '3501', + catPath: ':3501:281:0', + name: 'CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC', + url: '\/chon-theo-kich-thuoc', + }, + { + id: '3705', + catPath: ':3705:0', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + url: '\/man-hinh-phu', + }, + ], + }, + '22472': { + id: '22472', + productId: '22472', + priceUnit: 'chi\u1ebfc', + marketPrice: '4490000', + price: '4300000', + price_off: '4', + currency: 'vnd', + sale_rules: { + price: '4300000', + normal_price: '4300000', + min_purchase: '1', + max_purchase: '142', + remain_quantity: '142', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-13 14:14:49', + warranty: '60 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD Kingston KC3000 1024GB NVMe M.2 2280 PCIe Gen 4x4 (\u0110\u1ecdc 7000MB\/s, Ghi 6000MB\/s)-(SKC3000S\/1024G)', + productSummary: + '\u1ed4 c\u1ee9ng t\u1ed1c \u0111\u1ed9 cao chu\u1ea9n NVME PCIe Gen 4\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc: 7000Mb\/s\r\nT\u1ed1c \u0111\u1ed9 ghi: 6000Mb\/s\r\nDung l\u01b0\u1ee3ng: 1TB', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22472-sp397902.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22472-sp397902.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22472-sp397902.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22472-sp397902.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22472-kc300-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22472-kc300-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22472-kc3002.png', + large: 'https://nguyencongpc.vn\/media\/product\/250-22472-kc3002.png', + original: '', + }, + alt: '', + }, + ], + productUrl: + '\/o-cung-ssd-kingston-kc3000-1024gb-nvme-m-2-2280-pcie-gen-4x4-doc-7000mb-s-ghi-6000mb-s-nguyen-cong-pc', + brand: { + id: '45', + brand_index: 'kingston', + name: 'KINGSTON', + image: '', + url: '\/brand\/kingston', + }, + visit: '16806', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '142', + productSKU: 'SP397902', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/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: '1', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '777', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3274', + catPath: ':3274:284:0', + name: '\u1ed4 C\u1ee8NG SSD', + url: '\/o-cung-ssd', + }, + { + id: '284', + catPath: ':284:0', + name: 'THI\u1ebeT B\u1eca L\u01afU TR\u1eee', + url: '\/o-cung-hdd-ssd', + }, + { + id: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '457', + catPath: ':457:3476:284:0', + name: '\u1ed4 c\u1ee9ng Samsung', + url: '\/o-cung-sam-sung', + }, + { + id: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + ], + }, + '27347': { + id: '27347', + productId: '27347', + priceUnit: 'chi\u1ebfc', + marketPrice: '43900000', + price: '33990000', + price_off: '23', + currency: 'vnd', + sale_rules: { + price: '33990000', + normal_price: '33990000', + min_purchase: '1', + max_purchase: '113', + remain_quantity: '113', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-25 14:05:34', + warranty: '36 Th\u00e1ng', + productName: 'Card m\u00e0n h\u00ecnh Gigabyte GeForce RTX 5080 WINDFORCE SFF OC 16G', + productSummary: + 'Engine \u0111\u1ed3 h\u1ecda: NVIDIA\u00ae GeForce RTX 5080\r\nB\u1ed9 nh\u1edb: 16GB GDDR7\r\nGiao di\u1ec7n b\u1ed9 nh\u1edb: 256 bit\r\nNgu\u1ed3n \u0111\u1ec1 ngh\u1ecb PSU: 850W\r\nCUDAs: 10752\r\nT\u1ea3n nhi\u1ec7t: C\u00f3\r\nK\u1ebft n\u1ed1i: 1x HDMI(2.1b), 3x DisplayPort(2.1b)', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27347-7.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27347-7.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27347-7.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27347-7.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27347-5.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27347-5.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27347-6.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27347-6.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27347-8.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27347-8.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27347-9.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27347-9.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27347-cc3753b8c53a4c64152b78.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27347-cc3753b8c53a4c64152b78.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27347-2f7d15f383710a2f536074.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27347-2f7d15f383710a2f536074.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27347-9056e7d8715af804a14b76.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27347-9056e7d8715af804a14b76.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27347-8a1bbc912a13a34dfa0275.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27347-8a1bbc912a13a34dfa0275.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/card-man-hinh-gigabyte-geforce-rtx-5080-windforce-oc-sff-16g', + brand: { + id: '2', + brand_index: 'gigabyte', + name: 'Gigabyte', + image: '', + url: '\/brand\/gigabyte', + }, + visit: '2252', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '113', + productSKU: 'VG000478', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

• Gi\u1ea3m 400.000\u0111 Khi mua cùng : Ngu\u1ed3n FSP Hydro PTM X PRO 1200W 80 Plus Platinum (ATX 3.0, PCIe 5.0)<\/a><\/strong><\/span><\/span><\/p>\r\n

 <\/div>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

• Gi\u1ea3m 400.000\u0111 Khi mua cùng : Ngu\u1ed3n FSP Hydro PTM X PRO 1200W 80 Plus Platinum (ATX 3.0, PCIe 5.0)<\/a><\/strong><\/span><\/span><\/p>\r\n

 <\/div>', + 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: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3700', + catPath: ':3700:279:3431:0', + name: 'Nvidia RTX 5000 Series', + url: '\/nvidia-rtx-5000', + }, + { + id: '3710', + catPath: ':3710:3700:279:3431:0', + name: 'RTX 5080', + url: '\/rtx-5080', + }, + { + id: '1271', + catPath: ':1271:3730:279:3431:0', + name: 'VGA Gigabyte', + url: '\/vga-gigabyte', + }, + { + id: '279', + catPath: ':279:3431:0', + name: 'VGA - Card M\u00e0n H\u00ecnh', + url: '\/vga-card-man-hinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + ], + }, + '25804': { + id: '25804', + productId: '25804', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '4500000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '4500000', + normal_price: '4500000', + min_purchase: '1', + max_purchase: '104', + remain_quantity: '104', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-11 15:47:11', + warranty: '36 Th\u00e1ng', + productName: 'RAM Kingston 16GB (16x1) DDR5 buss 5600 Fury BEAST (KF556C40BB-16)', + productSummary: + 'Model: KF556C40BB-16\r\nDung l\u01b0\u1ee3ng: 16GB\r\nM\u00e0u s\u1eafc: Black (\u0110en)\r\nLo\u1ea1i b\u1ed9 nh\u1edb: DDR5\r\n\u0110\u1ed9 tr\u1ec5 ki\u1ec3m ch\u1ee9ng: 36-38-40\r\nT\u1ed1c \u0111\u1ed9 ki\u1ec3m ch\u1ee9ng: 5600MHz', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25804-kingston-fury-beast-16gb-5600mhz-ddr5-cl40.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25804-kingston-fury-beast-16gb-5600mhz-ddr5-cl40.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25804-kingston-fury-beast-16gb-5600mhz-ddr5-cl40.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25804-kingston-fury-beast-16gb-5600mhz-ddr5-cl40.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25804-fury_beast_black_ddr5_1_angle-zm-lg.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25804-fury_beast_black_ddr5_1_angle-zm-lg.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25804-fury_beast_black_ddr5_1_pkg-zm-lg.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25804-fury_beast_black_ddr5_1_pkg-zm-lg.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ram-kingston-16gb-16x1-ddr5-buss-5600-fury-beast-kf556c40bb-16', + brand: { + id: '45', + brand_index: 'kingston', + name: 'KINGSTON', + image: '', + url: '\/brand\/kingston', + }, + visit: '6442', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '104', + productSKU: 'RAM00000116', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/span><\/strong><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/span><\/strong><\/p>', + 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: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3313', + catPath: ':3313:283:3431:0', + name: 'RAM Kingston', + url: '\/ram-kingston', + }, + { + id: '283', + catPath: ':283:3431:0', + name: 'Ram - B\u1ed9 nh\u1edb trong', + url: '\/ram', + }, + ], + }, + '27485': { + id: '27485', + productId: '27485', + priceUnit: 'chi\u1ebfc', + marketPrice: '2390000', + price: '1650000', + price_off: '31', + currency: 'vnd', + sale_rules: { + price: '1650000', + normal_price: '1650000', + min_purchase: '1', + max_purchase: '96', + remain_quantity: '96', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-14 15:49:55', + warranty: '36 Th\u00e1ng', + productName: 'Mainboard Asrock H610M-H2\/M.2', + productSummary: + 'Socket: LGA1700 h\u1ed7 tr\u1ee3 CPU Intel th\u1ebf h\u1ec7 th\u1ee9 12, 13 v\u00e0 14\r\nK\u00edch th\u01b0\u1edbc: Micro ATX\r\nKhe c\u1eafm RAM: 2 khe (T\u1ed1i \u0111a 64GB)\r\nKhe c\u1eafm m\u1edf r\u1ed9ng: 1 x PCIe 4.0 x16 Slot (PCIE1), supports x16 mode, 1 x PCIe 3.0 x1 Slot (PCIE2)', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27485-mainboard-asrock-h610m-h2m-2-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27485-mainboard-asrock-h610m-h2m-2-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27485-mainboard-asrock-h610m-h2m-2-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27485-mainboard-asrock-h610m-h2m-2-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27485-mainboard-asrock-h610m-h2m-2-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27485-mainboard-asrock-h610m-h2m-2-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27485-mainboard-asrock-h610m-h2m-2-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27485-mainboard-asrock-h610m-h2m-2-3.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/mainboard-asrock-h610m-h2m2', + brand: { + id: '10', + brand_index: 'asrock', + name: 'Asrock', + image: '', + url: '\/brand\/asrock', + }, + visit: '7830', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '96', + productSKU: 'MB0000665', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + 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: '732', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '278', + catPath: ':278:3431:0', + name: 'Main - Bo m\u1ea1ch ch\u1ee7', + url: '\/mainboard-bo-mach-chu', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '599', + catPath: ':599:278:3431:0', + name: 'Main Asrock', + url: '\/main-asrock', + }, + ], + }, + '17152': { + id: '17152', + productId: '17152', + priceUnit: 'chi\u1ebfc', + marketPrice: '590000', + price: '390000', + price_off: '34', + currency: 'vnd', + sale_rules: { + price: '390000', + normal_price: '390000', + min_purchase: '1', + max_purchase: '80', + remain_quantity: '80', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-11-15 10:30:09', + warranty: '24 Th\u00e1ng', + productName: 'Chu\u1ed9t Logitech G102 Gen 2 Lightsync White', + productSummary: '', + package_accessory: '0', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-17152-logitech-g102-gen2-white.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-17152-logitech-g102-gen2-white.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-17152-logitech-g102-3.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-17152-logitech-g102-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-17152-logitech-g102-gen2-white.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-17152-logitech-g102-gen2-white.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-17152-logitech-g102-4.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-17152-logitech-g102-4.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-17152-logitech-g102-5.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-17152-logitech-g102-5.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-17152-logitech-g102-6.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-17152-logitech-g102-6.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-17152-logitech-g102-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-17152-logitech-g102-1.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/chuot-gaming-logitech-g102-lightsync-white', + brand: { + id: '37', + brand_index: 'logitech', + name: 'LOGITECH', + image: '', + url: '\/brand\/logitech', + }, + visit: '14147', + rating: '7', + reviewCount: '5', + review: { + rate: '7', + total: '5', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '80', + productSKU: 'SP002757', + productModel: 'G102', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + 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: '695', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3226', + catPath: ':3226:3562:1147:410:0', + name: 'Chu\u1ed9t Logitech', + url: '\/chuot-logitech', + }, + { + id: '1147', + catPath: ':1147:410:0', + name: 'Mouse - Chu\u1ed9t', + url: '\/chuot-mouse', + }, + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + ], + }, + '18771': { + id: '18771', + productId: '18771', + priceUnit: 'chi\u1ebfc', + marketPrice: '10080000', + price: '8150000', + price_off: '19', + currency: 'vnd', + sale_rules: { + price: '8150000', + normal_price: '8150000', + min_purchase: '1', + max_purchase: '60', + remain_quantity: '60', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-11-29 08:56:10', + warranty: '36 th\u00e1ng', + productName: 'M\u00e0n h\u00ecnh 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: '11636', + rating: '9', + reviewCount: '5', + review: { + rate: '9', + total: '5', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '60', + productSKU: 'SP3081023', + productModel: '0', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

T\u1eb7ng ngay b\u1ed9 s\u1ea3n ph\u1ea9m Adobe Creative Cloud tr\u1ecb giá 5.500.000VND \u0110\u0103ng ký nh\u1eadn quà t\u1ea1i \u0111ây<\/a><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

T\u1eb7ng ngay b\u1ed9 s\u1ea3n ph\u1ea9m Adobe Creative Cloud tr\u1ecb giá 5.500.000VND \u0110\u0103ng ký nh\u1eadn quà t\u1ea1i \u0111ây<\/a><\/p>', + 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: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '2455', + catPath: ':2455:3500:281:0', + name: 'M\u00e0n h\u00ecnh Asus', + url: '\/man-hinh-asus', + }, + { + id: '281', + catPath: ':281:0', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + url: '\/man-hinh-may-tinh', + }, + { + id: '3624', + catPath: ':3624:281:0', + name: 'M\u00c0N H\u00ccNH \u0110\u1ed2 H\u1eccA', + url: '\/man-hinh-do-hoa', + }, + { + id: '3705', + catPath: ':3705:0', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + url: '\/man-hinh-phu', + }, + ], + }, + '16528': { + id: '16528', + productId: '16528', + priceUnit: 'chi\u1ebfc', + marketPrice: '5880000', + price: '4790000', + price_off: '19', + currency: 'vnd', + sale_rules: { + price: '4790000', + normal_price: '4790000', + min_purchase: '1', + max_purchase: '42', + remain_quantity: '42', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-08-13 13:59:51', + warranty: '36 Th\u00e1ng', + productName: + 'M\u00e0n h\u00ecnh Asus ProArt PA248QV 24.1 inch IPS FHD - Chuy\u00ean \u0110\u1ed3 H\u1ecda', + 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: '47828', + rating: '7', + reviewCount: '5', + review: { + rate: '7', + total: '5', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '42', + productSKU: 'SP002020', + productModel: '0', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

\u2b50 Mua thêm giá treo màn hình gi\u1ea3m giá thêm 5%<\/p>\r\n

=> Xem thêm t\u1ea1i: T\u1ea1i \u0111ây<\/a><\/p>\r\n

\u2b50 T\u1eb7ng ngay b\u1ed9 s\u1ea3n ph\u1ea9m Adobe Creative Cloud tr\u1ecb giá 5.500.000VND<\/strong> \u0110\u0103ng ký nh\u1eadn quà t\u1ea1i \u0111ây<\/a><\/strong><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

\u2b50 Mua thêm giá treo màn hình gi\u1ea3m giá thêm 5%<\/p>\r\n

=> Xem thêm t\u1ea1i: T\u1ea1i \u0111ây<\/a><\/p>\r\n

\u2b50 T\u1eb7ng ngay b\u1ed9 s\u1ea3n ph\u1ea9m Adobe Creative Cloud tr\u1ecb giá 5.500.000VND<\/strong> \u0110\u0103ng ký nh\u1eadn quà t\u1ea1i \u0111ây<\/a><\/strong><\/p>', + 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: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '2455', + catPath: ':2455:3500:281:0', + name: 'M\u00e0n h\u00ecnh Asus', + url: '\/man-hinh-asus', + }, + { + id: '281', + catPath: ':281:0', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + url: '\/man-hinh-may-tinh', + }, + { + id: '3507', + catPath: ':3507:3501:281:0', + name: 'M\u00e0n h\u00ecnh 24 inches', + url: '\/man-hinh-24-inches', + }, + { + id: '3501', + catPath: ':3501:281:0', + name: 'CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC', + url: '\/chon-theo-kich-thuoc', + }, + { + id: '3500', + catPath: ':3500:281:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang-1-2', + }, + { + id: '3515', + catPath: ':3515:281:0', + name: 'CH\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I', + 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\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T', + url: '\/tan-so-quet', + }, + { + id: '3624', + catPath: ':3624:281:0', + name: 'M\u00c0N H\u00ccNH \u0110\u1ed2 H\u1eccA', + url: '\/man-hinh-do-hoa', + }, + { + id: '3705', + catPath: ':3705:0', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + url: '\/man-hinh-phu', + }, + ], + }, + '22473': { + id: '22473', + productId: '22473', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3200000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3200000', + normal_price: '3200000', + min_purchase: '1', + max_purchase: '28', + remain_quantity: '28', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-13 14:00:20', + warranty: '60 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD Kingston KC3000 512GB NVMe M.2 2280 PCIe Gen 4x4 (\u0110\u1ecdc 7000MB\/s, Ghi 3900MB\/s)-(SKC3000S\/512G)', + productSummary: + '\u1ed4 c\u1ee9ng t\u1ed1c \u0111\u1ed9 cao chu\u1ea9n NVME PCIe Gen 4\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc: 7000Mb\/s\r\nT\u1ed1c \u0111\u1ed9 ghi: 3900Mb\/s\r\nDung l\u01b0\u1ee3ng: 512GB', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22473-sp181247.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22473-sp181247.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22473-sp181247.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22473-sp181247.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22473-k3000-512gb-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22473-k3000-512gb-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-22473-39536_ktc_product_ssd_kc3000_512.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-22473-39536_ktc_product_ssd_kc3000_512.png', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-kingston-kc3000-512gb-skc3000s-512g', + brand: { + id: '45', + brand_index: 'kingston', + name: 'KINGSTON', + image: '', + url: '\/brand\/kingston', + }, + visit: '14977', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '28', + productSKU: 'SP181247', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/strong><\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

Vì ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 bán l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n hàng \/ 1 khách hàng. Mong quý khách thông c\u1ea3m.<\/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: '1', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '1478', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '284', + catPath: ':284:0', + name: 'THI\u1ebeT B\u1eca L\u01afU TR\u1eee', + url: '\/o-cung-hdd-ssd', + }, + { + id: '3274', + catPath: ':3274:284:0', + name: '\u1ed4 C\u1ee8NG SSD', + url: '\/o-cung-ssd', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + { + id: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + { + id: '457', + catPath: ':457:3476:284:0', + name: '\u1ed4 c\u1ee9ng Samsung', + url: '\/o-cung-sam-sung', + }, + ], + }, + '21961': { + id: '21961', + productId: '21961', + priceUnit: 'chi\u1ebfc', + marketPrice: '150000', + price: '120000', + price_off: '20', + currency: 'vnd', + sale_rules: { + price: '120000', + normal_price: '120000', + min_purchase: '1', + max_purchase: '26', + remain_quantity: '26', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2024-12-25 10:57:12', + warranty: '24 th\u00e1ng', + productName: 'Chu\u1ed9t m\u00e1y t\u00ednh Dareu LM130S \u0110en (RGB, USB)', + productSummary: + 'Chu\u1ed9t Dareu LM130S\r\nSensor: PAN3512\r\nDPI: 1000\r\nPolling rate: 100Hz\r\nSwitch: Huano (10 tri\u1ec7u l\u1ea7n click)\r\nLed RGB', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-21961-sp180233.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-21961-sp180233.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-21961-da3.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-21961-da3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-21961-da2.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-21961-da2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-21961-sp180233.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-21961-sp180233.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/chuot-may-tinh-dareu-lm130s-den-rgb-usb', + brand: { + id: '52', + brand_index: 'dareu', + name: 'DAREU', + image: '', + url: '\/brand\/dareu', + }, + visit: '11827', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '26', + productSKU: 'SP180233', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '1257', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + { + id: '1147', + catPath: ':1147:410:0', + name: 'Mouse - Chu\u1ed9t', + url: '\/chuot-mouse', + }, + { + id: '3565', + catPath: ':3565:1147:410:0', + name: 'Chu\u1ed9t C\u00f3 D\u00e2y', + url: '\/chuot-co-day', + }, + { + id: '3562', + catPath: ':3562:1147:410:0', + name: 'Chu\u1ed9t theo h\u00e3ng', + url: '\/chuot-theo-hang', + }, + { + id: '3231', + catPath: ':3231:3562:1147:410:0', + name: 'Chu\u1ed9t Dareu', + url: '\/chuot-dareu', + }, + ], + }, + '18765': { + id: '18765', + productId: '18765', + priceUnit: 'chi\u1ebfc', + marketPrice: '7490000', + price: '5000000', + price_off: '33', + currency: 'vnd', + sale_rules: { + price: '5000000', + normal_price: '5000000', + min_purchase: '1', + max_purchase: '22', + remain_quantity: '22', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-09-03 16:22:52', + warranty: '36 th\u00e1ng', + productName: 'M\u00e0n h\u00ecnh ASUS ProArt PA247CV (23.8 inch\/ FHD\/ IPS\/ 75Hz)', + productSummary: '', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-asus-proart-pa247cv.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-asus-proart-pa247cv.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-00-p.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-00-p.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-18765-man-hinh-asus-proart-pa247cv-17.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-18765-man-hinh-asus-proart-pa247cv-17.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-asus-proart-pa247cv.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-asus-proart-pa247cv.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-13.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-13.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-12.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-12.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-11.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-11.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-10.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-10.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-09.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-09.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-08.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-08.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-18765-man-hinh-asus-proart-pa247cv-21.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-18765-man-hinh-asus-proart-pa247cv-21.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-18765-man-hinh-asus-proart-pa247cv-19.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-18765-man-hinh-asus-proart-pa247cv-19.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-18765-man-hinh-asus-proart-pa247cv-18.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-18765-man-hinh-asus-proart-pa247cv-18.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-06.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-18765-man-hinh-asus-proart-pa247cv-14.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-18765-man-hinh-asus-proart-pa247cv-14.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-18765-man-hinh-asus-proart-pa247cv-12.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-18765-man-hinh-asus-proart-pa247cv-12.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-18765-man-hinh-asus-proart-pa247cv-10.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-18765-man-hinh-asus-proart-pa247cv-10.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-02c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-02c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-01c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-01c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-03c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-03c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-05c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-05c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-04c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-04c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-18765-pa247cv-07.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-18765-pa247cv-07.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/man-hinh-asus-proart-pa247cv-238-inch-fhd-ips-75hz', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '17528', + rating: '9', + reviewCount: '7', + review: { + rate: '9', + total: '7', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '22', + productSKU: 'SP3888987', + productModel: '0', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

T\u1eb7ng ngay b\u1ed9 s\u1ea3n ph\u1ea9m Adobe Creative Cloud tr\u1ecb giá 5.500.000VND \u0110\u0103ng ký nh\u1eadn quà t\u1ea1i \u0111ây<\/a><\/strong><\/p>\r\n

\u2b50 Mua thêm giá treo màn hình gi\u1ea3m giá thêm 5%<\/p>\r\n

=> Xem thêm t\u1ea1i: T\u1ea1i \u0111ây<\/a><\/p>\r\n

 <\/p>\r\n

 <\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

T\u1eb7ng ngay b\u1ed9 s\u1ea3n ph\u1ea9m Adobe Creative Cloud tr\u1ecb giá 5.500.000VND \u0110\u0103ng ký nh\u1eadn quà t\u1ea1i \u0111ây<\/a><\/strong><\/p>\r\n

\u2b50 Mua thêm giá treo màn hình gi\u1ea3m giá thêm 5%<\/p>\r\n

=> Xem thêm t\u1ea1i: T\u1ea1i \u0111ây<\/a><\/p>\r\n

 <\/p>\r\n

 <\/p>', + 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: '4268', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '2455', + catPath: ':2455:3500:281:0', + name: 'M\u00e0n h\u00ecnh Asus', + url: '\/man-hinh-asus', + }, + { + id: '281', + catPath: ':281:0', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + url: '\/man-hinh-may-tinh', + }, + { + id: '3624', + catPath: ':3624:281:0', + name: 'M\u00c0N H\u00ccNH \u0110\u1ed2 H\u1eccA', + url: '\/man-hinh-do-hoa', + }, + { + id: '3530', + catPath: ':3530:3528:281:0', + name: '75 Hz', + url: '\/75-hz', + }, + { + id: '3515', + catPath: ':3515:281:0', + name: 'CH\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I', + url: '\/chon-do-phan-giai', + }, + { + id: '3528', + catPath: ':3528:281:0', + name: 'CH\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T', + url: '\/tan-so-quet', + }, + { + id: '3519', + catPath: ':3519:3515:281:0', + name: '1920 x 1080 (FHD)', + url: '\/1920-x-1080-fhd', + }, + { + id: '3501', + catPath: ':3501:281:0', + name: 'CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC', + url: '\/chon-theo-kich-thuoc', + }, + { + id: '3507', + catPath: ':3507:3501:281:0', + name: 'M\u00e0n h\u00ecnh 24 inches', + url: '\/man-hinh-24-inches', + }, + { + id: '3500', + catPath: ':3500:281:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang-1-2', + }, + { + id: '3705', + catPath: ':3705:0', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + url: '\/man-hinh-phu', + }, + ], + }, + '27335': { + id: '27335', + productId: '27335', + priceUnit: 'chi\u1ebfc', + marketPrice: '119000000', + price: '86000000', + price_off: '28', + currency: 'vnd', + sale_rules: { + price: '86000000', + normal_price: '86000000', + min_purchase: '1', + max_purchase: '12', + remain_quantity: '12', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2026-01-05 13:51:53', + warranty: '36 Th\u00e1ng', + productName: 'Card m\u00e0n h\u00ecnh Gigabyte GeForce RTX 5090 GAMING OC 32G', + productSummary: + 'Engine \u0111\u1ed3 h\u1ecda: NVIDIA\u00ae GeForce RTX 5090\r\nB\u1ed9 nh\u1edb: 32GB GDDR7\r\nGiao di\u1ec7n b\u1ed9 nh\u1edb: 512 bit\r\nNgu\u1ed3n \u0111\u1ec1 ngh\u1ecb PSU: TBD\r\nCUDAs: TBD\r\nT\u1ea3n nhi\u1ec7t: C\u00f3\r\nK\u1ebft n\u1ed1i: 1x HDMI(2.1b), 3x DisplayPort(2.1a)', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27335-9.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27335-9.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27335-9.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27335-9.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27335-6.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27335-6.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27335-5.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27335-5.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27335-7.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27335-7.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27335-8.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27335-8.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27335-gigabyte-geforce-rtx-5090-gaming-oc-32g.webp', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27335-gigabyte-geforce-rtx-5090-gaming-oc-32g.webp', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/card-man-hinh-gigabyte-geforce-rtx-5090-gaming-oc-32g', + brand: { + id: '2', + brand_index: 'gigabyte', + name: 'Gigabyte', + image: '', + url: '\/brand\/gigabyte', + }, + visit: '3355', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '12', + productSKU: 'VG000467', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + 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: '34', + pixel_code: '', + review_count: '25', + review_score: '4.7', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '279', + catPath: ':279:3431:0', + name: 'VGA - Card M\u00e0n H\u00ecnh', + url: '\/vga-card-man-hinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '1271', + catPath: ':1271:3730:279:3431:0', + name: 'VGA Gigabyte', + url: '\/vga-gigabyte', + }, + { + id: '3700', + catPath: ':3700:279:3431:0', + name: 'Nvidia RTX 5000 Series', + url: '\/nvidia-rtx-5000', + }, + { + id: '3719', + catPath: ':3719:279:3431:0', + name: 'RTX 5090', + url: '\/rtx-5090', + }, + ], + }, + '25561': { + id: '25561', + productId: '25561', + priceUnit: 'chi\u1ebfc', + marketPrice: '2050000', + price: '1280000', + price_off: '38', + currency: 'vnd', + sale_rules: { + price: '1280000', + normal_price: '1280000', + min_purchase: '1', + max_purchase: '10', + remain_quantity: '10', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2024-12-26 08:10:30', + warranty: '12 Th\u00e1ng', + productName: 'Gh\u1ebf c\u00f4ng th\u00e1i h\u1ecdc ergonomic E-Dra EEC218', + productSummary: + 'Ch\u1ea5t li\u1ec7u: l\u01b0\u1edbi ch\u1ea5t l\u01b0\u1ee3ng cao cho c\u1ea3m gi\u00e1c th\u00f4ng tho\u00e1ng\r\n\u0110\u1ec7m ng\u1ed3i ch\u1ea5t li\u1ec7u: Fabric.\r\nT\u1ef1a \u0111\u1ea7u 2D \u0111i\u1ec1u ch\u1ec9nh \u0111\u1ed9 cao, g\u00f3c \u0111\u1ed9\r\nK\u00ea tay: n\u00e2ng h\u1ea1 g\u1eafn li\u1ec1n\r\nPh\u1ea7n t\u1ef1a l\u01b0ng \u0111i\u1ec1u ch\u1ec9nh \u0111\u01b0\u1ee3c chi\u1ec1u cao', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25561-ergonomic-e-dra-eec218.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25561-ergonomic-e-dra-eec218.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25561-gh----edra.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25561-gh----edra.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25561-45929_e_dra_eec218__8.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25561-45929_e_dra_eec218__8.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25561-45929_e_dra_eec218__1.png', + large: 'https://nguyencongpc.vn\/media\/product\/250-25561-45929_e_dra_eec218__1.png', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25561-45929_e_dra_eec218__10.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25561-45929_e_dra_eec218__10.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25561-45929_e_dra_eec218__9.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25561-45929_e_dra_eec218__9.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25561-45929_e_dra_eec218__7.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25561-45929_e_dra_eec218__7.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25561-45929_e_dra_eec218__4.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25561-45929_e_dra_eec218__4.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25561-45929_e_dra_eec218__2.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25561-45929_e_dra_eec218__2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25561-ergonomic-e-dra-eec218.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25561-ergonomic-e-dra-eec218.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ghe-cong-thai-hoc-ergonomic-e-dra-eec218', + brand: { + id: '54', + brand_index: 'e-dra', + name: 'E-DRA', + image: '', + url: '\/brand\/e-dra', + }, + visit: '10154', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '10', + productSKU: 'GHE0000020', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + 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: '63', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + { + id: '3590', + catPath: ':3590:410:0', + name: 'GH\u1ebe C\u00d4NG TH\u00c1I H\u1eccC', + url: '\/ghe-cong-thai-hoc', + }, + { + id: '3286', + catPath: ':3286:3568:3307:410:0', + name: 'Gh\u1ebf E-Dra', + url: '\/ghe-e-dra', + }, + ], + }, + '22907': { + id: '22907', + productId: '22907', + priceUnit: 'chi\u1ebfc', + marketPrice: '13990000', + price: '11900000', + price_off: '15', + currency: 'vnd', + sale_rules: { + price: '11900000', + normal_price: '11900000', + min_purchase: '1', + max_purchase: '10', + remain_quantity: '10', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-09-25 08:36:07', + warranty: '36 th\u00e1ng', + productName: 'M\u00e0n H\u00ecnh ASUS ProArt PA279CV 27 inch 4K IPS 100% sRGB', + productSummary: + 'Lo\u1ea1i m\u00e0n h\u00ecnh: Ph\u1eb3ng\r\nT\u1ec9 l\u1ec7: 16:9\r\nK\u00edch th\u01b0\u1edbc: 27 inch\r\nT\u1ea5m n\u1ec1n: IPS\r\n\u0110\u1ed9 ph\u00e2n gi\u1ea3i : 4K (3840x2160 )\r\nTh\u1eddi gian \u0111\u00e1p \u1ee9ng: 5ms', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-22907-m--n-h--nh-asus-proart-pa279cv-r.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-22907-m--n-h--nh-asus-proart-pa279cv-r.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-ava0.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-ava0.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-07.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-07.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-06.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-05-0.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-05-0.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-04c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-04c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-03c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-03c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-02c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-02c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-01c.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-01c.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-08.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-08.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-09.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-09.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-10.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-10.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-11.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-11.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22907-pa279cv-12.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22907-pa279cv-12.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-22907-m--n-h--nh-asus-proart-pa279cv-r.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-22907-m--n-h--nh-asus-proart-pa279cv-r.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/man-hinh-asus-proart-pa279cv-27-inch-4k-ips-100-srgb', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '11604', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '10', + productSKU: 'SP140230', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + 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: '939', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '281', + catPath: ':281:0', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + url: '\/man-hinh-may-tinh', + }, + { + id: '3500', + catPath: ':3500:281:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang-1-2', + }, + { + id: '2455', + catPath: ':2455:3500:281:0', + name: 'M\u00e0n h\u00ecnh Asus', + url: '\/man-hinh-asus', + }, + { + id: '3501', + catPath: ':3501:281:0', + name: 'CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC', + url: '\/chon-theo-kich-thuoc', + }, + { + id: '3509', + catPath: ':3509:3501:281:0', + name: 'M\u00e0n h\u00ecnh 27 inches', + url: '\/man-hinh-27-inches', + }, + { + id: '3515', + catPath: ':3515:281:0', + name: 'CH\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I', + url: '\/chon-do-phan-giai', + }, + { + id: '3526', + catPath: ':3526:3515:281:0', + name: '3840 x 2160 (UHD 4K)', + url: '\/3840-x-2160-uhd-4k', + }, + { + id: '3528', + catPath: ':3528:281:0', + name: 'CH\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T', + url: '\/tan-so-quet', + }, + { + id: '3529', + catPath: ':3529:3528:281:0', + name: '60 Hz', + url: '\/60-hz', + }, + { + id: '3624', + catPath: ':3624:281:0', + name: 'M\u00c0N H\u00ccNH \u0110\u1ed2 H\u1eccA', + url: '\/man-hinh-do-hoa', + }, + { + id: '3705', + catPath: ':3705:0', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + url: '\/man-hinh-phu', + }, + ], + }, + '28019': { + id: '28019', + productId: '28019', + priceUnit: 'chi\u1ebfc', + marketPrice: '26990000', + price: '24590000', + price_off: '9', + currency: 'vnd', + sale_rules: { + price: '24590000', + normal_price: '24590000', + min_purchase: '1', + max_purchase: '9', + remain_quantity: '9', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-03 13:58:07', + warranty: '24 Th\u00e1ng, Pin - S\u1ea1c b\u1ea3o h\u00e0nh 12 th\u00e1ng', + productName: + 'Laptop GIGABYTE G6 MF H2VN854KH (Intel Core i7-13620H, RTX 4050, 16GB, 1TB SSD, 16 inch FHD+, Win 11, \u0110en)', + productSummary: + 'CPU: Intel Core i7-13620H (10 nh\u00e2n, 16 lu\u1ed3ng, upto 4.90GHz, 24MB)\r\nVGA: NVIDIA GeForce RTX 4050 6GB GDDR6 (AI TOPS: 194)\r\nM\u00e0n h\u00ecnh: 16 inch FHD+ 165Hz 16:10\r\nRAM: 16GB (2x8GB) DDR5-4800MHz ( 2 khe)\r\n\u1ed4 c\u1ee9ng: SSD 1TB M.2 PCIe Gen4x4\r\nPin: 54Wh\r\nTr\u1ecdng l\u01b0\u1ee3ng: 2.3 kg\r\nM\u00e0u s\u1eafc: \u0110en', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh-1114.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh-1114.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh-1114.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh-1114.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh111.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh111.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh116.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh116.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh113.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh113.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh112.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh112.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh114.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh114.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28019-laptop-gigabyte-g6-mf-h2vn854kh115.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28019-laptop-gigabyte-g6-mf-h2vn854kh115.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/laptop-gigabyte-g6-mf-h2vn854kh', + brand: { + id: '2', + brand_index: 'gigabyte', + name: 'Gigabyte', + image: '', + url: '\/brand\/gigabyte', + }, + visit: '2929', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '5', + total: '2', + }, + quantity: '9', + productSKU: 'LT0000858', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

+ T\u1eb7ng Balo gigabyte tr\u1ecb giá 500.000\u0111<\/p>\r\n

+ T\u1eb7ng Chu\u1ed9t không dây tr\u1ecb giá: 150.000\u0111
+ T\u1eb7ng Bàn di chu\u1ed9t tr\u1ecb giá: 50.000\u0111
+ T\u1eb7ng B\u1ed9 v\u1ec7 sinh Laptop tr\u1ecb giá: 40.000\u0111
+ Gi\u1ea3m 10% khi mua thêm RAM, HDD laptop
+ Gi\u1ea3m 5% khi mua kèm Gear, \u0110\u1ebf t\u1ea3n nhi\u1ec7t Laptop<\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

+ T\u1eb7ng Balo gigabyte tr\u1ecb giá 500.000\u0111<\/p>\r\n

+ T\u1eb7ng Chu\u1ed9t không dây tr\u1ecb giá: 150.000\u0111
+ T\u1eb7ng Bàn di chu\u1ed9t tr\u1ecb giá: 50.000\u0111
+ T\u1eb7ng B\u1ed9 v\u1ec7 sinh Laptop tr\u1ecb giá: 40.000\u0111
+ Gi\u1ea3m 10% khi mua thêm RAM, HDD laptop
+ Gi\u1ea3m 5% khi mua kèm Gear, \u0110\u1ebf t\u1ea3n nhi\u1ec7t Laptop<\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + 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: '12', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3440', + catPath: ':3440:407:0', + name: 'LAPTOP GAMING', + url: '\/laptop-gaming', + }, + { + id: '407', + catPath: ':407:0', + name: 'LAPTOP', + url: '\/laptop', + }, + { + id: '3441', + catPath: ':3441:407:0', + name: 'CH\u1eccN THEO NHU C\u1ea6U', + url: '\/chon-theo-nhu-cau', + }, + { + id: '3446', + catPath: ':3446:3441:407:0', + name: 'Laptop Gaming', + url: '\/laptop-gaming-1', + }, + { + id: '3442', + catPath: ':3442:407:0', + name: 'CH\u1eccN THEO KHO\u1ea2NG GI\u00c1', + url: '\/chon-theo-khoang-gia', + }, + { + id: '3462', + catPath: ':3462:3442:407:0', + name: '20 Tri\u1ec7u - 30 Tri\u1ec7u', + url: '\/20-trieu-30-trieu', + }, + { + id: '3443', + catPath: ':3443:407:0', + name: 'CH\u1eccN THEO CPU', + url: '\/chon-theo-cpu', + }, + { + id: '3453', + catPath: ':3453:3443:407:0', + name: 'Intel Core i7', + url: '\/intel-core-i7', + }, + { + id: '3439', + catPath: ':3439:407:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/laptop-chon-theo-hang', + }, + { + id: '3395', + catPath: ':3395:3439:407:0', + name: 'Laptop Gigabyte', + url: '\/laptop-gigabyte', + }, + ], + }, + '25018': { + id: '25018', + productId: '25018', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '2990000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '2990000', + normal_price: '2990000', + min_purchase: '1', + max_purchase: '8', + remain_quantity: '8', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-09 14:31:41', + warranty: '36 th\u00e1ng', + productName: + 'CPU Intel Core i5-12400F Tray NEW (Up to 4.4Ghz, 6 nh\u00e2n 12 lu\u1ed3ng, 18MB Cache, 65W) - Socket Intel LGA 1700)', + productSummary: + 'Socket LGA 1700\r\nXung nh\u1ecbp t\u1ed1i \u0111a: 4.4Ghz\r\nS\u1ed1 nh\u00e2n: 6\r\nS\u1ed1 lu\u1ed3ng: 12\r\n*Phi\u00ean b\u1ea3n F: Kh\u00f4ng c\u00f3 GPU t\u00edch h\u1ee3p, c\u1ea7n s\u1eed d\u1ee5ng card \u0111\u1ed3 h\u1ecda r\u1eddi', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25018-core-i5-12400f-tray-010.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25018-core-i5-12400f-tray-010.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25018-i5-12400f-trayi5-12400f-trayi5-12400f-tray.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25018-i5-12400f-trayi5-12400f-trayi5-12400f-tray.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25018-21447-core-i5-12400f-ncpc-.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25018-21447-core-i5-12400f-ncpc-.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25018-25018-i5-12400f-trayi5-12400f-trayi5-12400f-tray-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25018-25018-i5-12400f-trayi5-12400f-trayi5-12400f-tray-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25018-core-i5-12400f-tray-010.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25018-core-i5-12400f-tray-010.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/cpu-intel-core-i5-12400f-tray', + brand: { + id: '1', + brand_index: 'intel', + name: 'Intel', + image: '', + url: '\/brand\/intel', + }, + visit: '224775', + rating: '5', + reviewCount: '3', + review: { + rate: '5', + total: '3', + }, + comment: { + rate: '5', + total: '20', + }, + quantity: '8', + productSKU: 'SP140234T', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

• Giá Build PC : 2.990.000<\/strong><\/span>\u0111 Khi kèm PC<\/p>\r\n

• Giá Build PC : 3.390.000<\/span><\/strong>\u0111 Khi mua PC không có VGA<\/p>\r\n

• Giá mua kèm riêng Main b\u1ea5t k\u1ef3 : 3.490.000<\/span><\/strong>\u0111<\/p>\r\n

• Giá bán l\u1ebb r\u1eddi CPU : 3.690.000<\/span><\/strong>\u0111
Áp d\u1ee5ng Build PC có thêm 5 linh ki\u1ec7n sau: MAIN, RAM, SSD, NGU\u1ed2N VGA( t\u1eeb GTX 1650, RX 6500XT tr\u1edf lên )<\/p>\r\n

<\/a><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

• Giá Build PC : 2.990.000<\/strong><\/span>\u0111 Khi kèm PC<\/p>\r\n

• Giá Build PC : 3.390.000<\/span><\/strong>\u0111 Khi mua PC không có VGA<\/p>\r\n

• Giá mua kèm riêng Main b\u1ea5t k\u1ef3 : 3.490.000<\/span><\/strong>\u0111<\/p>\r\n

• Giá bán l\u1ebb r\u1eddi CPU : 3.690.000<\/span><\/strong>\u0111
Áp d\u1ee5ng Build PC có thêm 5 linh ki\u1ec7n sau: MAIN, RAM, SSD, NGU\u1ed2N VGA( t\u1eeb GTX 1650, RX 6500XT tr\u1edf lên )<\/p>\r\n

<\/a><\/p>', + 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: '', + pixel_code: '', + review_count: '31', + review_score: '4.6', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3606', + catPath: ':3606:547:277:3431:0', + name: 'Intel Gen 12', + url: '\/intel-gen-12', + }, + { + id: '3619', + catPath: ':3619:547:277:3431:0', + name: 'Intel Core i5', + url: '\/intel-core-i5', + }, + { + id: '277', + catPath: ':277:3431:0', + name: 'CPU - B\u1ed9 vi x\u1eed l\u00fd', + url: '\/cpu-bo-vi-xu-ly', + }, + { + id: '547', + catPath: ':547:277:3431:0', + name: 'CPU INTEL', + url: '\/cpu-intel', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + ], + }, + '27730': { + id: '27730', + productId: '27730', + priceUnit: 'chi\u1ebfc', + marketPrice: '990000000', + price: '897160000', + price_off: '9', + currency: 'vnd', + sale_rules: { + price: '897160000', + normal_price: '897160000', + min_purchase: '1', + max_purchase: '8', + remain_quantity: '8', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-09-24 15:12:16', + warranty: 'B\u1ea3o h\u00e0nh theo t\u1eebng linh ki\u1ec7n', + productName: 'B\u1ed9 PC AI: 7 VGA RTX 5090 32GB, CPU AMD Threadripper 7965WX', + productSummary: + 'CPU AMD Ryzen Threadripper Pro 7965WX\r\nMainboard Asus Pro WS WRX90E-SAGE SE\r\n\u1ed4 c\u1ee9ng SSD MSI SPATIUM M570 PRO PCIe 5.0 NVMe M.2 FROZR 2TB\r\nCard m\u00e0n h\u00ecnh Gigabyte RTX 5090 GAMING OC 32GB (N5090GAMING OC-32GD)\r\nNgu\u1ed3n Leadex Platinum 2000W 80Plus Platinum SF-2000F14HP Super Flower\r\nNgu\u1ed3n Leadex Platinum 2000W 80Plus Platinum SF-2000F14HP Super Flower\r\nT\u1ea3n Noctua NH-U14S TR4-SP3\r\nFan Noctua NF-A15 PWM\r\n\u1ed4 c\u1ee9ng HDD Ultrastar HC570 22TB 7200RPM 512MB Cache WUH722222ALE6L4\r\nRiser PCIE 5.0 50cm\r\nKhung nh\u00f4m custom', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-01.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-012.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-012.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-023.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-023.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-022.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-022.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-021.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-021.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-020.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-020.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-019.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-019.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-018.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-018.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-017.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-017.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-016.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-016.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-015.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-015.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-014.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-014.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-013.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-013.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-011.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-011.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-010.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-010.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-09.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-09.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-08.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-08.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-07.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-07.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-06.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27730-bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx-02.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/bo-pc-ai-7-vga-rtx-5090-32gb-cpu-amd-threadripper-7965wx', + brand: { + id: '124', + brand_index: 'ncpc', + name: 'NCPC', + image: '', + url: '\/brand\/ncpc', + }, + visit: '13212', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '8', + productSKU: '', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

• Mua thêm màn hình \u0111ang \u0111\u01b0\u1ee3c khuy\u1ebfn m\u1ea1i =>> T\u1ea0I \u0110ÂY ( Gi\u1ea3m thêm 100K khi mua kèm PC )<\/a><\/p>\r\n

• Mua thêm Gear ( Phím, Chu\u1ed9t, tai nghe, gh\u1ebf ) \u0111ang \u0111\u01b0\u1ee3c khuy\u1ebfn m\u1ea1i =>> T\u1ea0I \u0110ÂY<\/a><\/p>\r\n

• Mi\u1ec5n phí giao hàng toàn qu\u1ed1c.<\/p>\r\n

• H\u1ed7 tr\u1ee3 tr\u1ea3 góp online toàn qu\u1ed1c - linh ho\u1ea1t<\/p>\r\n

• B\u1ea3o hành \u0111\u1ed5i m\u1edbi trong th\u1eddi gian \u0111\u1ea7u s\u1eed d\u1ee5ng - nhanh g\u1ecdn.<\/p>\r\n

<\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

• Mua thêm màn hình \u0111ang \u0111\u01b0\u1ee3c khuy\u1ebfn m\u1ea1i =>> T\u1ea0I \u0110ÂY ( Gi\u1ea3m thêm 100K khi mua kèm PC )<\/a><\/p>\r\n

• Mua thêm Gear ( Phím, Chu\u1ed9t, tai nghe, gh\u1ebf ) \u0111ang \u0111\u01b0\u1ee3c khuy\u1ebfn m\u1ea1i =>> T\u1ea0I \u0110ÂY<\/a><\/p>\r\n

• Mi\u1ec5n phí giao hàng toàn qu\u1ed1c.<\/p>\r\n

• H\u1ed7 tr\u1ee3 tr\u1ea3 góp online toàn qu\u1ed1c - linh ho\u1ea1t<\/p>\r\n

• B\u1ea3o hành \u0111\u1ed5i m\u1edbi trong th\u1eddi gian \u0111\u1ea7u s\u1eed d\u1ee5ng - nhanh g\u1ecdn.<\/p>\r\n

<\/p>', + 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: '3', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3300', + catPath: ':3300:0', + name: 'PC AI - TR\u00cd TU\u1ec6 NH\u00c2N T\u1ea0O', + url: '\/bo-pc-chay-ai-tri-tue-nhan-tao', + }, + { + id: '3733', + catPath: ':3733:0', + name: 'PC NC', + url: '\/pc-nc', + }, + { + id: '3734', + catPath: ':3734:3733:0', + name: 'PC RTX 5000 Series', + url: '\/pc-rtx-5000-series', + }, + { + id: '3738', + catPath: ':3738:3734:3733:0', + name: 'PC RTX 5090', + url: '\/pc-rtx-5090', + }, + ], + }, + '25531': { + id: '25531', + productId: '25531', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '890000000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '890000000', + normal_price: '890000000', + min_purchase: '1', + max_purchase: '6', + remain_quantity: '6', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-09-24 15:10:37', + warranty: 'B\u1ea3o h\u00e0nh theo t\u1eebng linh ki\u1ec7n', + productName: + 'B\u1ed9 PC AI - Machine Learning 03 (5995WX\/ WRX80E\/ 256GB RAM\/ 20TB SSD\/ 3X RTX 5090 32G\/ 2000W)', + productSummary: '', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25531-pc-ai-3.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25531-pc-ai-3.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25531-pc-ai-3.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25531-pc-ai-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4599406108633_bf09697cd4a317d61dc9730afe113222.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4599406108633_bf09697cd4a317d61dc9730afe113222.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4599406101495_3af006b7f024425829d0554ad53bac4d.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4599406101495_3af006b7f024425829d0554ad53bac4d.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4604610791056_6984256622090caa2c494246e2026b41.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4604610791056_6984256622090caa2c494246e2026b41.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4604610779096_6e9112384a65fad38bd962662d9716b8.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4604610779096_6e9112384a65fad38bd962662d9716b8.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4599406094007_301c1f0fdea3050ad633d3704e026b49.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4599406094007_301c1f0fdea3050ad633d3704e026b49.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4604610772089_0329fbe23950499cc0451c1d952142e7.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4604610772089_0329fbe23950499cc0451c1d952142e7.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4604610776000_09baa2a63e31d30667ab1f545581b14d.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4604610776000_09baa2a63e31d30667ab1f545581b14d.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4604610772007_2a511d0323d3f64e1dc9d0cf23c3ccb3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4604610772007_2a511d0323d3f64e1dc9d0cf23c3ccb3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4604610772065_8591a87bf725929f6e9428a5e4316131.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4604610772065_8591a87bf725929f6e9428a5e4316131.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4604610772071_015f9dc084cf3460010aa972f99c3c7d.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4604610772071_015f9dc084cf3460010aa972f99c3c7d.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4604610760967_a66715d9b18dc348a7f869cfe609b8b9.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4604610760967_a66715d9b18dc348a7f869cfe609b8b9.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4604610771952_bd987c771e4cdc8b3e546fb5f405bed0.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4604610771952_bd987c771e4cdc8b3e546fb5f405bed0.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-z4604610771851_e7173f6787809b03a7a0b4d924c1d685.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-z4604610771851_e7173f6787809b03a7a0b4d924c1d685.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25531-bo-pc-ai-machine-learning-03-5995wx-256gb-ram-20tb-ssd-3x-rtx-5090.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25531-bo-pc-ai-machine-learning-03-5995wx-256gb-ram-20tb-ssd-3x-rtx-5090.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/pc-machine-learning-03', + brand: { + id: '124', + brand_index: 'ncpc', + name: 'NCPC', + image: '', + url: '\/brand\/ncpc', + }, + visit: '32486', + rating: '5', + reviewCount: '1', + review: { + rate: '5', + total: '1', + }, + comment: { + rate: '5', + total: '1', + }, + quantity: '6', + productSKU: '', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

• Mua thêm màn hình \u0111ang \u0111\u01b0\u1ee3c khuy\u1ebfn m\u1ea1i =>> T\u1ea0I \u0110ÂY ( Gi\u1ea3m thêm 100K khi mua kèm PC )<\/a><\/p>\r\n

• Mua thêm Gear ( Phím, Chu\u1ed9t, tai nghe, gh\u1ebf ) \u0111ang \u0111\u01b0\u1ee3c khuy\u1ebfn m\u1ea1i =>> T\u1ea0I \u0110ÂY<\/a><\/p>\r\n

• Mi\u1ec5n phí giao hàng toàn qu\u1ed1c.<\/p>\r\n

• H\u1ed7 tr\u1ee3 tr\u1ea3 góp online toàn qu\u1ed1c - linh ho\u1ea1t<\/p>\r\n

• B\u1ea3o hành \u0111\u1ed5i m\u1edbi trong th\u1eddi gian \u0111\u1ea7u s\u1eed d\u1ee5ng - nhanh g\u1ecdn.<\/p>\r\n

<\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + all: [ + { + id: '0', + title: + '

• Mua thêm màn hình \u0111ang \u0111\u01b0\u1ee3c khuy\u1ebfn m\u1ea1i =>> T\u1ea0I \u0110ÂY ( Gi\u1ea3m thêm 100K khi mua kèm PC )<\/a><\/p>\r\n

• Mua thêm Gear ( Phím, Chu\u1ed9t, tai nghe, gh\u1ebf ) \u0111ang \u0111\u01b0\u1ee3c khuy\u1ebfn m\u1ea1i =>> T\u1ea0I \u0110ÂY<\/a><\/p>\r\n

• Mi\u1ec5n phí giao hàng toàn qu\u1ed1c.<\/p>\r\n

• H\u1ed7 tr\u1ee3 tr\u1ea3 góp online toàn qu\u1ed1c - linh ho\u1ea1t<\/p>\r\n

• B\u1ea3o hành \u0111\u1ed5i m\u1edbi trong th\u1eddi gian \u0111\u1ea7u s\u1eed d\u1ee5ng - nhanh g\u1ecdn.<\/p>\r\n

<\/p>', + 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: '2', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3300', + catPath: ':3300:0', + name: 'PC AI - TR\u00cd TU\u1ec6 NH\u00c2N T\u1ea0O', + url: '\/bo-pc-chay-ai-tri-tue-nhan-tao', + }, + { + id: '3733', + catPath: ':3733:0', + name: 'PC NC', + url: '\/pc-nc', + }, + { + id: '3734', + catPath: ':3734:3733:0', + name: 'PC RTX 5000 Series', + url: '\/pc-rtx-5000-series', + }, + { + id: '3738', + catPath: ':3738:3734:3733:0', + name: 'PC RTX 5090', + url: '\/pc-rtx-5090', + }, + ], + }, + '27713': { + id: '27713', + productId: '27713', + priceUnit: 'chi\u1ebfc', + marketPrice: '29990000', + price: '22500000', + price_off: '25', + currency: 'vnd', + sale_rules: { + price: '22500000', + normal_price: '22500000', + min_purchase: '1', + max_purchase: '5', + remain_quantity: '5', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-03 11:19:47', + warranty: '24 th\u00e1ng, Pin - s\u1ea1c b\u1ea3o h\u00e0nh 12 th\u00e1ng', + productName: + 'Laptop Gigabyte Gaming A16 CMHH2VN893SH (Intel Core i5-13420H | RTX 4050 6GB | 16GB | 512GB | 16 inch WUXGA 165Hz | Win 11)', + productSummary: + 'CPU: Intel\u00ae Core\u2122 i5-13420H (upto 4.60GHz, 12MB)\r\nRAM: 16GB DDR5 5200MHz (N\u00e2ng c\u1ea5p t\u1ed1i \u0111a 64GB)\r\n\u1ed4 c\u1ee9ng: 512GB PCIe Gen4x4 M.2 SSD\r\nVGA: NVIDIA\u00ae GeForce RTX\u2122 4050 Laptop GPU 6GB GDDR6 (AI TOPs: 321 TOPs)\r\nM\u00e0n h\u00ecnh: 16 inch, IPS WUXGA (1920x1200) 165Hz, 300nits (typical)z\r\nPin: 76Wh\r\nC\u00e2n n\u1eb7ng: 2.2 kg\r\nM\u00e0u s\u1eafc: \u0110en\r\nOS: Windows 11 Home', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-1111.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-1111.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-1111.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-1111.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-4.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-5.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-5.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-6.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-6.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-7.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27713-laptop-gigabyte-gaming-a16-cmhh2vn893sh-7.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/laptop-gigabyte-gaming-a16-cmhh2vn893sh', + brand: { + id: '2', + brand_index: 'gigabyte', + name: 'Gigabyte', + image: '', + url: '\/brand\/gigabyte', + }, + visit: '20061', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '5', + productSKU: 'LT0000947', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

\r\n
\r\n