diff --git a/package-lock.json b/package-lock.json index 6fe7804..c23be80 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,7 @@ "dependencies": { "@fancyapps/ui": "^6.1.7", "@tippyjs/react": "^4.2.6", + "date-fns": "^4.1.0", "framer-motion": "^12.23.26", "lightgallery": "^2.9.0", "next": "16.0.10", @@ -2749,6 +2750,16 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/date-fns": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.1.0.tgz", + "integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/kossnocorp" + } + }, "node_modules/debug": { "version": "4.4.3", "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", diff --git a/package.json b/package.json index 9382727..22b271f 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "dependencies": { "@fancyapps/ui": "^6.1.7", "@tippyjs/react": "^4.2.6", + "date-fns": "^4.1.0", "framer-motion": "^12.23.26", "lightgallery": "^2.9.0", "next": "16.0.10", diff --git a/src/app/[slug]/page.tsx b/src/app/[slug]/page.tsx index 710b3a7..d261e6a 100644 --- a/src/app/[slug]/page.tsx +++ b/src/app/[slug]/page.tsx @@ -4,6 +4,7 @@ import NotFound from '../pages/404'; 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 ArticlePage from '@/app/pages/Article/HomeArticlePage'; import ArticleCategoryPage from '@/app/pages/Article/CategoryPage'; @@ -18,6 +19,8 @@ export default function DynamicPage() { switch (pageType) { case 'category': return ; + case 'product-search': + return ; case 'product-detail': return ; case 'article-home': diff --git a/src/app/deal/page.tsx b/src/app/deal/page.tsx index 05025b5..c191681 100644 --- a/src/app/deal/page.tsx +++ b/src/app/deal/page.tsx @@ -6,8 +6,7 @@ import { Metadata } from 'next'; import { Breadcrumb } from '@components/Common/Breadcrumb'; import { bannerData } from '@/data/banner'; import { ListDealData } from '@/data/deal'; -import { formatCurrency } from '@/lib/formatPrice'; -import CounDown from '@/components/Common/CounDown'; +import ItemDeal from '@components/Deal/ItemDeal'; export const metadata: Metadata = { title: 'Danh sách deal', @@ -16,6 +15,7 @@ export const metadata: Metadata = { export default function DealPage() { const breadcrumbItems = [{ name: 'Danh sách deal', url: '/deal' }]; + return ( <>
@@ -39,85 +39,9 @@ export default function DealPage() {
)} -
+
{ListDealData.map((Item, index) => ( -
-
- - {Item.product_info.productName} - -
- -

- {Item.product_info.productName} -

- -
- {Item.product_info.marketPrice > 0 && ( - <> -

- {Item.product_info.marketPrice.toLocaleString()} ₫ -

-
- -{Item.product_info.price_off || 0}% -
- - )} -
-
- {Item.product_info.price > '0' - ? `${formatCurrency(Item.product_info.price)}đ` - : 'Liên hệ'} -
-
- -
- {(() => { - const percentRemaining = - ((Number(Item.quantity) - Number(Item.sale_quantity)) / - Number(Item.quantity)) * - 100; - - return ( - <> -

- - ); - })()} - - Còn {Number(Item.quantity) - Number(Item.sale_quantity)}/ - {Number(Item.quantity)} sản phẩm - -
-
-
-
Kết thúc sau
- -
-
- - Mua giá sốc - - - Xem sản phẩm - -
-
-
+ ))}
diff --git a/src/app/pages/404.tsx b/src/app/pages/404/index.tsx similarity index 100% rename from src/app/pages/404.tsx rename to src/app/pages/404/index.tsx diff --git a/src/app/pages/Home/Deal/index.tsx b/src/app/pages/Home/Deal/index.tsx index 3f86ad0..36bf1f7 100644 --- a/src/app/pages/Home/Deal/index.tsx +++ b/src/app/pages/Home/Deal/index.tsx @@ -7,7 +7,7 @@ import { FaCaretRight } from 'react-icons/fa'; import { ListDealData } from '@/data/deal'; -import CounDown from '../../../../components/Common/CounDown'; +import CounDown from '@components/Common/CounDown'; import ProductItem from './ProductItem'; const BoxProductDeal: React.FC = () => { @@ -19,7 +19,7 @@ const BoxProductDeal: React.FC = () => {

Giá tốt mỗi ngày

Kết thúc sau
- +
diff --git a/src/app/pages/Product/Category/index.tsx b/src/app/pages/Product/Category/index.tsx index 11d59a4..28b3c5a 100644 --- a/src/app/pages/Product/Category/index.tsx +++ b/src/app/pages/Product/Category/index.tsx @@ -9,8 +9,8 @@ import { findCategoryBySlug } from '@/lib/product/category'; import { Breadcrumb } from '@/components/Common/Breadcrumb'; import BannerCategory from './BannerCategory'; import ItemCategoryChild from './ItemCategoryChild'; -import BoxFilter from './BoxFilter'; -import BoxSort from './BoxSort'; +import BoxFilter from '@components/Product/BoxFilter'; +import BoxSort from '@components/Product/BoxSort'; import ItemProduct from '@/components/Common/ItemProduct'; interface CategoryPageProps { diff --git a/src/app/pages/Product/ProductDetail/BoxInfoRight/BoxPrice/index.tsx b/src/app/pages/Product/ProductDetail/BoxInfoRight/BoxPrice/index.tsx index 9ecbabf..981c515 100644 --- a/src/app/pages/Product/ProductDetail/BoxInfoRight/BoxPrice/index.tsx +++ b/src/app/pages/Product/ProductDetail/BoxInfoRight/BoxPrice/index.tsx @@ -1,52 +1,61 @@ +import { useEffect, useState } from 'react'; + import type { ProductDetailData } from '@/types'; import CounDown from '@/components/Common/CounDown'; import { formatCurrency } from '@/lib/formatPrice'; export const BoxPrice = (item: ProductDetailData) => { + const [now, setNow] = useState(() => Date.now()); + return ( <> - {item.product_info.sale_rules.type == 'deal' && ( -
-
- -

flash sale

-
-
- -
-
-
-

- Còn{' '} - {(() => { - const deal = item.product_info.deal_list[0]; - return Number(deal.quantity) - deal.sale_order; - })()} - /{item.product_info.deal_list[0].quantity} sản phẩm -

+ {item.product_info.sale_rules.type == 'deal' && + Number(item.product_info.sale_rules.to_time) > now && ( +
+
+ +

flash sale

+
+
+ +
+
+
+

+ Còn{' '} + {(() => { + const deal = item.product_info.deal_list[0]; + return Number(deal.quantity) - deal.sale_order; + })()} + /{item.product_info.deal_list[0].quantity} sản phẩm +

-
- -
- {(() => { - const deal = item.product_info.deal_list[0]; - const percentRemaining = - ((Number(deal.quantity) - deal.sale_order) / Number(deal.quantity)) * 100; +
+ +
+ {(() => { + const deal = item.product_info.deal_list[0]; + const percentRemaining = + ((Number(deal.quantity) - deal.sale_order) / Number(deal.quantity)) * 100; - return ( - <> -

- - ); - })()} + return ( + <> +

+ + ); + })()} +
-
- )} + )} {/* giá */} {item.product_info.marketPrice > '0' && item.product_info.sale_rules.type == 'deal' && ( diff --git a/src/app/pages/Product/ProductDetail/ProductComment/ListComment/index.tsx b/src/app/pages/Product/ProductDetail/ProductComment/ListComment/index.tsx index 75417b3..07ae141 100644 --- a/src/app/pages/Product/ProductDetail/ProductComment/ListComment/index.tsx +++ b/src/app/pages/Product/ProductDetail/ProductComment/ListComment/index.tsx @@ -24,7 +24,8 @@ export const ListComment = () => { {item.user_name}
- {item.post_time} + {' '} + {new Date(Number(item.post_time) * 1000).toLocaleDateString('vi-VN')}
{' '} {/* content */} diff --git a/src/app/pages/Product/ProductDetail/ProductReview/ListReview/index.tsx b/src/app/pages/Product/ProductDetail/ProductReview/ListReview/index.tsx index f6d2077..38cdcfb 100644 --- a/src/app/pages/Product/ProductDetail/ProductReview/ListReview/index.tsx +++ b/src/app/pages/Product/ProductDetail/ProductReview/ListReview/index.tsx @@ -70,7 +70,7 @@ export const ListReview = () => { {/* reply list */}
{review.new_replies.map((reply) => ( -
+
@@ -86,7 +86,9 @@ export const ListReview = () => {
- ({reply.post_time}) + + ({new Date(Number(reply.post_time) * 1000).toLocaleDateString()}) +
{reply.content}
diff --git a/src/app/pages/Product/ProductSearch/index.tsx b/src/app/pages/Product/ProductSearch/index.tsx index e69de29..998e68d 100644 --- a/src/app/pages/Product/ProductSearch/index.tsx +++ b/src/app/pages/Product/ProductSearch/index.tsx @@ -0,0 +1,113 @@ +'use client'; +import React from 'react'; +import Link from 'next/link'; +import { useSearchParams } from 'next/navigation'; + +import { ErrorLink } from '@/components/Common/error'; +import type { TypeProductSearch } from '@/types/product/search'; +import { ProductSearchData } from '@/data/product/search'; +import { findSearchBySlug } from '@/lib/product/search'; + +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 ProductSearchPageProps { + slug: string; // khai báo prop slug +} + +const ProductSearchPage: React.FC = ({ slug }) => { + const searchParams = useSearchParams(); + const keys = searchParams.get('q'); + + const Searchs = ProductSearchData as unknown as TypeProductSearch[]; + const Pages = findSearchBySlug(keys, Searchs); + + const breadcrumbItems = [ + { name: 'Trang chủ', url: '/' }, + { name: `Tìm kiếm "${keys}"`, url: `/tim?q=${Pages?.keywords}` }, + ]; + + if (!Pages) { + return ; + } + + // lấy sản phẩm + const products = Object.values(Pages.product_list); + + return ( + <> +
+ +
+
+
+

Tìm kiếm : {Pages.keywords}

+ (Tổng {Pages.product_count} sản phẩm) +
+ + {Pages.product_list ? ( +
+ {/* filter */} + +
+ {/* filter sort */} + +
+ + {/* list product */} + +
+ {products.map((item, index) => ( + + ))} +
+
+ {Pages.paging_collection.map((item, index) => ( + + {item.name} + + ))} +
+
+ ) : ( +
+

+ Rất tiếc, chúng tôi không tìm thấy kết quả của ${Pages.keywords} +

+
+

+ Để tìm được kết quả chính xác hơn, xin vui lòng +

+
    +
  • Kiểm tra lại chính tả của từ khóa đã nhập
  • +
  • Thử lại bằng từ khóa khác
  • +
  • Thử lại bằng các từ khóa tổng quát hơn
  • +
  • Thử lại bằng các từ khóa ngắn gọn hơn
  • +
+
+ + Quay lại trang chủ{' '} + +
+ )} +
+ + ); +}; + +export default ProductSearchPage; diff --git a/src/components/Deal/ItemDeal.tsx b/src/components/Deal/ItemDeal.tsx new file mode 100644 index 0000000..a36a7d9 --- /dev/null +++ b/src/components/Deal/ItemDeal.tsx @@ -0,0 +1,95 @@ +'use client'; +import React, { useState } from 'react'; +import { parse } from 'date-fns'; +import Link from 'next/link'; +import Image from 'next/image'; +import CounDown from '@/components/Common/CounDown'; +import { DealType } from '@/types'; +import { formatCurrency } from '@/lib/formatPrice'; + +type ItemDealProps = { + Item: DealType; +}; + +const ItemDeal: React.FC = ({ Item }) => { + const [now] = useState(() => Date.now()); + + // ép kiểu to_time sang số (timestamp) hoặc Date + const deadline = parse(Item.to_time, 'dd-MM-yyyy, h:mm a', new Date()).getTime(); + + // chỉ hiển thị nếu deadline còn lớn hơn thời gian hiện tại + if (deadline <= now) { + return null; + } + + return ( +
+
+ + {Item.product_info.productName} + +
+ +

{Item.product_info.productName}

+ +
+ {Item.product_info.marketPrice > 0 && ( + <> +

+ {Item.product_info.marketPrice.toLocaleString()} ₫ +

+
-{Item.product_info.price_off || 0}%
+ + )} +
+
+ {Item.product_info.price > '0' + ? `${formatCurrency(Item.product_info.price)}đ` + : 'Liên hệ'} +
+
+ +
+ {(() => { + const percentRemaining = + ((Number(Item.quantity) - Number(Item.sale_quantity)) / Number(Item.quantity)) * + 100; + + return ( + <> +

+ + ); + })()} + + Còn {Number(Item.quantity) - Number(Item.sale_quantity)}/{Number(Item.quantity)} sản + phẩm + +
+
+
+
Kết thúc sau:
+ +
+
+ + Mua giá sốc + + + Xem sản phẩm + +
+
+
+ ); +}; + +export default ItemDeal; diff --git a/src/app/pages/Product/Category/BoxFilter/ActiveFilters/index.tsx b/src/components/Product/BoxFilter/ActiveFilters/index.tsx similarity index 100% rename from src/app/pages/Product/Category/BoxFilter/ActiveFilters/index.tsx rename to src/components/Product/BoxFilter/ActiveFilters/index.tsx diff --git a/src/app/pages/Product/Category/BoxFilter/index.tsx b/src/components/Product/BoxFilter/index.tsx similarity index 98% rename from src/app/pages/Product/Category/BoxFilter/index.tsx rename to src/components/Product/BoxFilter/index.tsx index 365873a..9f2e5bb 100644 --- a/src/app/pages/Product/Category/BoxFilter/index.tsx +++ b/src/components/Product/BoxFilter/index.tsx @@ -32,7 +32,7 @@ const BoxFilter: React.FC = ({ filters }) => { > {ItemPrice.name} - (${ItemPrice.is_selected == '1' ? 'Xóa' : ItemPrice.count}) + ({ItemPrice.is_selected == '1' ? 'Xóa' : ItemPrice.count})
))} diff --git a/src/app/pages/Product/Category/BoxSort/index.tsx b/src/components/Product/BoxSort/index.tsx similarity index 100% rename from src/app/pages/Product/Category/BoxSort/index.tsx rename to src/components/Product/BoxSort/index.tsx diff --git a/src/components/common/CounDown/index.tsx b/src/components/common/CounDown/index.tsx index c711c77..adcf7f8 100644 --- a/src/components/common/CounDown/index.tsx +++ b/src/components/common/CounDown/index.tsx @@ -1,8 +1,9 @@ 'use client'; import React, { useState, useEffect } from 'react'; +import { parse } from 'date-fns'; interface CountDownProps { - deadline: Date | string; + deadline: number | string; } const CounDown: React.FC = ({ deadline }) => { @@ -13,8 +14,10 @@ const CounDown: React.FC = ({ deadline }) => { const getTime = () => { let time: number; - if (deadline instanceof Date) { - time = deadline.getTime() - Date.now(); + + if (typeof deadline == 'string') { + const parsed = parse(deadline as string, 'dd-MM-yyyy, h:mm a', new Date()); + time = parsed.getTime() - Date.now(); } else { time = Number(deadline) * 1000 - Date.now(); } diff --git a/src/data/deal/index.tsx b/src/data/deal/index.tsx index a3c321a..a22435e 100644 --- a/src/data/deal/index.tsx +++ b/src/data/deal/index.tsx @@ -11,7 +11,7 @@ export const ListDealData: TypeListProductDeal = [ min_purchase: '1', max_purchase: '0', from_time: '19-12-2025, 8:00 am', - to_time: '22-12-2025, 9:30 am', + to_time: '31-01-2026, 9:30 am', is_featured: '0', last_update: '1766109733', last_update_by: '0', @@ -287,6 +287,291 @@ export const ListDealData: TypeListProductDeal = [ ], }, }, + { + id: '560', + pro_id: '27720', + title: 'Bộ PC Gaming Intel Core i5-13400F, RAM 16GB, RTX 5060 Ti [TẶNG MÀN HÌNH]', + price: '24990000', + customer_group_price: '[]', + quantity: '5', + min_purchase: '1', + max_purchase: '0', + from_time: '08-12-2025, 8:00 am', + to_time: '31-01-2026, 9:30 am', + is_featured: '0', + last_update: '1766108851', + last_update_by: '0', + ordering: '0', + sale_order: '3', + sale_quantity: '3', + views: '1', + rating: '0', + review_count: '0', + auto_renew: '0', + auto_renew_history: null, + counter: 6, + request_path: '/deal/560', + deal_time_happen: 971685, + deal_time_left: 243315, + is_start: 1, + is_end: 0, + is_active: '1', + product_info: { + id: 27720, + productId: 27720, + priceUnit: 'chiếc', + marketPrice: 27690000, + price: '24990000', + price_off: 6, + currency: 'vnd', + sale_rules: { + price: '24990000', + normal_price: 25990000, + min_purchase: '1', + max_purchase: '0', + remain_quantity: 1, + from_time: '1765155600', + to_time: '1766370600', + type: 'deal', + type_id: '560', + }, + lastUpdate: '2025-12-18 15:39:17', + warranty: 'Bảo hành dài theo từng linh kiện', + productName: 'Bộ PC Gaming Intel Core i5-13400F, RAM 16GB, RTX 5060 Ti [TẶNG MÀN HÌNH]', + productSummary: + 'CPU Intel Core i5-13400F Tray New (Up To 4.60GHz, 10 Nhân 16 Luồng, 20 MB Cache, LGA 1700)\r\nMainboard BIOSTAR Z690MX2-E D4 (Intel Z690, Socket 1700, 2xDDR4, mATX)\r\nRAM Colorful Battle AX 16GB DDR4 3200MHz\r\nỔ Cứng SSD Acer FA100 512GB (NVMe PCIe/ Gen3x4 M2.2280/ 3200MB/s/ 2200MB/s)\r\nCard Màn Hình MSI RTX 5060 Ti 8GB SHADOW 2X OC Plus\r\nNguồn máy tính MIK C750B 750W PLUS BRONZE\r\nVỏ Case Xigmatek BLAST M (M-ATX) - Black\r\nTản Nhiệt Khí JONSBO CR-1000 EVO BLACK (Color RGB)\r\nFan Tản Nhiệt JUNGLE LEOPARD Prism 6Pro Black\r\n', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-25251326.jpg', + large: 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-25251326.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-001.jpg', + large: + 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-001.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-1.jpg', + large: + 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-2.jpg', + large: + 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-3.jpg', + large: + 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-4.jpg', + large: + 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-4.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-25251326.jpg', + large: 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-25251326.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '/pc-gaming-ncpc-15', + brand: { + id: 124, + brand_index: 'ncpc', + name: 'NCPC', + image: '', + url: '/brand/ncpc', + }, + visit: 39556, + rating: 5, + reviewCount: 1, + review: { + rate: 5, + total: 1, + }, + comment: { + rate: 5, + total: 3, + }, + quantity: 1, + productSKU: '', + productModel: '', + hasVAT: 0, + condition: 'Mới', + config_count: 0, + configurable: 0, + component_count: 0, + specialOffer: { + other: [ + { + id: 0, + title: + '

TẶNG MÀN HÌNH :  Màn hình Gaming cong MSI MAG 276CF E20 27\' FHD VA 200Hz 0.5Ms

\r\n

Giá PC khi không lấy quà tặng : 23.490.000đ

\r\n

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

TẶNG MÀN HÌNH :  Màn hình Gaming cong MSI MAG 276CF E20 27\' FHD VA 200Hz 0.5Ms

\r\n

Giá PC khi không lấy quà tặng : 23.490.000đ

\r\n

', + type: '', + thumbnail: '', + cash_value: 0, + quantity: 1, + from_time: '', + to_time: '', + url: '', + description: '', + status: 1, + }, + ], + }, + specialOfferGroup: [], + productType: { + isNew: 0, + isHot: 0, + isBestSale: 0, + isSaleOff: 0, + 'online-only': 0, + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '492', + pixel_code: '', + review_count: '43', + review_score: '4.3', + }, + weight: 0, + promotion_price: null, + deal_list: [ + { + id: '560', + pro_id: '27720', + title: 'Bộ PC Gaming Intel Core i5-13400F, RAM 16GB, RTX 5060 Ti [TẶNG MÀN HÌNH]', + price: '24990000', + quantity: '5', + min_purchase: '1', + max_purchase: '0', + is_featured: '0', + from_time: '1765155600', + to_time: '1766370600', + is_started: 1, + }, + ], + pricing_traces: [ + { + price: '11690000', + type: 'deal', + type_id: '565', + }, + { + price: '7600000', + type: 'deal', + type_id: '563', + }, + { + price: '6990000', + type: 'deal', + type_id: '562', + }, + { + price: '24990000', + type: 'deal', + type_id: '560', + }, + ], + categories: [ + { + id: '1829', + catPath: ':1829:0', + name: 'PC GAMING', + url: '/pc-gaming', + }, + { + id: '3468', + catPath: ':3468:1829:0', + name: 'CHỌN THEO NHU CẦU', + url: '/chon-theo-nhu-cau-1', + }, + { + id: '3432', + catPath: ':3432:3468:1829:0', + name: 'PC ESPORT', + url: '/pc-esport', + }, + { + id: '3433', + catPath: ':3433:3468:1829:0', + name: 'PC GAME AAA', + url: '/pc-game-aaa', + }, + { + id: '3434', + catPath: ':3434:3468:1829:0', + name: 'PC STREAM GAME', + url: '/pc-stream-game', + }, + { + id: '3469', + catPath: ':3469:1829:0', + name: 'CHỌN THEO KHOẢNG GIÁ', + url: '/chon-theo-khoang-gia-1', + }, + { + id: '3472', + catPath: ':3472:3469:1829:0', + name: '20 Triệu - 30 Triệu', + url: '/20-trieu-30-trieu-1', + }, + ], + }, + }, { id: '564', pro_id: '28304', @@ -1376,289 +1661,4 @@ export const ListDealData: TypeListProductDeal = [ ], }, }, - { - id: '560', - pro_id: '27720', - title: 'Bộ PC Gaming Intel Core i5-13400F, RAM 16GB, RTX 5060 Ti [TẶNG MÀN HÌNH]', - price: '24990000', - customer_group_price: '[]', - quantity: '5', - min_purchase: '1', - max_purchase: '0', - from_time: '08-12-2025, 8:00 am', - to_time: '22-12-2025, 9:30 am', - is_featured: '0', - last_update: '1766108851', - last_update_by: '0', - ordering: '0', - sale_order: '3', - sale_quantity: '3', - views: '1', - rating: '0', - review_count: '0', - auto_renew: '0', - auto_renew_history: null, - counter: 6, - request_path: '/deal/560', - deal_time_happen: 971685, - deal_time_left: 243315, - is_start: 1, - is_end: 0, - is_active: '1', - product_info: { - id: 27720, - productId: 27720, - priceUnit: 'chiếc', - marketPrice: 27690000, - price: '24990000', - price_off: 6, - currency: 'vnd', - sale_rules: { - price: '24990000', - normal_price: 25990000, - min_purchase: '1', - max_purchase: '0', - remain_quantity: 1, - from_time: '1765155600', - to_time: '1766370600', - type: 'deal', - type_id: '560', - }, - lastUpdate: '2025-12-18 15:39:17', - warranty: 'Bảo hành dài theo từng linh kiện', - productName: 'Bộ PC Gaming Intel Core i5-13400F, RAM 16GB, RTX 5060 Ti [TẶNG MÀN HÌNH]', - productSummary: - 'CPU Intel Core i5-13400F Tray New (Up To 4.60GHz, 10 Nhân 16 Luồng, 20 MB Cache, LGA 1700)\r\nMainboard BIOSTAR Z690MX2-E D4 (Intel Z690, Socket 1700, 2xDDR4, mATX)\r\nRAM Colorful Battle AX 16GB DDR4 3200MHz\r\nỔ Cứng SSD Acer FA100 512GB (NVMe PCIe/ Gen3x4 M2.2280/ 3200MB/s/ 2200MB/s)\r\nCard Màn Hình MSI RTX 5060 Ti 8GB SHADOW 2X OC Plus\r\nNguồn máy tính MIK C750B 750W PLUS BRONZE\r\nVỏ Case Xigmatek BLAST M (M-ATX) - Black\r\nTản Nhiệt Khí JONSBO CR-1000 EVO BLACK (Color RGB)\r\nFan Tản Nhiệt JUNGLE LEOPARD Prism 6Pro Black\r\n', - package_accessory: '', - productImage: { - small: 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-25251326.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-25251326.jpg', - original: '', - }, - imageCollection: [ - { - image: { - small: - 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-001.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-001.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: - 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-1.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-1.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: - 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-2.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-2.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: - 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-3.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-3.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: - 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-4.jpg', - large: - 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-intel-core-i5-13400f-ram-16g-vga-rtx-5060-ti-4.jpg', - original: '', - }, - alt: '', - }, - { - image: { - small: 'https://nguyencongpc.vn/media/product/75-27720-pc-gaming-25251326.jpg', - large: 'https://nguyencongpc.vn/media/product/250-27720-pc-gaming-25251326.jpg', - original: '', - }, - alt: '', - }, - ], - productUrl: '/pc-gaming-ncpc-15', - brand: { - id: 124, - brand_index: 'ncpc', - name: 'NCPC', - image: '', - url: '/brand/ncpc', - }, - visit: 39556, - rating: 5, - reviewCount: 1, - review: { - rate: 5, - total: 1, - }, - comment: { - rate: 5, - total: 3, - }, - quantity: 1, - productSKU: '', - productModel: '', - hasVAT: 0, - condition: 'Mới', - config_count: 0, - configurable: 0, - component_count: 0, - specialOffer: { - other: [ - { - id: 0, - title: - '

TẶNG MÀN HÌNH :  Màn hình Gaming cong MSI MAG 276CF E20 27\' FHD VA 200Hz 0.5Ms

\r\n

Giá PC khi không lấy quà tặng : 23.490.000đ

\r\n

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

TẶNG MÀN HÌNH :  Màn hình Gaming cong MSI MAG 276CF E20 27\' FHD VA 200Hz 0.5Ms

\r\n

Giá PC khi không lấy quà tặng : 23.490.000đ

\r\n

', - type: '', - thumbnail: '', - cash_value: 0, - quantity: 1, - from_time: '', - to_time: '', - url: '', - description: '', - status: 1, - }, - ], - }, - specialOfferGroup: [], - productType: { - isNew: 0, - isHot: 0, - isBestSale: 0, - isSaleOff: 0, - 'online-only': 0, - }, - bulk_price: [], - thum_poster: '0', - thum_poster_type: '', - addon: [], - variants: [], - variant_option: [], - extend: { - buy_count: '492', - pixel_code: '', - review_count: '43', - review_score: '4.3', - }, - weight: 0, - promotion_price: null, - deal_list: [ - { - id: '560', - pro_id: '27720', - title: 'Bộ PC Gaming Intel Core i5-13400F, RAM 16GB, RTX 5060 Ti [TẶNG MÀN HÌNH]', - price: '24990000', - quantity: '5', - min_purchase: '1', - max_purchase: '0', - is_featured: '0', - from_time: '1765155600', - to_time: '1766370600', - is_started: 1, - }, - ], - pricing_traces: [ - { - price: '11690000', - type: 'deal', - type_id: '565', - }, - { - price: '7600000', - type: 'deal', - type_id: '563', - }, - { - price: '6990000', - type: 'deal', - type_id: '562', - }, - { - price: '24990000', - type: 'deal', - type_id: '560', - }, - ], - categories: [ - { - id: '1829', - catPath: ':1829:0', - name: 'PC GAMING', - url: '/pc-gaming', - }, - { - id: '3468', - catPath: ':3468:1829:0', - name: 'CHỌN THEO NHU CẦU', - url: '/chon-theo-nhu-cau-1', - }, - { - id: '3432', - catPath: ':3432:3468:1829:0', - name: 'PC ESPORT', - url: '/pc-esport', - }, - { - id: '3433', - catPath: ':3433:3468:1829:0', - name: 'PC GAME AAA', - url: '/pc-game-aaa', - }, - { - id: '3434', - catPath: ':3434:3468:1829:0', - name: 'PC STREAM GAME', - url: '/pc-stream-game', - }, - { - id: '3469', - catPath: ':3469:1829:0', - name: 'CHỌN THEO KHOẢNG GIÁ', - url: '/chon-theo-khoang-gia-1', - }, - { - id: '3472', - catPath: ':3472:3469:1829:0', - name: '20 Triệu - 30 Triệu', - url: '/20-trieu-30-trieu-1', - }, - ], - }, - }, ]; diff --git a/src/data/product/search/index.ts b/src/data/product/search/index.ts new file mode 100644 index 0000000..84d4b0d --- /dev/null +++ b/src/data/product/search/index.ts @@ -0,0 +1,13214 @@ +import { TypeProductSearch } from '@/types/product/search'; + +export const ProductSearchData: TypeProductSearch[] = [ + { + keywords: 'may', + description: 'Danh s\u00e1ch k\u1ebft qu\u1ea3 th\u1ecfa m\u00e3n may', + title: 'Danh s\u00e1ch may', + favicon: '', + canonical: '', + image: '', + search_query: 'may', + other_filter_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/tim?other_filter=in-stock&q=may', + key: 'in-stock', + name: 'C\u00f2n h\u00e0ng', + }, + ], + sort_by_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=may&sort=new', + key: 'new', + name: 'M\u1edbi nh\u1ea5t', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=may&sort=price-asc', + key: 'price-asc', + name: 'Gi\u00e1 t\u0103ng d\u1ea7n', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=may&sort=price-desc', + key: 'price-desc', + name: 'Gi\u00e1 gi\u1ea3m d\u1ea7n', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=may&sort=view', + key: 'view', + name: 'L\u01b0\u1ee3t xem', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=may&sort=comment', + key: 'comment', + name: 'Trao \u0111\u1ed5i', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=may&sort=rating', + key: 'rating', + name: '\u0110\u00e1nh gi\u00e1', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=may&sort=name', + key: 'name', + name: 'T\u00ean A->Z', + }, + ], + display_by_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/tim?display=list&q=may', + key: 'list', + name: 'Danh s\u00e1ch', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?display=grid&q=may', + key: 'grid', + name: 'Xem nh\u00f3m', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?display=detail&q=may', + key: 'detail', + name: 'Chi ti\u1ebft', + }, + ], + paging_collection: [ + { + name: '1', + url: '\/tim?q=may', + is_active: '1', + }, + { + name: '2', + url: '\/tim?q=may&page=2', + is_active: '0', + }, + { + name: '3', + url: '\/tim?q=may&page=3', + is_active: '0', + }, + { + name: '4', + url: '\/tim?q=may&page=4', + is_active: '0', + }, + { + name: '5', + url: '\/tim?q=may&page=5', + is_active: '0', + }, + { + name: '6', + url: '\/tim?q=may&page=6', + 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><\/tr><\/table>', + paging_count: '6', + product_count: '179', + product_list: { + '27495': { + id: '27495', + productId: '27495', + priceUnit: 'chi\u1ebfc', + marketPrice: '1490000', + price: '1190000', + price_off: '20', + currency: 'vnd', + sale_rules: { + price: '1190000', + normal_price: '1190000', + min_purchase: '1', + max_purchase: '1510', + remain_quantity: '1510', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-11-29 09:04:11', + warranty: '36 Th\u00e1ng', + productName: 'Ngu\u1ed3n M\u00e1y T\u00ednh GIGABYTE P650SS 650W (80 Plus Silver)', + productSummary: + 'C\u00f4ng su\u1ea5t : 650W\r\nForm : ATX 12V v3.0\r\nPFC : Active PFC (>0.9 typical)\r\n\u0110i\u1ec7n \u00e1p : 155-240 Vac(full range)\r\nChu\u1ea9n 80 Plus : Silver\r\nHi\u1ec7u su\u1ea5t : 90%\r\nLo\u1ea1i c\u00e1p : Flat\r\nProtection: OVP\/OPP\/SCP\/UVP\/OCP\/OTP\r\n< Thu g\u1ecdn', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27495-nguon-gigabyte-p650ss-650w-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27495-nguon-gigabyte-p650ss-650w-4.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27495-nguon-gigabyte-p650ss-650w-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27495-nguon-gigabyte-p650ss-650w-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27495-nguon-gigabyte-p650ss-650w-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27495-nguon-gigabyte-p650ss-650w-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27495-nguon-gigabyte-p650ss-650w-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27495-nguon-gigabyte-p650ss-650w-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27495-nguon-gigabyte-p650ss-650w-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27495-nguon-gigabyte-p650ss-650w-4.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-gigabyte-p650ss-650w-80-plus-sliver', + brand: { + id: '2', + brand_index: 'gigabyte', + name: 'Gigabyte', + image: '', + url: '\/brand\/gigabyte', + }, + visit: '3738', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '1510', + productSKU: 'PSU0000175', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3247', + catPath: ':3247:282:3431:0', + name: 'Ngu\u1ed3n Gigabyte', + url: '\/nguon-gigabyte', + }, + ], + }, + '27545': { + id: '27545', + productId: '27545', + priceUnit: 'chi\u1ebfc', + marketPrice: '1990000', + price: '1490000', + price_off: '25', + currency: 'vnd', + sale_rules: { + price: '1490000', + normal_price: '1490000', + min_purchase: '1', + max_purchase: '508', + remain_quantity: '508', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-31 14:28:03', + warranty: '36 Th\u00e1ng', + productName: 'Ngu\u1ed3n M\u00e1y T\u00ednh Gigabyte P750BS 750W Plus Bronze', + productSummary: + '\u0110\u01b0\u1ee3c ch\u1ee9ng nh\u1eadn 80 PLUS Bronze (230V EU)\r\nQu\u1ea1t 120mm Silent Fluid Dynamic Bearing (FDB)\r\nC\u00e1p d\u1eadp n\u1ed5i c\u00f3 k\u1ebft c\u1ea5u m\u1ec1m m\u1ea1i\r\nSingle +12V rail\r\nB\u1ea3o v\u1ec7 OVP\/OPP\/SCP\/UVP\/OCP\/OTP', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-4.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-5.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27545-psu-gigabyte-p750bs-750w-80-plus-bronze-5.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-gigabyte-p750bs-750w-plus-bronze', + brand: { + id: '2', + brand_index: 'gigabyte', + name: 'Gigabyte', + image: '', + url: '\/brand\/gigabyte', + }, + visit: '4670', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '508', + productSKU: 'PSU0000178', + productModel: 'GP-P750BS', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + }, + 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: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3247', + catPath: ':3247:282:3431:0', + name: 'Ngu\u1ed3n Gigabyte', + url: '\/nguon-gigabyte', + }, + ], + }, + '23836': { + id: '23836', + productId: '23836', + priceUnit: 'chi\u1ebfc', + marketPrice: '590000', + price: '350000', + price_off: '41', + currency: 'vnd', + sale_rules: { + price: '350000', + normal_price: '350000', + min_purchase: '1', + max_purchase: '370', + remain_quantity: '370', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-05-27 09:51:03', + warranty: '12 th\u00e1ng', + productName: + 'Gi\u00e1 \u0111\u1ee1 m\u00e0n h\u00ecnh m\u00e1y t\u00ednh North Bayou F80 (17-30 INCH)', + productSummary: + 'Gi\u00e1 treo m\u00e1y t\u00ednh \u0111\u1ec3 b\u00e0n \u0111a n\u0103ng, xoay \u0111a h\u01b0\u1edbng\r\nC\u00f3 th\u1ec3 k\u1eb9p b\u00e0n ho\u1eb7c khoan xuy\u00ean v\u00e0 \u0111\u1eb7t tr\u00ean b\u00e0n \u0111\u01b0\u1ee3c\r\nGi\u00fap b\u1ea1n c\u00f3 g\u00f3c nh\u00ecn t\u1ed1t h\u01a1n v\u00e0 \u0111\u1ea3m b\u1ea3o s\u1ee9c kh\u1ecfe t\u1ed1t nh\u1ea5t cho c\u1ed5 c\u1ee7a b\u1ea1n\r\nQu\u1ea3n l\u00fd c\u00e1p t\u00edch h\u1ee3p gi\u00fap b\u00e0n l\u00e0m vi\u1ec7c th\u1ea9m m\u1ef9 nh\u1ea5t\r\nDi chuy\u1ec3n gi\u00e1 \u0111\u1ee1 linh ho\u1ea1t theo \u00fd mu\u1ed1n', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-23836-pk0000018pk0000018.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-23836-pk0000018pk0000018.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-23836-pk0000018pk0000018.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-23836-pk0000018pk0000018.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/gia-do-man-hinh-may-tinh-north-bayou-f80-17-30-inch', + brand: { + id: '161', + brand_index: 'north-bayou', + name: 'North Bayou', + image: '', + url: '\/brand\/north-bayou', + }, + visit: '9856', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '370', + productSKU: 'PK0000018', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '358', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3403', + catPath: ':3403:0', + name: 'THI\u1ebeT B\u1eca V\u0102N PH\u00d2NG', + url: '\/thiet-bi-van-phong', + }, + { + id: '3598', + catPath: ':3598:3403:0', + name: 'GI\u00c1 TREO M\u00c0N H\u00ccNH', + url: '\/gia-treo-man-hinh', + }, + ], + }, + '27111': { + id: '27111', + productId: '27111', + priceUnit: 'chi\u1ebfc', + marketPrice: '130000', + price: '90000', + price_off: '31', + currency: 'vnd', + sale_rules: { + price: '90000', + normal_price: '90000', + min_purchase: '1', + max_purchase: '363', + remain_quantity: '363', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-04-21 15:12:34', + warranty: '24 th\u00e1ng', + productName: 'Chu\u1ed9t m\u00e1y t\u00ednh E-DRA EM606', + productSummary: + 'K\u1ebft N\u1ed1i: USB 2.0\r\n\u0110\u1ed9 ph\u00e2n gi\u1ea3i: 1000 DPI\r\nSwitch: 5M clicks\r\n\u0110\u1ed9 d\u00e0i d\u00e2y: 1,5m', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27111-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27111-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27111-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27111-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27111-2.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27111-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27111-3.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27111-3.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/chuot-gaming-e-dra-em606', + brand: { + id: '54', + brand_index: 'e-dra', + name: 'E-DRA', + image: '', + url: '\/brand\/e-dra', + }, + visit: '3436', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '363', + productSKU: 'MOU000119', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '244', + }, + 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: '3562', + catPath: ':3562:1147:410:0', + name: 'Chu\u1ed9t theo h\u00e3ng', + url: '\/chuot-theo-hang', + }, + { + id: '3565', + catPath: ':3565:1147:410:0', + name: 'Chu\u1ed9t C\u00f3 D\u00e2y', + url: '\/chuot-co-day', + }, + { + id: '3291', + catPath: ':3291:3562:1147:410:0', + name: 'Chu\u1ed9t E-DRA', + url: '\/chuot-e-dra', + }, + ], + }, + '27486': { + id: '27486', + productId: '27486', + priceUnit: 'chi\u1ebfc', + marketPrice: '990000', + price: '750000', + price_off: '24', + currency: 'vnd', + sale_rules: { + price: '750000', + normal_price: '750000', + min_purchase: '1', + max_purchase: '355', + remain_quantity: '355', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-04-08 09:23:42', + warranty: '36 Th\u00e1ng', + productName: 'Ngu\u1ed3n m\u00e1y t\u00ednh Segotep SG D600A U5 500W \u0110en\/Black', + productSummary: + '\u0110i\u1ec7n \u00e1p \u0111\u1ea7u v\u00e0o: 220Vac \/ 5A\/ 50Hz\r\nC\u00f4ng su\u1ea5t th\u1ef1c: 500W\r\nQu\u1ea1t l\u00e0m m\u00e1t : 120mm fan, Max \u2013 S\u1eed d\u1ee5ng c\u1ea3m bi\u1ebfn nhi\u1ec7t \u0111\u1ed9 AI Cooler \u0111\u1ed9c quy\u1ec1n..\r\nA.PFC', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27486-segotep-sg-d600a-u5-500w-black-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27486-segotep-sg-d600a-u5-500w-black-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27486-segotep-sg-d600a-u5-500w-black-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27486-segotep-sg-d600a-u5-500w-black-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27486-segotep-sg-d600a-u5-500w-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27486-segotep-sg-d600a-u5-500w-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27486-segotep-sg-d600a-u5-500w-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27486-segotep-sg-d600a-u5-500w-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27486-segotep-sg-d600a-u5-500w-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27486-segotep-sg-d600a-u5-500w-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27486-segotep-sg-d600a-u5-500w-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27486-segotep-sg-d600a-u5-500w-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27486-segotep-sg-d600a-u5-500w-black-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27486-segotep-sg-d600a-u5-500w-black-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27486-segotep-sg-d600a-u5-500w-black-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27486-segotep-sg-d600a-u5-500w-black-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27486-segotep-sg-d600a-u5-500w-black-4.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27486-segotep-sg-d600a-u5-500w-black-4.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-segotep-sg-d600a-u5-500w-denblack', + brand: { + id: '142', + brand_index: 'segotep', + name: 'SEGOTEP', + image: '', + url: '\/brand\/segotep', + }, + visit: '2039', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '355', + productSKU: 'PSU0000172', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3633', + catPath: ':3633:282:3431:0', + name: 'Ngu\u1ed3n Segotep', + url: '\/nguon-segotep', + }, + ], + }, + '2576': { + id: '2576', + productId: '2576', + priceUnit: 'chi\u1ebfc', + marketPrice: '150000', + price: '120000', + price_off: '20', + currency: 'vnd', + sale_rules: { + price: '120000', + normal_price: '120000', + min_purchase: '1', + max_purchase: '208', + remain_quantity: '208', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-11-15 10:19:04', + warranty: '12 Th\u00e1ng', + productName: 'Chu\u1ed9t m\u00e1y t\u00ednh Fuhlen L102 Optical Black USB', + productSummary: '', + package_accessory: '0', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-2576-sp000096sp000096sp000096.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-2576-sp000096sp000096sp000096.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-2576-sp000096sp000096sp000096.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-2576-sp000096sp000096sp000096.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/chuot-fuhlen-l102-optical-black-usb', + brand: { + id: '36', + brand_index: 'fuhlen', + name: 'FUHLEN', + image: '', + url: '\/brand\/fuhlen', + }, + visit: '13940', + rating: '9', + reviewCount: '6', + review: { + rate: '9', + total: '6', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '208', + productSKU: 'SP000096', + productModel: '0', + hasVAT: '0', + condition: '0', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '834', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '1147', + catPath: ':1147:410:0', + name: 'Mouse - Chu\u1ed9t', + url: '\/chuot-mouse', + }, + { + id: '3232', + catPath: ':3232:3562:1147:410:0', + name: 'Chu\u1ed9t Fuhlen', + url: '\/chuot-fuhlen', + }, + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + ], + }, + '26687': { + id: '26687', + productId: '26687', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '1750000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '1750000', + normal_price: '1750000', + min_purchase: '1', + max_purchase: '169', + remain_quantity: '169', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-11-29 09:04:32', + warranty: '60 Th\u00e1ng', + productName: 'Ngu\u1ed3n m\u00e1y t\u00ednh ANTEC GOLD Plus G750 750W', + productSummary: + 'Lo\u1ea1i s\u1ea3n ph\u1ea9m: PSU - Ngu\u1ed3n m\u00e1y t\u00ednh\r\nC\u00f4ng su\u1ea5t: 750W\r\n\u0110\u1ea7u c\u1ea5p \u0111i\u1ec7n cho main: 1 x 24(20+4)-pin.\r\nQu\u1ea1t l\u00e0m m\u00e1t: Fan Silence 12cm\r\n\u0110i\u1ec7n \u00e1p v\u00e0o: 200-230 VAC\r\nKi\u1ec3u c\u00e1p ngu\u1ed3n: Semi-Modular\r\nK\u00edch c\u1ee1 ngu\u1ed3n: 150(W) x 140(L) x 86(H) (mm)\r\nM\u00e0u s\u1eafc: \u0110en', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26687-antec-g750.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26687-antec-g750.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26687-antec-g750.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26687-antec-g750.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26687-f5960bdd54aaf6f4afbb.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26687-f5960bdd54aaf6f4afbb.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26687-3b418100de777c292566.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26687-3b418100de777c292566.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26687-398425d17aa6d8f881b7.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26687-398425d17aa6d8f881b7.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26687-acca6e8031f793a9cae6.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26687-acca6e8031f793a9cae6.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26687-99686f233054920acb45.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26687-99686f233054920acb45.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26687-07a6c8f4978335dd6c92.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26687-07a6c8f4978335dd6c92.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26687-75f6c8a897df35816cce.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26687-75f6c8a897df35816cce.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-antec-gold-plus-g750-750w', + brand: { + id: '23', + brand_index: 'antec', + name: 'ANTEC', + image: '', + url: '\/brand\/antec', + }, + visit: '8168', + rating: '5', + reviewCount: '2', + review: { + rate: '5', + total: '2', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '169', + productSKU: 'PSU0000146', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + }, + 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: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '649', + catPath: ':649:282:3431:0', + name: 'Ngu\u1ed3n Antec', + url: '\/psu-antec', + }, + ], + }, + '25614': { + id: '25614', + productId: '25614', + priceUnit: 'chi\u1ebfc', + marketPrice: '180000', + price: '90000', + price_off: '50', + currency: 'vnd', + sale_rules: { + price: '90000', + normal_price: '90000', + min_purchase: '1', + max_purchase: '147', + remain_quantity: '147', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-05-05 10:12:43', + warranty: '24 Th\u00e1ng', + productName: 'Chu\u1ed9t m\u00e1y t\u00ednh DARE-U LM106G Black', + productSummary: + 'C\u1ea3m bi\u1ebfn: FCT3605 2.4G\r\nDPI: 1200\r\nK\u00edch th\u01b0\u1edbc: 99*59*38mm\r\nPin: 01* AA\r\nTr\u1ecdng l\u01b0\u1ee3ng: 65g +\/- 10g', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25614-dareu-lm106g-blackdareu-lm106g-black.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25614-dareu-lm106g-blackdareu-lm106g-black.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25614-dareu-lm106g-blackdareu-lm106g-black.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25614-dareu-lm106g-blackdareu-lm106g-black.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/chuot-may-tinh-dare-u-lm106g-black', + brand: { + id: '52', + brand_index: 'dareu', + name: 'DAREU', + image: '', + url: '\/brand\/dareu', + }, + visit: '3250', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '147', + productSKU: 'SP002613', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '345', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3231', + catPath: ':3231:3562:1147:410:0', + name: 'Chu\u1ed9t Dareu', + url: '\/chuot-dareu', + }, + { + id: '1147', + catPath: ':1147:410:0', + name: 'Mouse - Chu\u1ed9t', + url: '\/chuot-mouse', + }, + { + id: '3564', + catPath: ':3564:1147:410:0', + name: 'Chu\u1ed9t Kh\u00f4ng D\u00e2y', + url: '\/chuot-khong-day', + }, + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + ], + }, + '26686': { + id: '26686', + productId: '26686', + priceUnit: 'chi\u1ebfc', + marketPrice: '1799000', + price: '1450000', + price_off: '19', + currency: 'vnd', + sale_rules: { + price: '1450000', + normal_price: '1450000', + min_purchase: '1', + max_purchase: '134', + remain_quantity: '134', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-11-29 09:04:21', + warranty: '60 Th\u00e1ng', + productName: 'Ngu\u1ed3n m\u00e1y t\u00ednh ANTEC GOLD Plus G650 650W', + productSummary: + 'Lo\u1ea1i s\u1ea3n ph\u1ea9m: PSU - Ngu\u1ed3n m\u00e1y t\u00ednh\r\nC\u00f4ng su\u1ea5t: 650W\r\n\u0110\u1ea7u c\u1ea5p \u0111i\u1ec7n cho main: 1 x 24(20+4)-pin.\r\nQu\u1ea1t l\u00e0m m\u00e1t: Fan Silence 12cm\r\n\u0110i\u1ec7n \u00e1p v\u00e0o: 200-230 VAC\r\nKi\u1ec3u c\u00e1p ngu\u1ed3n: Semi-Modular\r\nK\u00edch c\u1ee1 ngu\u1ed3n: 150(W) x 140(L) x 86(H) (mm)\r\nM\u00e0u s\u1eafc: \u0110en', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26686-antec-g650.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26686-antec-g650.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26686-antec-g650.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26686-antec-g650.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26686-b56f619430e392bdcbf2.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26686-b56f619430e392bdcbf2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26686-4274e080b1f713a94ae6.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26686-4274e080b1f713a94ae6.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26686-1d2ae9d6b8a11aff43b0.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26686-1d2ae9d6b8a11aff43b0.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26686-f247bbb2eac5489b11d4.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26686-f247bbb2eac5489b11d4.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26686-9097a666f711554f0c00.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26686-9097a666f711554f0c00.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26686-1e1b30db61acc3f29abd.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26686-1e1b30db61acc3f29abd.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-antec-gold-plus-g650-650w', + brand: { + id: '23', + brand_index: 'antec', + name: 'ANTEC', + image: '', + url: '\/brand\/antec', + }, + visit: '6624', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '134', + productSKU: 'PSU0000145', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '1', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + 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: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '649', + catPath: ':649:282:3431:0', + name: 'Ngu\u1ed3n Antec', + url: '\/psu-antec', + }, + ], + }, + '27377': { + id: '27377', + productId: '27377', + priceUnit: 'chi\u1ebfc', + marketPrice: '1990000', + price: '1290000', + price_off: '35', + currency: 'vnd', + sale_rules: { + price: '1290000', + normal_price: '1290000', + min_purchase: '1', + max_purchase: '112', + remain_quantity: '112', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-09-25 16:38:29', + warranty: '60 Th\u00e1ng', + productName: 'Ngu\u1ed3n M\u00e1y T\u00ednh OCPC ENERGIA BZ750 750W 80+ BRONZE', + productSummary: + 'C\u00f4ng su\u1ea5t ngu\u1ed3n: 750W\r\nK\u00edch th\u01b0\u1edbc Fan: 120mm\r\nTi\u00eau chu\u1ea9n: 80 Bronze\r\nThi\u1ebft k\u1ebf d\u00e2y: No-Modular', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-80-5.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-80-5.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-80-5.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-80-5.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-80-.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-80-.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-80-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-80-1.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze', + brand: { + id: '170', + brand_index: 'ocpc', + name: 'OCPC', + image: '', + url: '\/brand\/ocpc', + }, + visit: '2545', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '112', + productSKU: 'PSU0000170', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + }, + 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: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3720', + catPath: ':3720:282:3431:0', + name: 'Ngu\u1ed3n OCPC', + url: '\/nguon-ocpc', + }, + ], + }, + '26688': { + id: '26688', + productId: '26688', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '1950000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '1950000', + normal_price: '1950000', + min_purchase: '1', + max_purchase: '102', + remain_quantity: '102', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-07-03 13:49:23', + warranty: '60 Th\u00e1ng', + productName: 'Ngu\u1ed3n m\u00e1y t\u00ednh ANTEC GOLD Plus G850 850W', + productSummary: + 'Lo\u1ea1i s\u1ea3n ph\u1ea9m: PSU - Ngu\u1ed3n m\u00e1y t\u00ednh\r\nC\u00f4ng su\u1ea5t: 850W\r\n\u0110\u1ea7u c\u1ea5p \u0111i\u1ec7n cho main: 1 x 24(20+4)-pin.\r\nQu\u1ea1t l\u00e0m m\u00e1t: Fan Silence 12cm\r\n\u0110i\u1ec7n \u00e1p v\u00e0o: 200-230 VAC\r\nKi\u1ec3u c\u00e1p ngu\u1ed3n: Semi-Modular\r\nK\u00edch c\u1ee1 ngu\u1ed3n: 150(W) x 140(L) x 86(H) (mm)\r\nM\u00e0u s\u1eafc: \u0110en', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26688-nguon-antec-g850.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26688-nguon-antec-g850.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26688-nguon-antec-g850.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26688-nguon-antec-g850.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26688-af0913544823ea7db332.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26688-af0913544823ea7db332.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26688-13b2a8eff39851c60889.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26688-13b2a8eff39851c60889.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26688-db112ab671c1d39f8ad0.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26688-db112ab671c1d39f8ad0.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26688-2bacc50b9e7c3c22656d.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26688-2bacc50b9e7c3c22656d.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26688-0c2fd48d8ffa2da474eb.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26688-0c2fd48d8ffa2da474eb.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-26688-0abc42e01997bbc9e286.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-26688-0abc42e01997bbc9e286.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-antec-gold-plus-g850-850w', + brand: { + id: '23', + brand_index: 'antec', + name: 'ANTEC', + image: '', + url: '\/brand\/antec', + }, + visit: '10578', + rating: '5', + reviewCount: '1', + review: { + rate: '5', + total: '1', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '102', + productSKU: 'PSU0000147', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '539', + }, + 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: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '649', + catPath: ':649:282:3431:0', + name: 'Ngu\u1ed3n Antec', + url: '\/psu-antec', + }, + ], + }, + '26246': { + id: '26246', + productId: '26246', + priceUnit: 'chi\u1ebfc', + marketPrice: '1990000', + price: '1290000', + price_off: '35', + currency: 'vnd', + sale_rules: { + price: '1290000', + normal_price: '1290000', + min_purchase: '1', + max_purchase: '99', + remain_quantity: '99', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-20 15:39:37', + warranty: '60 Th\u00e1ng', + productName: 'Ngu\u1ed3n m\u00e1y t\u00ednh MIK C750B 750W PLUS BRONZE', + productSummary: + 'Lo\u1ea1i s\u1ea3n ph\u1ea9m: PSU - Ngu\u1ed3n m\u00e1y t\u00ednh\r\nC\u00f4ng su\u1ea5t: 750W.\r\nHi\u1ec7u su\u1ea5t: 80 Plus Bronze.\r\nNgu\u1ed3n \u0111\u1ea7u v\u00e0o: 100-240V\r\nQu\u1ea1t l\u00e0m m\u00e1t: 120mm\r\nTh\u01b0\u01a1ng hi\u1ec7u: MIK', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26246-c75_9f0fc6d5795e4ef7bb819a346b1c.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26246-c75_9f0fc6d5795e4ef7bb819a346b1c.png', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26246-c75_9f0fc6d5795e4ef7bb819a346b1c.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26246-c75_9f0fc6d5795e4ef7bb819a346b1c.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26246-thiet_ke_chua_co_ten_c7b641c555a.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26246-thiet_ke_chua_co_ten_c7b641c555a.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26246-6_2e65714ac15345e4bcadb7f60b3a55.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26246-6_2e65714ac15345e4bcadb7f60b3a55.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26246-anh_chinh_dien_c750_01ec0eb52f48.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26246-anh_chinh_dien_c750_01ec0eb52f48.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26246-10_6a83bf48b40b4c95997f293746fde.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26246-10_6a83bf48b40b4c95997f293746fde.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26246-5_87b97855851049a19e034e30b2ba63.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26246-5_87b97855851049a19e034e30b2ba63.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26246-11_713f04ccf3d44621bedf8fa2e1532.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26246-11_713f04ccf3d44621bedf8fa2e1532.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26246-c750b_f6a96169bc964b6fbc83c3b51a.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26246-c750b_f6a96169bc964b6fbc83c3b51a.png', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-mik-c750b-750w-plus-bronze', + brand: { + id: '133', + brand_index: 'mik', + name: 'MIK', + image: '', + url: '\/brand\/mik', + }, + visit: '5993', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '99', + productSKU: 'PSU0000124', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '0', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + ], + }, + '28298': { + id: '28298', + productId: '28298', + priceUnit: 'chi\u1ebfc', + marketPrice: '1990000', + price: '1490000', + price_off: '25', + currency: 'vnd', + sale_rules: { + price: '1490000', + normal_price: '1490000', + min_purchase: '1', + max_purchase: '92', + remain_quantity: '92', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-11-05 09:11:16', + warranty: '60 th\u00e1ng', + productName: + 'Ngu\u1ed3n m\u00e1y t\u00ednh 1STPLAYER ACK-BRZ-750 750W (80 Plus Bronze, Non-Modular, \u0110en)', + productSummary: + 'Ch\u1ee9ng nh\u1eadn: 80 PLUS BRONZE\r\n\u0110\u1ea1t ti\u00eau chu\u1ea9n ATX 3.1 & PCIe 5.1\r\n\u0110\u1ed9 b\u1ec1n: 50.000 gi\u1edd\r\nQu\u1ea1t: Hydraulic bearing, \u0111\u01b0\u1eddng k\u00ednh 140mm\r\nChu\u1ea9n k\u00edch th\u01b0\u1edbc: ATX', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28298-1stplayer-ack-brz-750-750w-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28298-1stplayer-ack-brz-750-750w-03.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28298-1stplayer-ack-brz-750-750w-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28298-1stplayer-ack-brz-750-750w-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28298-1stplayer-ack-brz-750-750w-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28298-1stplayer-ack-brz-750-750w-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28298-1stplayer-ack-brz-750-750w-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28298-1stplayer-ack-brz-750-750w-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28298-1stplayer-ack-brz-750-750w-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28298-1stplayer-ack-brz-750-750w-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28298-1stplayer-ack-brz-750-750w-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28298-1stplayer-ack-brz-750-750w-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28298-1stplayer-ack-brz-750-750w-06.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28298-1stplayer-ack-brz-750-750w-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28298-1stplayer-ack-brz-750-750w-07.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28298-1stplayer-ack-brz-750-750w-07.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-1stplayer-ack-brz-750-750w-80-plus-bronze-non-modular-den', + brand: { + id: '0', + name: '', + image: '', + url: '', + }, + visit: '251', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '92', + productSKU: 'PSU0000207', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '19', + review_score: '4.5', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + ], + }, + '28202': { + id: '28202', + productId: '28202', + priceUnit: 'chi\u1ebfc', + marketPrice: '2690000', + price: '1890000', + price_off: '30', + currency: 'vnd', + sale_rules: { + price: '1890000', + normal_price: '1890000', + min_purchase: '1', + max_purchase: '71', + remain_quantity: '71', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-15 13:29:27', + warranty: '24 th\u00e1ng', + productName: 'V\u1ecf m\u00e1y t\u00ednh Asus Prime AP202 TG BLACK (Kh\u00f4ng Qu\u1ea1t)', + productSummary: + 'Lo\u1ea1i: Mid Tower\r\nK\u00edch th\u01b0\u1edbc: 441 x 236 x 460mm\r\nH\u1ed7 tr\u1ee3 GPU d\u00e0i t\u1ed1i \u0111a: 420mm\r\nH\u1ed7 tr\u1ee3 CPU Cooler d\u00e0i t\u1ed1i \u0111a: 175mm\r\nH\u1ed7 tr\u1ee3 PSU d\u00e0i t\u1ed1i \u0111a: 200mm', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-017.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-017.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-017.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-017.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-08.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-08.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-016.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-016.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-015.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-015.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-014.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-014.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-013.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-013.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-012.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-012.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-011.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-011.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-010.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-010.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-09.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-09.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-07.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-07.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-06.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28202-asus-prime-ap202-tg-black-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28202-asus-prime-ap202-tg-black-01.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/vo-may-tinh-asus-prime-ap202-tg-black-khong-quat', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '937', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '71', + productSKU: 'VO0000317', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '18', + review_score: '4.9', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '280', + catPath: ':280:3431:0', + name: 'Case - V\u1ecf m\u00e1y t\u00ednh', + url: '\/case-vo-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3310', + catPath: ':3310:280:3431:0', + name: 'Case Asus', + url: '\/case-asus', + }, + ], + }, + '26248': { + id: '26248', + productId: '26248', + priceUnit: 'chi\u1ebfc', + marketPrice: '2990000', + price: '1690000', + price_off: '43', + currency: 'vnd', + sale_rules: { + price: '1690000', + normal_price: '1690000', + min_purchase: '1', + max_purchase: '68', + remain_quantity: '68', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-25 09:03:13', + warranty: '60 Th\u00e1ng', + productName: 'Ngu\u1ed3n m\u00e1y t\u00ednh MIK C850G 80PLUS GOLD (ATX 3.0 - PCIE 5.0)', + productSummary: + 'Lo\u1ea1i s\u1ea3n ph\u1ea9m: PSU - Ngu\u1ed3n m\u00e1y t\u00ednh\r\nT\u00ean s\u1ea3n ph\u1ea9m: Ngu\u1ed3n MIK C850G | Chu\u1ea9n 80+ Efficiency\r\nC\u00f4ng su\u1ea5t: 850W\r\nCh\u1ee9ng nh\u1eadn: 87% Efficiency\r\nChu\u1ea9n thi\u1ebft k\u1ebf: ATX \r\nT\u1ea3n nhi\u1ec7t: 120mm', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26248-c850-2_07c7346eb8b646a290f5989a6.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26248-c850-2_07c7346eb8b646a290f5989a6.png', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26248-c850-2_07c7346eb8b646a290f5989a6.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26248-c850-2_07c7346eb8b646a290f5989a6.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26248-c850g__2__4f9ef1b386404a36a22dc9.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26248-c850g__2__4f9ef1b386404a36a22dc9.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26248-c850g_1de18e206edf4af4b3d862969c.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26248-c850g_1de18e206edf4af4b3d862969c.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26248-c850g-3_c7e0b8c5093f4ad298f6a55f.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26248-c850g-3_c7e0b8c5093f4ad298f6a55f.png', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-mik-c850g-850w', + brand: { + id: '133', + brand_index: 'mik', + name: 'MIK', + image: '', + url: '\/brand\/mik', + }, + visit: '5222', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '68', + productSKU: 'PSU0000123', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '0', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + ], + }, + '28255': { + id: '28255', + productId: '28255', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3990000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3990000', + normal_price: '3990000', + min_purchase: '1', + max_purchase: '63', + remain_quantity: '63', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-28 11:53:46', + warranty: '120 th\u00e1ng', + productName: + 'Ngu\u1ed3n m\u00e1y t\u00ednh ASUS TUF Gaming 1000W Gold (ATX 3.1, PCIe 5.1, Full Modular)', + productSummary: + 'Ngu\u1ed3n Asus TUF Gaming 1000W Gold\r\nTh\u01b0\u01a1ng Hi\u1ec7u: ASUS\r\nModel: TUF-GAMING-1000G\r\nC\u00f4ng su\u1ea5t: 1000W\r\nCh\u1ee9ng nh\u1eadn: 80Plus Gold\r\nKi\u1ec3u ngu\u1ed3n: ATX\r\nK\u00edch th\u01b0\u1edbc: 150 x 150 x 86 mm\r\n\u0110i\u1ec7n \u00e1p \u0111\u1ea7u v\u00e0o: 100-240V', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-012.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-012.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-011.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-011.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-012.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-012.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-06.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-07.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-07.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-08.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-08.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-09.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-09.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-010.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28255-asus-tuf-gaming-1000w-gold-atx-3-1-pcie-5-1-full-modular-010.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-asus-tuf-gaming-1000w-gold-atx-31-pcie-51-full-modular', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '369', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '63', + productSKU: 'PSU0000185', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3069', + catPath: ':3069:282:3431:0', + name: 'Ngu\u1ed3n ASUS', + url: '\/nguon-asus', + }, + ], + }, + '28407': { + id: '28407', + productId: '28407', + priceUnit: 'chi\u1ebfc', + marketPrice: '990000', + price: '850000', + price_off: '14', + currency: 'vnd', + sale_rules: { + price: '850000', + normal_price: '850000', + min_purchase: '1', + max_purchase: '53', + remain_quantity: '53', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-11-25 17:31:30', + warranty: '36 th\u00e1ng', + productName: + 'Ngu\u1ed3n m\u00e1y t\u00ednh OCPC 650W ENERGIA WH650W (80 Plus White, Full Range)', + productSummary: + 'C\u00f4ng su\u1ea5t: 650W (t\u1ed1i \u0111a)\r\nHi\u1ec7u su\u1ea5t: Chu\u1ea9n 80 PLUS White, ti\u1ebft ki\u1ec7m \u0111i\u1ec7n v\u00e0 t\u0103ng hi\u1ec7u n\u0103ng\r\nK\u00edch th\u01b0\u1edbc: 150(W) x 86(H) x 140(D)mm\r\nChu\u1ea9n k\u00edch th\u01b0\u1edbc: ATX', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28407-psu-ocpc-650w-energia-wh650w-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28407-psu-ocpc-650w-energia-wh650w-03.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28407-psu-ocpc-650w-energia-wh650w-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28407-psu-ocpc-650w-energia-wh650w-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28407-psu-ocpc-650w-energia-wh650w-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28407-psu-ocpc-650w-energia-wh650w-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28407-psu-ocpc-650w-energia-wh650w-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28407-psu-ocpc-650w-energia-wh650w-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28407-psu-ocpc-650w-energia-wh650w-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28407-psu-ocpc-650w-energia-wh650w-04.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-ocpc-650w-energia', + brand: { + id: '170', + brand_index: 'ocpc', + name: 'OCPC', + image: '', + url: '\/brand\/ocpc', + }, + visit: '169', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '53', + productSKU: 'PSU0000211', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '42', + review_score: '4.7', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3720', + catPath: ':3720:282:3431:0', + name: 'Ngu\u1ed3n OCPC', + url: '\/nguon-ocpc', + }, + ], + }, + '28011': { + id: '28011', + productId: '28011', + priceUnit: 'chi\u1ebfc', + marketPrice: '690000', + price: '420000', + price_off: '39', + currency: 'vnd', + sale_rules: { + price: '420000', + normal_price: '420000', + min_purchase: '1', + max_purchase: '51', + remain_quantity: '51', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-08-20 09:22:40', + warranty: '36 th\u00e1ng', + productName: 'Ngu\u1ed3n m\u00e1y t\u00ednh SEGOTEP QPOWER 350 350W', + productSummary: '', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28011-segotep-qpower-350-02.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28011-segotep-qpower-350-02.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28011-segotep-qpower-350-01.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28011-segotep-qpower-350-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28011-segotep-qpower-350-02.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28011-segotep-qpower-350-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28011-segotep-qpower-350-03.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28011-segotep-qpower-350-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28011-segotep-qpower-350-04.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28011-segotep-qpower-350-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28011-segotep-qpower-350-05.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28011-segotep-qpower-350-05.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-segotep-qpower-350-350w', + brand: { + id: '142', + brand_index: 'segotep', + name: 'SEGOTEP', + image: '', + url: '\/brand\/segotep', + }, + visit: '305', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '51', + productSKU: 'PSU0000192', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '18', + review_score: '4.4', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3633', + catPath: ':3633:282:3431:0', + name: 'Ngu\u1ed3n Segotep', + url: '\/nguon-segotep', + }, + ], + }, + '23837': { + id: '23837', + productId: '23837', + priceUnit: 'chi\u1ebfc', + marketPrice: '590000', + price: '400000', + price_off: '32', + currency: 'vnd', + sale_rules: { + price: '400000', + normal_price: '400000', + min_purchase: '1', + max_purchase: '50', + remain_quantity: '50', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2024-06-12 11:56:03', + warranty: '12 th\u00e1ng', + productName: + 'Gi\u00e1 \u0111\u1ee1 m\u00e0n h\u00ecnh m\u00e1y t\u00ednh g\u1eafn c\u1ea1nh b\u00e0n North Bayou H100 (17-30 inch)', + productSummary: + 'H\u00e3ng: North Bayou [NB]\r\nD\u00f9ng cho m\u00e0n h\u00ecnh t\u1eeb 22inch \u0111\u1ebfn 35inch\r\nTr\u1ecdng t\u1ea3i 2kg \u0111\u1ebfn 12 kg\r\nChu\u1ea9n VESA 75mm x 75mm, 100mm x 100mm\r\nKho\u1ea3ng c\u00e1ch n\u00e2ng l\u00ean h\u1ea1 xu\u1ed1ng 250mm', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-23837-gia-do-man-hinh-north-bayou-h100.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-23837-gia-do-man-hinh-north-bayou-h100.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-23837-gi---------m--n-h--nh-m--y-t--nh-g---n-c---nh-b--n-north-bayou-h100--22-35-inch--3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-23837-gi---------m--n-h--nh-m--y-t--nh-g---n-c---nh-b--n-north-bayou-h100--22-35-inch--3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-23837-gia-do-man-hinh-north-bayou-h100.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-23837-gia-do-man-hinh-north-bayou-h100.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-23837-gia-do-man-hinh-north-bayou-h100-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-23837-gia-do-man-hinh-north-bayou-h100-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-23837-gia-do-man-hinh-north-bayou-h100-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-23837-gia-do-man-hinh-north-bayou-h100-3.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/gia-do-man-hinh-may-tinh-gan-canh-ban-north-bayou-h100-22-35-inch', + brand: { + id: '161', + brand_index: 'north-bayou', + name: 'North Bayou', + image: '', + url: '\/brand\/north-bayou', + }, + visit: '4728', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '50', + productSKU: 'SP012365', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + pixel_code: '', + review_count: '15', + review_score: '4', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '3403', + catPath: ':3403:0', + name: 'THI\u1ebeT B\u1eca V\u0102N PH\u00d2NG', + url: '\/thiet-bi-van-phong', + }, + { + id: '3598', + catPath: ':3598:3403:0', + name: 'GI\u00c1 TREO M\u00c0N H\u00ccNH', + url: '\/gia-treo-man-hinh', + }, + ], + }, + '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: '29', + remain_quantity: '29', + 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: '11821', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '29', + 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', + }, + ], + }, + '28193': { + id: '28193', + productId: '28193', + priceUnit: 'chi\u1ebfc', + marketPrice: '3500000', + price: '2990000', + price_off: '15', + currency: 'vnd', + sale_rules: { + price: '2990000', + normal_price: '2990000', + min_purchase: '1', + max_purchase: '28', + remain_quantity: '28', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-20 14:28:13', + warranty: '120 th\u00e1ng', + productName: + 'Ngu\u1ed3n M\u00e1y T\u00ednh 1STPLAYER NGDP-GLD-850 850W (80 Plus Gold, ATX 3.1, PCIe 5.1, M\u00e0u Tr\u1eafng)', + productSummary: + 'C\u00f4ng su\u1ea5t: 850W\r\nHi\u1ec7u su\u1ea5t: 88.39 % full load\r\nCh\u1ee9ng nh\u1eadn: 80 PLUS GOLD\r\n\u0110\u1ea1t ti\u00eau chu\u1ea9n ATX 3.1 & PCIe 5.1\r\n\u0110\u1ed9 b\u1ec1n: 100.000 gi\u1edd', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28193-ngdp-atx-3-1-gold-08.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28193-ngdp-atx-3-1-gold-08.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28193-ngdp-atx-3-1-gold-05.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28193-ngdp-atx-3-1-gold-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28193-ngdp-atx-3-1-gold-01.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28193-ngdp-atx-3-1-gold-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28193-ngdp-atx-3-1-gold-02.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28193-ngdp-atx-3-1-gold-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28193-ngdp-atx-3-1-gold-03.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28193-ngdp-atx-3-1-gold-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28193-ngdp-atx-3-1-gold-04.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28193-ngdp-atx-3-1-gold-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28193-ngdp-atx-3-1-gold-06.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28193-ngdp-atx-3-1-gold-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28193-ngdp-atx-3-1-gold-07.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28193-ngdp-atx-3-1-gold-07.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28193-ngdp-atx-3-1-gold-08.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28193-ngdp-atx-3-1-gold-08.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-1stplayer-ngdp-gld-850-850w-white', + brand: { + id: '0', + name: '', + image: '', + url: '', + }, + visit: '206', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '28', + productSKU: 'PSU0000205', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '18', + review_score: '4.4', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + ], + }, + '27928': { + id: '27928', + productId: '27928', + priceUnit: 'chi\u1ebfc', + marketPrice: '2590000', + price: '1850000', + price_off: '29', + currency: 'vnd', + sale_rules: { + price: '1850000', + normal_price: '1850000', + min_purchase: '1', + max_purchase: '27', + remain_quantity: '27', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-08-11 11:46:21', + warranty: '36 th\u00e1ng', + productName: 'M\u00e0n h\u00ecnh m\u00e1y t\u00ednh VIOX MF2425-V 100Hz', + productSummary: + 'Th\u01b0\u01a1ng hi\u1ec7u : VIOX MODEL : MF2425 \u2013 V\r\nPanel size: 23.8 inch\r\nPanel Type: IPS Backlight Type: WLED\r\nResolution: 1920 x 1080\r\nRefresh Rate: 100 Hz\r\nHDMI Input: 1\r\nVGA Input:1\r\nDC Input: DC12V, 3A\r\nColour: Black', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27928-viox-mf2425-v.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27928-viox-mf2425-v.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27928-viox-mf2425-v.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27928-viox-mf2425-v.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27928-viox-mf2425-v--5-.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27928-viox-mf2425-v--5-.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27928-viox-mf2425-v--2-.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27928-viox-mf2425-v--2-.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27928-viox-mf2425-v--1-.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27928-viox-mf2425-v--1-.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27928-viox-mf2425-v--7-.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27928-viox-mf2425-v--7-.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27928-viox-mf2425-v--3-.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27928-viox-mf2425-v--3-.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27928-viox-mf2425-v--4-.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27928-viox-mf2425-v--4-.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27928-viox-mf2425-v--6-.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27928-viox-mf2425-v--6-.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27928-viox-mf2425-v--8-.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27928-viox-mf2425-v--8-.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/man-hinh-may-tinh-viox-mf2425-v-100hz', + brand: { + id: '0', + name: '', + image: '', + url: '', + }, + visit: '2905', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '27', + productSKU: 'MH0000373', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '13', + }, + 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: '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: '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', + }, + ], + }, + '28156': { + id: '28156', + productId: '28156', + priceUnit: 'chi\u1ebfc', + marketPrice: '2590000', + price: '2290000', + price_off: '12', + currency: 'vnd', + sale_rules: { + price: '2290000', + normal_price: '2290000', + min_purchase: '1', + max_purchase: '27', + remain_quantity: '27', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-12 11:08:29', + warranty: '60 th\u00e1ng', + productName: + 'Ngu\u1ed3n M\u00e1y T\u00ednh Gigabyte GP-UD750GM PG5 750W (80 Plus Gold, Full Modular, M\u00e0u \u0110en)', + productSummary: + 'C\u00f4ng su\u1ea5t : 750W\r\nForm : Intel Form Factor ATX 12V v3.1\r\n\u0110i\u1ec7n \u00e1p : 100-240 Vac (full range)\r\nChu\u1ea9n 80 Plus : Gold\r\nHi\u1ec7u su\u1ea5t : 90% at typical load', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28156-ud750gm-pg5-07.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28156-ud750gm-pg5-07.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28156-ud750gm-pg5-01.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28156-ud750gm-pg5-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28156-ud750gm-pg5-02.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28156-ud750gm-pg5-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28156-ud750gm-pg5-03.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28156-ud750gm-pg5-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28156-ud750gm-pg5-04.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28156-ud750gm-pg5-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28156-ud750gm-pg5-05.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28156-ud750gm-pg5-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28156-ud750gm-pg5-06.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28156-ud750gm-pg5-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28156-ud750gm-pg5-07.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28156-ud750gm-pg5-07.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-gigabyte-gp-ud750gm-pg5-750w-80-plus-gold', + brand: { + id: '2', + brand_index: 'gigabyte', + name: 'Gigabyte', + image: '', + url: '\/brand\/gigabyte', + }, + visit: '438', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '27', + productSKU: 'PSU0000202', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3247', + catPath: ':3247:282:3431:0', + name: 'Ngu\u1ed3n Gigabyte', + url: '\/nguon-gigabyte', + }, + ], + }, + '28166': { + id: '28166', + productId: '28166', + priceUnit: 'chi\u1ebfc', + marketPrice: '3690000', + price: '2990000', + price_off: '19', + currency: 'vnd', + sale_rules: { + price: '2990000', + normal_price: '2990000', + min_purchase: '1', + max_purchase: '27', + remain_quantity: '27', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-10-10 14:59:18', + warranty: '96 th\u00e1ng', + productName: + 'Ngu\u1ed3n M\u00e1y T\u00ednh ASUS PRIME 850W GOLD AP-850G (80 Plus Gold, Full Modular, M\u00e0u Tr\u1eafng)', + productSummary: + 'V\u00f2ng bi qu\u1ea1t bi k\u00e9p c\u00f3 th\u1ec3 c\u00f3 tu\u1ed5i th\u1ecd g\u1ea5p \u0111\u00f4i so v\u1edbi thi\u1ebft k\u1ebf v\u00f2ng bi tay \u00e1o.\r\nCh\u1ee9ng nh\u1eadn v\u00e0ng 80 Plus l\u00e0 k\u1ebft qu\u1ea3 c\u1ee7a t\u1ee5 \u0111i\u1ec7n ESR th\u1ea5p v\u00e0 c\u00e1c linh ki\u1ec7n cao c\u1ea5p kh\u00e1c.\r\nT\u01b0\u01a1ng th\u00edch ATX 3.0: ASUS Prime Gold tu\u00e2n th\u1ee7 c\u00e1c nguy\u00ean t\u1eafc ATX 3.0 v\u00e0 \u0111i k\u00e8m v\u1edbi c\u00e1p PCIe 16 ch\u00e2n t\u01b0\u01a1ng th\u00edch v\u1edbi card \u0111\u1ed3 h\u1ecda PCIe Gen 5.0.\r\nBao g\u1ed3m b\u1ea3o h\u00e0nh 8 n\u0103m.\r\nC\u00f4ng su\u1ea5t 850w', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-011.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-011.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-011.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-011.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-06.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-07.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-07.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-08.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-08.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-09.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-09.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-010.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-010.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-012.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-012.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28166-asus-prime-850w-gold-013.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28166-asus-prime-850w-gold-013.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-asus-prime-850w-gold-ap-850g', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '637', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '27', + productSKU: 'PSU0000196', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '18', + review_score: '8.4', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3069', + catPath: ':3069:282:3431:0', + name: 'Ngu\u1ed3n ASUS', + url: '\/nguon-asus', + }, + ], + }, + '25988': { + id: '25988', + productId: '25988', + priceUnit: 'chi\u1ebfc', + marketPrice: '1990000', + price: '1490000', + price_off: '25', + currency: 'vnd', + sale_rules: { + price: '1490000', + normal_price: '1490000', + min_purchase: '1', + max_purchase: '19', + remain_quantity: '19', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-31 14:09:31', + warranty: '60 th\u00e1ng', + productName: 'Ngu\u1ed3n m\u00e1y t\u00ednh MSI MAG A750BN 750W PCIE5 (80 Plus Bronze)', + productSummary: + 'T\u00ean s\u1ea3n ph\u1ea9m: MAG A750BN\r\nLo\u1ea1i ngu\u1ed3n: ATX\r\nC\u00f4ng su\u1ea5t t\u1ed1i \u0111a: 750W\r\nHi\u1ec7u \u0111i\u1ec7n th\u1ebf \u0111\u1ea7u v\u00e0o: 100-240V\r\nNgu\u1ed3n \u0111\u1ea7u v\u00e0o: 115Vac\/10.0A max \/ 230Vac\/5.0A max.\r\nHi\u1ec7u su\u1ea5t: L\u00ean t\u1edbi 85% (80 Plus Bronze)', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25988-468295cf2cd594cc57b1ceb5ab5d63_2.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25988-468295cf2cd594cc57b1ceb5ab5d63_2.png', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25988-468295cf2cd594cc57b1ceb5ab5d63_2.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25988-468295cf2cd594cc57b1ceb5ab5d63_2.png', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-msi-mag-a750bn-pcie5', + brand: { + id: '5', + brand_index: 'msi', + name: 'MSI', + image: '', + url: '\/brand\/msi', + }, + visit: '10410', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '5', + total: '3', + }, + quantity: '19', + productSKU: 'PSU0000121', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + pixel_code: '', + review_count: '12', + review_score: '4.1', + buy_count: '0', + }, + 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: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3427', + catPath: ':3427:282:3431:0', + name: 'Ngu\u1ed3n MSI', + url: '\/nguon-msi', + }, + ], + }, + '25458': { + id: '25458', + productId: '25458', + priceUnit: 'chi\u1ebfc', + marketPrice: '890000', + price: '550000', + price_off: '38', + currency: 'vnd', + sale_rules: { + price: '550000', + normal_price: '550000', + min_purchase: '1', + max_purchase: '16', + remain_quantity: '16', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-05-27 08:47:39', + warranty: '24 Th\u00e1ng', + productName: + 'B\u00e0n ph\u00edm m\u00e1y t\u00ednh DAREU EK810 MULTI-LED BLACK (USB\/MULTI LED\/BROWN SWITCH)', + productSummary: + 'B\u00e0n Ph\u00edm c\u01a1 Dareu EK810 Multi-Led Black\r\nS\u1eed d\u1ee5ng switch "D" \u0111\u1ed9c quy\u1ec1n\r\nLED nhi\u1ec1u m\u00e0u\r\nKeycap ABS Doubleshot si\u00eau b\u1ec1n\r\nThi\u1ebft k\u1ebf c\u1ed5 \u0111i\u1ec3n, si\u00eau ch\u1eafc ch\u1eafn', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25458-dareu-ek810.png', + large: 'https://nguyencongpc.vn\/media\/product\/250-25458-dareu-ek810.png', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25458-dareu-ek810.png', + large: 'https://nguyencongpc.vn\/media\/product\/250-25458-dareu-ek810.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25458-55361_ban_phim_co_dareu_ek810_multi_led_black_usb_rgb_brown_switch.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25458-55361_ban_phim_co_dareu_ek810_multi_led_black_usb_rgb_brown_switch.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ban-phim-may-tinh-dareu-ek810-multi-led-black-usbmulti-ledbrown-switch', + brand: { + id: '52', + brand_index: 'dareu', + name: 'DAREU', + image: '', + url: '\/brand\/dareu', + }, + visit: '3202', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '16', + productSKU: 'SP004108', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '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: '3543', + catPath: ':3543:1235:410:0', + name: 'B\u00e0n ph\u00edm c\u00f3 d\u00e2y', + url: '\/ban-phim-co-day-1', + }, + { + id: '3552', + catPath: ':3552:3544:1235:410:0', + name: 'B\u00e0n ph\u00edm DAREU', + url: '\/ban-phim-dareu-1', + }, + ], + }, + '27112': { + id: '27112', + productId: '27112', + priceUnit: 'chi\u1ebfc', + marketPrice: '900000', + price: '750000', + price_off: '17', + currency: 'vnd', + sale_rules: { + price: '750000', + normal_price: '750000', + min_purchase: '1', + max_purchase: '16', + remain_quantity: '16', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-05-15 10:00:27', + warranty: '36 th\u00e1ng', + productName: 'Ngu\u1ed3n m\u00e1y t\u00ednh XIGMATEK LITEPOWER i650 EN44685 (500W)', + productSummary: + 'C\u00f4ng su\u1ea5t : 500W\r\nQu\u1ea1t h\u1ec7 th\u1ed1ng : 12cm Fan * 1\r\nHi\u1ec7u su\u1ea5t 80%\r\nTu\u1ed5i th\u1ecd 100,000 gi\u1edd\r\nK\u00edch th\u01b0\u1edbc 150 x 85 x 140(mm)', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27112-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27112-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27112-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27112-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27112-2.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27112-2.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-xigmatek-litepower-i650-en44685-500w', + brand: { + id: '38', + brand_index: 'xigmatek', + name: 'XIGMATEK', + image: '', + url: '\/brand\/xigmatek', + }, + visit: '2320', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '16', + productSKU: 'PSU0000158', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '0', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '1488', + catPath: ':1488:282:3431:0', + name: 'Ngu\u1ed3n Xigmatek', + url: '\/psu-xigmatek', + }, + ], + }, + '28203': { + id: '28203', + productId: '28203', + priceUnit: 'chi\u1ebfc', + marketPrice: '2690000', + price: '1890000', + price_off: '30', + currency: 'vnd', + sale_rules: { + price: '1890000', + normal_price: '1890000', + min_purchase: '1', + max_purchase: '16', + remain_quantity: '16', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-15 13:29:43', + warranty: '24 th\u00e1ng', + productName: 'V\u1ecf m\u00e1y t\u00ednh Asus Prime AP202 TG WHITE (Kh\u00f4ng Qu\u1ea1t)', + productSummary: + 'Lo\u1ea1i: Mid Tower\r\nK\u00edch th\u01b0\u1edbc: 441 x 236 x 460mm\r\nH\u1ed7 tr\u1ee3 GPU d\u00e0i t\u1ed1i \u0111a: 420mm\r\nH\u1ed7 tr\u1ee3 CPU Cooler d\u00e0i t\u1ed1i \u0111a: 175mm\r\nH\u1ed7 tr\u1ee3 PSU d\u00e0i t\u1ed1i \u0111a: 200mm', + package_accessory: '0', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-013.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-013.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-013.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-013.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-06.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-07.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-07.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-08.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-08.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-09.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-09.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-010.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-010.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-011.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-011.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-012.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-012.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28203-asus-prime-ap202-tg-white-014.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28203-asus-prime-ap202-tg-white-014.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/vo-may-tinh-asus-prime-ap202-tg-white-khong-quat', + brand: { + id: '4', + brand_index: 'asus', + name: 'ASUS', + image: '', + url: '\/brand\/asus', + }, + visit: '234', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '16', + productSKU: 'VO0000318', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '19', + review_score: '4.7', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '280', + catPath: ':280:3431:0', + name: 'Case - V\u1ecf m\u00e1y t\u00ednh', + url: '\/case-vo-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3310', + catPath: ':3310:280:3431:0', + name: 'Case Asus', + url: '\/case-asus', + }, + ], + }, + '25674': { + id: '25674', + productId: '25674', + priceUnit: 'chi\u1ebfc', + marketPrice: '4950000', + price: '3100000', + price_off: '37', + currency: 'vnd', + sale_rules: { + price: '3100000', + normal_price: '3100000', + min_purchase: '1', + max_purchase: '13', + remain_quantity: '13', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-09-17 11:30:54', + warranty: '24 Th\u00e1ng', + productName: 'Chu\u1ed9t m\u00e1y t\u00ednh Logitech PRO X SUPERLIGHT 2 - Black', + productSummary: + 'C\u1ea3m bi\u1ebfn: HERO 2\r\n\u0110\u1ed9 ph\u00e2n gi\u1ea3i: 100 \u2013 32.000 dpi \r\nT\u0103ng t\u1ed1c t\u1ed1i \u0111a: >40 G \r\nT\u1ed1c \u0111\u1ed9 t\u1ed1i \u0111a: >500 ips \r\nChuy\u1ec3n \u0111\u1ed9ng li\u00ean t\u1ee5c: 95 gi\u1edd\r\nB\u1ed9 vi x\u1eed l\u00fd: 32-bit ARM', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25674-pro-x-superlight-2.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25674-pro-x-superlight-2.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-25674-pro-x-superlight-2.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-25674-pro-x-superlight-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25674-gallery-5-pro-x-superlight-2-gam.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25674-gallery-5-pro-x-superlight-2-gam.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25674-gallery-6-pro-x-superlight-2-gam.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25674-gallery-6-pro-x-superlight-2-gam.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25674-gallery-4-pro-x-superlight-2-gam.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25674-gallery-4-pro-x-superlight-2-gam.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25674-gallery-3-pro-x-superlight-2-gam.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25674-gallery-3-pro-x-superlight-2-gam.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25674-gallery-2-pro-x-superlight-2-gam.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25674-gallery-2-pro-x-superlight-2-gam.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-25674-gallery-1-pro-x-superlight-2-gam.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-25674-gallery-1-pro-x-superlight-2-gam.png', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/chuot-may-tinh-logitech-pro-x-superlight-2', + brand: { + id: '37', + brand_index: 'logitech', + name: 'LOGITECH', + image: '', + url: '\/brand\/logitech', + }, + visit: '5015', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '13', + productSKU: 'MOU000071', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '1', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '79', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '1147', + catPath: ':1147:410:0', + name: 'Mouse - Chu\u1ed9t', + url: '\/chuot-mouse', + }, + { + id: '3564', + catPath: ':3564:1147:410:0', + name: 'Chu\u1ed9t Kh\u00f4ng D\u00e2y', + url: '\/chuot-khong-day', + }, + { + id: '3562', + catPath: ':3562:1147:410:0', + name: 'Chu\u1ed9t theo h\u00e3ng', + url: '\/chuot-theo-hang', + }, + { + id: '410', + catPath: ':410:0', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: '\/phu-kien', + }, + { + id: '3226', + catPath: ':3226:3562:1147:410:0', + name: 'Chu\u1ed9t Logitech', + url: '\/chuot-logitech', + }, + ], + }, + '22464': { + id: '22464', + productId: '22464', + priceUnit: 'chi\u1ebfc', + marketPrice: '290000', + price: '130000', + price_off: '55', + currency: 'vnd', + sale_rules: { + price: '130000', + normal_price: '130000', + min_purchase: '1', + max_purchase: '10', + remain_quantity: '10', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-06-09 09:37:36', + warranty: '12 th\u00e1ng', + productName: 'B\u00e0n ph\u00edm m\u00e1y t\u00ednh MIK SHIBA', + productSummary: + 'Thi\u1ebft k\u1ebf ki\u1ec3u d\u00e1ng m\u1ecfng, nh\u1eb9\r\nV\u1ecf \u0111\u01b0\u1ee3c l\u00e0m ch\u1ea5t li\u1ec7u nh\u1ef1a b\u1ec1n, cao c\u1ea5p\r\n\u0110\u1ed9 b\u1ec1n ph\u00edm l\u00ean t\u1edbi 10tr l\u1ea7n b\u1ea5m\r\nL\u1edbp s\u01a1n m\u00e0u \u0111en ch\u1ed1ng b\u1ee5i\r\nC\u00e1c ph\u00edm \u0111\u00e0n h\u1ed3i t\u1ed1t \u0111\u01b0\u1ee3c kh\u1eafc b\u1eb1ng laser ch\u1ed1ng m\u1edd\r\nS\u1eed d\u1ee5ng c\u1ed5ng k\u1ebft n\u1ed1i USB d\u1ec5 d\u00e0ng\r\nD\u00e2y c\u00e1p \u0111\u01b0\u1ee3c l\u00e0m b\u1eb1ng ch\u1ea5t li\u1ec7u cao su b\u1ec1n, d\u1ebbo', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22464-mik--shiba.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22464-mik--shiba.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-22464-mik--shiba.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-22464-mik--shiba.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ban-phim-may-tinh-mik-shiba', + brand: { + id: '133', + brand_index: 'mik', + name: 'MIK', + image: '', + url: '\/brand\/mik', + }, + visit: '4136', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '10', + productSKU: 'BP0000209', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '19', + review_score: '4.2', + }, + 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', + }, + ], + }, + }, + price_filter_list: [ + { + count: '40', + is_selected: '0', + name: 'D\u01b0\u1edbi 1 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=duoi-1trieu&q=may', + }, + { + count: '102', + is_selected: '0', + name: '1 tri\u1ec7u - 5 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=1trieu-5trieu&q=may', + }, + { + count: '17', + is_selected: '0', + name: '5 tri\u1ec7u - 10 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=5trieu-10trieu&q=may', + }, + { + count: '6', + is_selected: '0', + name: '10 tri\u1ec7u - 20 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=10trieu-20trieu&q=may', + }, + { + count: '5', + is_selected: '0', + name: '20 tri\u1ec7u - 40 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=20trieu-40trieu&q=may', + }, + { + count: '3', + is_selected: '0', + name: 'Tr\u00ean 40 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=tren-40trieu&q=may', + }, + ], + category_collection: [ + { + id: '280', + name: 'Case - V\u1ecf m\u00e1y t\u00ednh', + url: 'https:\/\/nguyencongpc.vn\/tim?category=280&q=may', + count: '17', + is_selected: '', + category_url: '\/case-vo-may-tinh', + }, + { + id: '281', + name: 'M\u00c0N H\u00ccNH M\u00c1Y T\u00cdNH', + url: 'https:\/\/nguyencongpc.vn\/tim?category=281&q=may', + count: '10', + is_selected: '', + category_url: '\/man-hinh-may-tinh', + }, + { + id: '282', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: 'https:\/\/nguyencongpc.vn\/tim?category=282&q=may', + count: '82', + is_selected: '', + category_url: '\/psu-nguon-may-tinh', + }, + { + id: '283', + name: 'Ram - B\u1ed9 nh\u1edb trong', + url: 'https:\/\/nguyencongpc.vn\/tim?category=283&q=may', + count: '3', + is_selected: '', + category_url: '\/ram', + }, + { + id: '408', + name: 'PC \u0110\u1ed2 HO\u1ea0 - L\u00c0M VI\u1ec6C', + url: 'https:\/\/nguyencongpc.vn\/tim?category=408&q=may', + count: '4', + is_selected: '', + category_url: '\/pc-workstation', + }, + { + id: '410', + name: 'PH\u00cdM CHU\u1ed8T, GH\u1ebe, GEAR', + url: 'https:\/\/nguyencongpc.vn\/tim?category=410&q=may', + count: '17', + is_selected: '', + category_url: '\/phu-kien', + }, + { + id: '487', + name: 'RAM Samsung', + url: 'https:\/\/nguyencongpc.vn\/tim?category=487&q=may', + count: '2', + is_selected: '', + category_url: '\/ram-samsung', + }, + { + id: '522', + name: 'M\u00e0n h\u00ecnh Dell', + url: 'https:\/\/nguyencongpc.vn\/tim?category=522&q=may', + count: '2', + is_selected: '', + category_url: '\/man-hinh-dell', + }, + { + id: '645', + name: 'Ngu\u1ed3n Huntkey', + url: 'https:\/\/nguyencongpc.vn\/tim?category=645&q=may', + count: '2', + is_selected: '', + category_url: '\/psu-huntkey', + }, + { + id: '649', + name: 'Ngu\u1ed3n Antec', + url: 'https:\/\/nguyencongpc.vn\/tim?category=649&q=may', + count: '10', + is_selected: '', + category_url: '\/psu-antec', + }, + { + id: '663', + name: 'Case Jonsbo', + url: 'https:\/\/nguyencongpc.vn\/tim?category=663&q=may', + count: '2', + is_selected: '', + category_url: '\/case-jonsbo', + }, + { + id: '949', + name: 'Ngu\u1ed3n Cooler master', + url: 'https:\/\/nguyencongpc.vn\/tim?category=949&q=may', + count: '8', + is_selected: '', + category_url: '\/psu-cooler-master', + }, + { + id: '963', + name: 'Ngu\u1ed3n Corsair', + url: 'https:\/\/nguyencongpc.vn\/tim?category=963&q=may', + count: '6', + is_selected: '', + category_url: '\/corsair-psu-nguon-may-tinh', + }, + { + id: '1118', + name: 'Pad di chu\u1ed9t', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1118&q=may', + count: '1', + is_selected: '', + category_url: '\/pad-di-chuot', + }, + { + id: '1147', + name: 'Mouse - Chu\u1ed9t', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1147&q=may', + count: '10', + is_selected: '', + category_url: '\/chuot-mouse', + }, + { + id: '1191', + name: 'Case Cooler Master', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1191&q=may', + count: '5', + is_selected: '', + category_url: '\/case-cooler-master', + }, + { + id: '1196', + name: 'Case Vitra', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1196&q=may', + count: '1', + is_selected: '', + category_url: '\/case-vitra', + }, + { + id: '1198', + name: 'Case Corsair', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1198&q=may', + count: '1', + is_selected: '', + category_url: '\/case-corsair', + }, + { + id: '1235', + name: 'B\u00e0n Ph\u00edm', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1235&q=may', + count: '2', + is_selected: '', + category_url: '\/ban-phim', + }, + { + id: '1488', + name: 'Ngu\u1ed3n Xigmatek', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1488&q=may', + count: '6', + is_selected: '', + category_url: '\/psu-xigmatek', + }, + { + id: '1522', + name: 'THI\u1ebeT B\u1eca \u00c2M THANH', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1522&q=may', + count: '1', + is_selected: '', + category_url: '\/am-thanh', + }, + { + id: '1678', + name: 'M\u00e1y T\u00ednh \u0110\u1ed3ng B\u1ed9', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1678&q=may', + count: '3', + is_selected: '', + category_url: '\/may-tinh-dong-bo', + }, + { + id: '2455', + name: 'M\u00e0n h\u00ecnh Asus', + url: 'https:\/\/nguyencongpc.vn\/tim?category=2455&q=may', + count: '4', + is_selected: '', + category_url: '\/man-hinh-asus', + }, + { + id: '2614', + name: 'Case NZXT', + url: 'https:\/\/nguyencongpc.vn\/tim?category=2614&q=may', + count: '2', + is_selected: '', + category_url: '\/case-nzxt', + }, + { + id: '2628', + name: 'M\u00e0n h\u00ecnh HKC', + url: 'https:\/\/nguyencongpc.vn\/tim?category=2628&q=may', + count: '1', + is_selected: '', + category_url: '\/man-hinh-hkc', + }, + { + id: '2772', + name: 'Ngu\u1ed3n Thermaltake', + url: 'https:\/\/nguyencongpc.vn\/tim?category=2772&q=may', + count: '1', + is_selected: '', + category_url: '\/nguon-thermaltake', + }, + { + id: '3034', + name: 'B\u1ed9 M\u00e1y S\u1eed D\u1ee5ng CPU AMD', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3034&q=may', + count: '1', + is_selected: '', + category_url: '\/amd-ryzen-workstation', + }, + { + id: '3069', + name: 'Ngu\u1ed3n ASUS', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3069&q=may', + count: '9', + is_selected: '', + category_url: '\/nguon-asus', + }, + { + id: '3201', + name: 'PC V\u0102N PH\u00d2NG GI\u00c1 R\u1eba', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3201&q=may', + count: '1', + is_selected: '', + category_url: '\/pc-van-phong-gia-re', + }, + { + id: '3219', + name: 'B\u00e0n ph\u00edm Dareu', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3219&q=may', + count: '1', + is_selected: '', + category_url: '\/ban-phim-dareu', + }, + { + id: '3226', + name: 'Chu\u1ed9t Logitech', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3226&q=may', + count: '2', + is_selected: '', + category_url: '\/chuot-logitech', + }, + { + id: '3231', + name: 'Chu\u1ed9t Dareu', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3231&q=may', + count: '4', + is_selected: '', + category_url: '\/chuot-dareu', + }, + { + id: '3232', + name: 'Chu\u1ed9t Fuhlen', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3232&q=may', + count: '1', + is_selected: '', + category_url: '\/chuot-fuhlen', + }, + { + id: '3239', + name: 'Case MSI', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3239&q=may', + count: '2', + is_selected: '', + category_url: '\/case-msi', + }, + { + id: '3247', + name: 'Ngu\u1ed3n Gigabyte', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3247&q=may', + count: '16', + is_selected: '', + category_url: '\/nguon-gigabyte', + }, + { + id: '3253', + name: 'Case Antec', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3253&q=may', + count: '1', + is_selected: '', + category_url: '\/antec', + }, + { + id: '3291', + name: 'Chu\u1ed9t E-DRA', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3291&q=may', + count: '1', + is_selected: '', + category_url: '\/chuot-e-dra', + }, + { + id: '3295', + name: 'Ngu\u1ed3n Super Flower', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3295&q=may', + count: '1', + is_selected: '', + category_url: '\/nguon-super-flower', + }, + { + id: '3308', + name: 'Loa', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3308&q=may', + count: '1', + is_selected: '', + category_url: '\/loa', + }, + { + id: '3310', + name: 'Case Asus', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3310&q=may', + count: '2', + is_selected: '', + category_url: '\/case-asus', + }, + { + id: '3328', + name: 'Chu\u1ed9t kh\u00e1c', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3328&q=may', + count: '1', + is_selected: '', + category_url: '\/chuot-khac', + }, + { + id: '3366', + name: 'Pad Razer', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3366&q=may', + count: '1', + is_selected: '', + category_url: '\/pad-razer', + }, + { + id: '3374', + name: 'Ngu\u1ed3n NZXT', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3374&q=may', + count: '3', + is_selected: '', + category_url: '\/nguon-nzxt', + }, + { + id: '3403', + name: 'THI\u1ebeT B\u1eca V\u0102N PH\u00d2NG', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3403&q=may', + count: '46', + is_selected: '', + category_url: '\/thiet-bi-van-phong', + }, + { + id: '3405', + name: 'Ma\u0301y in', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3405&q=may', + count: '34', + is_selected: '', + category_url: '\/may-in', + }, + { + id: '3412', + name: 'Ph\u1ee5 Ki\u1ec7n GAMING Kh\u00e1c', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3412&q=may', + count: '1', + is_selected: '', + category_url: '\/phu-kien-gaming-khac', + }, + { + id: '3427', + name: 'Ngu\u1ed3n MSI', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3427&q=may', + count: '1', + is_selected: '', + category_url: '\/nguon-msi', + }, + { + id: '3431', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3431&q=may', + count: '80', + is_selected: '', + category_url: '\/linh-kien-may-tinh', + }, + { + id: '3500', + name: 'CH\u1eccN THEO H\u00c3NG', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3500&q=may', + count: '7', + is_selected: '', + category_url: '\/chon-theo-hang-1-2', + }, + { + id: '3501', + name: 'CH\u1eccN THEO K\u00cdCH TH\u01af\u1edaC', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3501&q=may', + count: '8', + is_selected: '', + category_url: '\/chon-theo-kich-thuoc', + }, + { + id: '3507', + name: 'M\u00e0n h\u00ecnh 24 inches', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3507&q=may', + count: '3', + is_selected: '', + category_url: '\/man-hinh-24-inches', + }, + { + id: '3509', + name: 'M\u00e0n h\u00ecnh 27 inches', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3509&q=may', + count: '4', + is_selected: '', + category_url: '\/man-hinh-27-inches', + }, + { + id: '3512', + name: 'M\u00e0n h\u00ecnh 34 inches', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3512&q=may', + count: '1', + is_selected: '', + category_url: '\/man-hinh-34-inches', + }, + { + id: '3515', + name: 'CH\u1eccN \u0110\u1ed8 PH\u00c2N GI\u1ea2I', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3515&q=may', + count: '8', + is_selected: '', + category_url: '\/chon-do-phan-giai', + }, + { + id: '3519', + name: '1920 x 1080 (FHD)', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3519&q=may', + count: '5', + is_selected: '', + category_url: '\/1920-x-1080-fhd', + }, + { + id: '3522', + name: '2560 x 1440 (QHD 2K)', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3522&q=may', + count: '2', + is_selected: '', + category_url: '\/2560-x-1440-qhd-2k', + }, + { + id: '3527', + name: '5120 x 2880 (UHD+ 5K)', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3527&q=may', + count: '1', + is_selected: '', + category_url: '\/5120-x-2880-uhd-5k', + }, + { + id: '3528', + name: 'CH\u1eccN T\u1ea6N S\u1ed0 QU\u00c9T', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3528&q=may', + count: '7', + is_selected: '', + category_url: '\/tan-so-quet', + }, + { + id: '3529', + name: '60 Hz', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3529&q=may', + count: '3', + is_selected: '', + category_url: '\/60-hz', + }, + { + id: '3531', + name: '100 Hz', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3531&q=may', + count: '1', + is_selected: '', + category_url: '\/100-hz', + }, + { + id: '3533', + name: '165 Hz', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3533&q=may', + count: '1', + is_selected: '', + category_url: '\/165-hz', + }, + { + id: '3534', + name: '170 Hz', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3534&q=may', + count: '1', + is_selected: '', + category_url: '\/170-hz', + }, + { + id: '3537', + name: '200 Hz', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3537&q=may', + count: '1', + is_selected: '', + category_url: '\/200-hz', + }, + { + id: '3543', + name: 'B\u00e0n ph\u00edm c\u00f3 d\u00e2y', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3543&q=may', + count: '2', + is_selected: '', + category_url: '\/ban-phim-co-day-1', + }, + { + id: '3552', + name: 'B\u00e0n ph\u00edm DAREU', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3552&q=may', + count: '1', + is_selected: '', + category_url: '\/ban-phim-dareu-1', + }, + { + id: '3562', + name: 'Chu\u1ed9t theo h\u00e3ng', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3562&q=may', + count: '7', + is_selected: '', + category_url: '\/chuot-theo-hang', + }, + { + id: '3564', + name: 'Chu\u1ed9t Kh\u00f4ng D\u00e2y', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3564&q=may', + count: '5', + is_selected: '', + category_url: '\/chuot-khong-day', + }, + { + id: '3565', + name: 'Chu\u1ed9t C\u00f3 D\u00e2y', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3565&q=may', + count: '3', + is_selected: '', + category_url: '\/chuot-co-day', + }, + { + id: '3591', + name: 'M\u00c1Y T\u00cdNH B\u1ea2NG', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3591&q=may', + count: '1', + is_selected: '', + category_url: '\/may-tinh-bang', + }, + { + id: '3594', + name: 'M\u00c1Y CHI\u1ebeU', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3594&q=may', + count: '4', + is_selected: '', + category_url: '\/may-chieu', + }, + { + id: '3598', + name: 'GI\u00c1 TREO M\u00c0N H\u00ccNH', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3598&q=may', + count: '6', + is_selected: '', + category_url: '\/gia-treo-man-hinh', + }, + { + id: '3600', + name: 'Ngu\u1ed3n Sharkoon', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3600&q=may', + count: '1', + is_selected: '', + category_url: '\/nguon-sharkoon', + }, + { + id: '3624', + name: 'M\u00c0N H\u00ccNH \u0110\u1ed2 H\u1eccA', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3624&q=may', + count: '1', + is_selected: '', + category_url: '\/man-hinh-do-hoa', + }, + { + id: '3632', + name: 'M\u00e0n h\u00ecnh Galax', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3632&q=may', + count: '1', + is_selected: '', + category_url: '\/man-hinh-galax', + }, + { + id: '3633', + name: 'Ngu\u1ed3n Segotep', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3633&q=may', + count: '3', + is_selected: '', + category_url: '\/nguon-segotep', + }, + { + id: '3646', + name: 'Ngu\u1ed3n Deepcool', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3646&q=may', + count: '1', + is_selected: '', + category_url: '\/nguon-deepcool', + }, + { + id: '3705', + name: 'M\u00c0N H\u00ccNH PH\u1ee4', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3705&q=may', + count: '7', + is_selected: '', + category_url: '\/man-hinh-phu', + }, + { + id: '3720', + name: 'Ngu\u1ed3n OCPC', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3720&q=may', + count: '3', + is_selected: '', + category_url: '\/nguon-ocpc', + }, + ], + attribute_filter_list: [], + brand_filter_list: [ + { + id: '115', + name: 'KENNO', + brand_index: 'kenno', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=kenno&q=may', + }, + { + id: '4', + name: 'ASUS', + brand_index: 'asus', + image: '', + count: '16', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=asus&q=may', + }, + { + id: '98', + name: 'HP', + brand_index: 'hp', + image: '', + count: '11', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=hp&q=may', + }, + { + id: '6', + name: 'LG', + brand_index: 'lg', + image: '', + count: '3', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=lg&q=may', + }, + { + id: '5', + name: 'MSI', + brand_index: 'msi', + image: '', + count: '3', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=msi&q=may', + }, + { + id: '2', + name: 'Gigabyte', + brand_index: 'gigabyte', + image: '', + count: '16', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=gigabyte&q=may', + }, + { + id: '7', + name: 'Samsung', + brand_index: 'samsung', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=samsung&q=may', + }, + { + id: '87', + name: 'SUPER FLOWER', + brand_index: 'super-flower', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=super-flower&q=may', + }, + { + id: '74', + name: 'AOC', + brand_index: 'aoc', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=aoc&q=may', + }, + { + id: '103', + name: 'APPLE', + brand_index: 'apple', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=apple&q=may', + }, + { + id: '73', + name: 'ACER', + brand_index: 'acer', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=acer&q=may', + }, + { + id: '72', + name: 'DEEPCOOL', + brand_index: 'deepcool', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=deepcool&q=may', + }, + { + id: '71', + name: 'SHARKOON', + brand_index: 'sharkoon', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=sharkoon&q=may', + }, + { + id: '67', + name: 'HKC', + brand_index: 'hkc', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=hkc&q=may', + }, + { + id: '66', + name: 'NZXT', + brand_index: 'nzxt', + image: '', + count: '5', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=nzxt&q=may', + }, + { + id: '65', + name: 'THERMALTAKE', + brand_index: 'thermaltake', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=thermaltake&q=may', + }, + { + id: '54', + name: 'E-DRA', + brand_index: 'e-dra', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=e-dra&q=may', + }, + { + id: '52', + name: 'DAREU', + brand_index: 'dareu', + image: '', + count: '6', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=dareu&q=may', + }, + { + id: '41', + name: 'RAZER', + brand_index: 'razer', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=razer&q=may', + }, + { + id: '38', + name: 'XIGMATEK', + brand_index: 'xigmatek', + image: '', + count: '6', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=xigmatek&q=may', + }, + { + id: '37', + name: 'LOGITECH', + brand_index: 'logitech', + image: '', + count: '3', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=logitech&q=may', + }, + { + id: '36', + name: 'FUHLEN', + brand_index: 'fuhlen', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=fuhlen&q=may', + }, + { + id: '34', + name: 'VITRA', + brand_index: 'vitra', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=vitra&q=may', + }, + { + id: '33', + name: 'AIGO', + brand_index: 'aigo', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=aigo&q=may', + }, + { + id: '31', + name: 'CORSAIR', + brand_index: 'corsair', + image: '', + count: '7', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=corsair&q=may', + }, + { + id: '30', + name: 'COOLER MASTER', + brand_index: 'coolermaster', + image: '', + count: '13', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=coolermaster&q=may', + }, + { + id: '29', + name: 'FSP', + brand_index: 'fsp', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=fsp&q=may', + }, + { + id: '25', + name: 'JONSBO', + brand_index: 'jonsbo', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=jonsbo&q=may', + }, + { + id: '24', + name: 'SAMA', + brand_index: 'sama', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=sama&q=may', + }, + { + id: '22', + name: 'HUNTKEY', + brand_index: 'huntkey', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=huntkey&q=may', + }, + { + id: '21', + name: 'GALAX', + brand_index: 'galax', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=galax&q=may', + }, + { + id: '20', + name: 'DELL', + brand_index: 'dell', + image: '', + count: '3', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=dell&q=may', + }, + { + id: '23', + name: 'ANTEC', + brand_index: 'antec', + image: '', + count: '10', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=antec&q=may', + }, + { + id: '3', + name: 'AMD', + brand_index: 'amd', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=amd&q=may', + }, + { + id: '164', + name: 'Brother', + brand_index: 'brother', + image: '', + count: '6', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=brother&q=may', + }, + { + id: '131', + name: 'Canon', + brand_index: 'canon', + image: '', + count: '14', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=canon&q=may', + }, + { + id: '165', + name: 'Epson', + brand_index: 'epson', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=epson&q=may', + }, + { + id: '222', + name: 'GOG', + brand_index: 'gog', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=gog&q=may', + }, + { + id: '133', + name: 'MIK', + brand_index: 'mik', + image: '', + count: '3', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=mik&q=may', + }, + { + id: '161', + name: 'North Bayou', + brand_index: 'north-bayou', + image: '', + count: '5', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=north-bayou&q=may', + }, + { + id: '170', + name: 'OCPC', + brand_index: 'ocpc', + image: '', + count: '3', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=ocpc&q=may', + }, + { + id: '155', + name: 'Panasonic', + brand_index: 'panasonic', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=panasonic&q=may', + }, + { + id: '142', + name: 'SEGOTEP', + brand_index: 'segotep', + image: '', + count: '3', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=segotep&q=may', + }, + { + id: '167', + name: 'SONY', + brand_index: 'sony', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=sony&q=may', + }, + { + id: '153', + name: 'VSP', + brand_index: 'vsp', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=vsp&q=may', + }, + ], + }, + { + keywords: 'pc', + description: 'Danh s\u00e1ch k\u1ebft qu\u1ea3 th\u1ecfa m\u00e3n pc', + title: 'Danh s\u00e1ch pc', + favicon: '', + canonical: '', + image: '', + search_query: 'pc', + other_filter_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/tim?other_filter=in-stock&q=pc', + key: 'in-stock', + name: 'C\u00f2n h\u00e0ng', + }, + ], + sort_by_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=pc&sort=new', + key: 'new', + name: 'M\u1edbi nh\u1ea5t', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=pc&sort=price-asc', + key: 'price-asc', + name: 'Gi\u00e1 t\u0103ng d\u1ea7n', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=pc&sort=price-desc', + key: 'price-desc', + name: 'Gi\u00e1 gi\u1ea3m d\u1ea7n', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=pc&sort=view', + key: 'view', + name: 'L\u01b0\u1ee3t xem', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=pc&sort=comment', + key: 'comment', + name: 'Trao \u0111\u1ed5i', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=pc&sort=rating', + key: 'rating', + name: '\u0110\u00e1nh gi\u00e1', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?q=pc&sort=name', + key: 'name', + name: 'T\u00ean A->Z', + }, + ], + display_by_collection: [ + { + url: 'https:\/\/nguyencongpc.vn\/tim?display=list&q=pc', + key: 'list', + name: 'Danh s\u00e1ch', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?display=grid&q=pc', + key: 'grid', + name: 'Xem nh\u00f3m', + }, + { + url: 'https:\/\/nguyencongpc.vn\/tim?display=detail&q=pc', + key: 'detail', + name: 'Chi ti\u1ebft', + }, + ], + paging_collection: [ + { + name: '1', + url: '\/tim?q=pc', + is_active: '1', + }, + { + name: '2', + url: '\/tim?q=pc&page=2', + is_active: '0', + }, + { + name: '3', + url: '\/tim?q=pc&page=3', + is_active: '0', + }, + { + name: '4', + url: '\/tim?q=pc&page=4', + is_active: '0', + }, + { + name: '5', + url: '\/tim?q=pc&page=5', + is_active: '0', + }, + { + name: '6', + url: '\/tim?q=pc&page=6', + is_active: '0', + }, + { + name: '7', + url: '\/tim?q=pc&page=7', + is_active: '0', + }, + { + name: 'next', + url: '\/tim?q=pc&page=2', + 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> >> <\/a><\/td><\/td><\/tr><\/table>', + paging_count: '12', + product_count: '337', + product_list: { + '27591': { + id: '27591', + productId: '27591', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3600000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3600000', + normal_price: '3600000', + min_purchase: '1', + max_purchase: '4706', + remain_quantity: '4706', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-13 14:12:17', + warranty: '60 Th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD NVME 1TB Lexar NQ780 M.2 PCIe Gen4 x4 up to 6500MB\/s read, 2500MB\/s write', + productSummary: + 'Lexar NQ780: M.2 2280, PCIe Gen 4x4.\r\nDung l\u01b0\u1ee3ng: 1TB.\r\n\u0110\u1ecdc tu\u1ea7n t\u1ef1: 6000MB\/s, ghi: 2500MB\/s.\r\nHo\u1ea1t \u0111\u1ed9ng: 0\u00b0C~70\u00b0C, l\u01b0u tr\u1eef: -40\u00b0C~85\u00b0C.\r\nCh\u1ed1ng s\u1ed1c: 1500G, th\u1eddi gian 0.5ms.\r\nK\u00edch th\u01b0\u1edbc: 80 x 22 x 2.45mm.\r\nTBW: 600TBW, MTBF: 1,500,000 gi\u1edd.', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27591-250-7394-o-cung-ssd-nvme-1tb-lexar-nq780-m2-pcie-gen4-x4.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27591-250-7394-o-cung-ssd-nvme-1tb-lexar-nq780-m2-pcie-gen4-x4.png', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27591-250-7394-o-cung-ssd-nvme-1tb-lexar-nq780-m2-pcie-gen4-x4.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27591-250-7394-o-cung-ssd-nvme-1tb-lexar-nq780-m2-pcie-gen4-x4.png', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27591-lexar-nq780-1tb.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27591-lexar-nq780-1tb.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27591-lexar-nq780.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27591-lexar-nq780.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27591-7394-o-cung-ssd-nvme-1tb-lexar-nq780-m2-pcie-gen4-x4-1.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27591-7394-o-cung-ssd-nvme-1tb-lexar-nq780-m2-pcie-gen4-x4-1.png', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27591-250-7394-o-cung-ssd-nvme-1tb-lexar-nq780-m2-pcie-gen4-x4-2.png', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27591-250-7394-o-cung-ssd-nvme-1tb-lexar-nq780-m2-pcie-gen4-x4-2.png', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-nvme-1tb-lexar-nq780-m2-pcie-gen4-x4-lnq780x001t-rnnng', + brand: { + id: '96', + brand_index: 'lexar', + name: 'LEXAR', + image: '', + url: '\/brand\/lexar', + }, + visit: '4469', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '4706', + productSKU: 'SSD0000201', + 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: '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: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + { + id: '3690', + catPath: ':3690:3476:284:0', + name: '\u1ed4 c\u1ee9ng Lexar', + url: '\/o-cung-lexar', + }, + { + 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', + }, + ], + }, + '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: '17437', + 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', + }, + ], + }, + '26990': { + id: '26990', + productId: '26990', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '2190000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '2190000', + normal_price: '2190000', + min_purchase: '1', + max_purchase: '1727', + remain_quantity: '1727', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 11:18:32', + warranty: '36 th\u00e1ng', + productName: 'RAM OCPC XT II DDR4 3200 16GB BLACK', + productSummary: + 'Dung l\u01b0\u1ee3ng: 16Gb \r\nBus: 3200MHz\r\n\u0110\u1ed9 tr\u1ec5: CL16-20-20-40\r\n\u0110i\u1ec7n \u00e1p: 1.35V\r\nH\u1ed7 tr\u1ee3 Intel XMP 2.0', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26990-ocpc-xt-ii-ddr4-3200-16gb-black-thumbnail.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26990-ocpc-xt-ii-ddr4-3200-16gb-black-thumbnail.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26990-ocpc-xt-ii-ddr4-3200-16gb-black-thumb.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26990-ocpc-xt-ii-ddr4-3200-16gb-black-thumb.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-26990-ocpc-xt-ii-ddr4-3200-16gb-black-thumbnail.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-26990-ocpc-xt-ii-ddr4-3200-16gb-black-thumbnail.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/ram-ocpc-xt-ii-ddr4-3200-16gb-black', + brand: { + id: '170', + brand_index: 'ocpc', + name: 'OCPC', + image: '', + url: '\/brand\/ocpc', + }, + visit: '11943', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '5', + total: '1', + }, + quantity: '1727', + productSKU: 'RAM00000193', + 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: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '1154', + }, + 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: '3373', + catPath: ':3373:283:3431:0', + name: 'RAM OCPC', + url: '\/ram-ocpc', + }, + ], + }, + '28507': { + id: '28507', + productId: '28507', + priceUnit: 'chi\u1ebfc', + marketPrice: '4690000', + price: '3990000', + price_off: '15', + currency: 'vnd', + sale_rules: { + price: '3990000', + normal_price: '3990000', + min_purchase: '1', + max_purchase: '596', + remain_quantity: '596', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-29 15:36:14', + warranty: '60 th\u00e1ng', + productName: 'Ngu\u1ed3n FSP Hydro PTM X PRO 1200W 80 Plus Platinum (ATX 3.0, PCIe 5.0)', + productSummary: + 'ATX12V V3.0 & EPS12V V2.92\r\nHi\u1ec7u su\u1ea5t \u2267 92% t\u1ea1i t\u1ea3i th\u01b0\u1eddng\r\nActive PFC \u2267 0.9\r\nT\u1ee5 \u0111i\u1ec7n cao c\u1ea5p Nh\u1eadt B\u1ea3n 450V, 105\u00b0C\r\nT\u1ee5 \u0111i\u1ec7n Nh\u1eadt B\u1ea3n c\u00f4ng su\u1ea5t cao\r\nThi\u1ebft k\u1ebf c\u1ea5p c\u00f4ng nghi\u1ec7p v\u1edbi \u1ee9ng d\u1ee5ng l\u1edbp ph\u1ee7 ph\u00f9 h\u1ee3p\r\nThi\u1ebft k\u1ebf single-rail +12V', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-11.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-11.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-11.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-11.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-12.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-12.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-13.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-13.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-14.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-14.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-15.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-15.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-16.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28507-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-16.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-fsp-hydro-ptm-x-pro-1200w-80-plus-platinum-atx-30-pcie-50', + brand: { + id: '29', + brand_index: 'fsp', + name: 'FSP', + image: '', + url: '\/brand\/fsp', + }, + visit: '107', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '596', + productSKU: 'PSU0000219', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + pixel_code: '', + review_count: '57', + review_score: '4.8', + buy_count: '', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + ], + }, + '27709': { + id: '27709', + productId: '27709', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '1350000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '1350000', + normal_price: '1350000', + min_purchase: '1', + max_purchase: '577', + remain_quantity: '577', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 16:52:09', + warranty: '36 th\u00e1ng', + productName: '\u1ed4 c\u1ee9ng SSD AGI 512GB AI198 Internal SSD PCIe NVMe M.2 Gen3x4', + productSummary: + 'Dung l\u01b0\u1ee3ng: 512GB\r\nGiao di\u1ec7n: NVMe PCIe Gen 3x4\r\nK\u00edch th\u01b0\u1edbc: M.2 2280\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc \/ ghi tu\u1ea7n t\u1ef1 (Max): 3000 \/ 2000 MB\/s\r\nNAND Flash: 3D NAND TLC\r\nTBW: 300 TB', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27709-ssd-agi-512gb-ai198-internal-ssd-pcie-nvme-m-2-gen3x4-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27709-ssd-agi-512gb-ai198-internal-ssd-pcie-nvme-m-2-gen3x4-2.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27709-ssd-agi-512gb-ai198-internal-ssd-pcie-nvme-m-2-gen3x4-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27709-ssd-agi-512gb-ai198-internal-ssd-pcie-nvme-m-2-gen3x4-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27709-ssd-agi-512gb-ai198-internal-ssd-pcie-nvme-m-2-gen3x4-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27709-ssd-agi-512gb-ai198-internal-ssd-pcie-nvme-m-2-gen3x4-2.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-agi-512gb-ai198-internal-ssd-pcie-nvme-m2-gen3x4', + brand: { + id: '205', + brand_index: 'agi', + name: 'AGI', + image: '', + url: '\/brand\/agi', + }, + visit: '1822', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '577', + productSKU: 'SSD0000200', + 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: '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: '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: '3680', + catPath: ':3680:3476:284:0', + name: '\u00d4 c\u1ee9ng AGI', + url: '\/o-cung-agi', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + id: '3491', + catPath: ':3491:3477:284:0', + name: '512GB', + url: '\/512gb', + }, + { + 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', + }, + ], + }, + '28357': { + id: '28357', + productId: '28357', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '2950000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '2950000', + normal_price: '2950000', + min_purchase: '1', + max_purchase: '559', + remain_quantity: '559', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-26 14:36:45', + warranty: '36 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD HIKSEMI WAVE 1TB M.2 2280 PCIe 3.0 (2450MB\/s \u0110\u1ecdc, 2450MB\/s Ghi, HS-SSD-WAVE(P)-1024G)', + productSummary: + 'H\u00e3ng s\u1ea3n xu\u1ea5t : HIKSEMI\r\n Dung l\u01b0\u1ee3ng \u1ed5 c\u1ee9ng : 1TB\r\n Chu\u1ea9n k\u00edch c\u1ee1 :M.2 2280\r\n Giao ti\u1ebfp : NVMe PCIe Gen 3.0x4\r\n T\u1ed1c \u0111\u1ed9 \u0111\u1ecdc ghi t\u1ed1i \u0111a : 2450\/2450MB\/s', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28357-ssd-nvme-hiksemi-wave-512gb-hs-ssd-wavep-512g-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28357-ssd-nvme-hiksemi-wave-512gb-hs-ssd-wavep-512g-05.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28357-ssd-nvme-hiksemi-wave-512gb-hs-ssd-wavep-512g-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28357-ssd-nvme-hiksemi-wave-512gb-hs-ssd-wavep-512g-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28090-ssd-nvme-hiksemi-wave-512gb-hs-ssd-wavep-512g-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28090-ssd-nvme-hiksemi-wave-512gb-hs-ssd-wavep-512g-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28090-ssd-nvme-hiksemi-wave-512gb-hs-ssd-wavep-512g-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28090-ssd-nvme-hiksemi-wave-512gb-hs-ssd-wavep-512g-01.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-hiksemi-wave-1tb-m-2-2280-pcie-3-0', + brand: { + id: '211', + brand_index: 'hiksemi', + name: 'HIKSEMI', + image: '', + url: '\/brand\/hiksemi', + }, + visit: '302', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '559', + productSKU: 'SSD0000250', + 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: '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: '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', + }, + { + id: '3687', + catPath: ':3687:3476:284:0', + name: '\u1ed4 c\u1ee9ng HIKSEMI', + url: '\/o-cung-hiksemi', + }, + { + 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: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + ], + }, + '28547': { + id: '28547', + productId: '28547', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3400000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3400000', + normal_price: '3400000', + min_purchase: '1', + max_purchase: '489', + remain_quantity: '489', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-26 11:10:42', + warranty: '60 th\u00e1ng', + productName: '\u1ed4 C\u1ee9ng SSD AGI AI818 1TB M.2 NVMe PCIe Gen4 x4 (AGI1T0G43AI818)', + productSummary: + 'Dung l\u01b0\u1ee3ng: 1TB\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc tu\u1ea7n t\u1ef1: 5200MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi tu\u1ea7n t\u1ef1: 4700MB\/s\r\nChu\u1ea9n k\u1ebft n\u1ed1i: M.2 PCIe Gen 4\u00d74', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28547-ssd-agi-ai818-1tb-03.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28547-ssd-agi-ai818-1tb-03.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28547-ssd-agi-ai818-1tb-01.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28547-ssd-agi-ai818-1tb-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28547-ssd-agi-ai818-1tb-02.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28547-ssd-agi-ai818-1tb-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28547-ssd-agi-ai818-1tb-03.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28547-ssd-agi-ai818-1tb-03.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-agi-ai818-1tb-m2-nvme-pcie-gen4-x4-agi1t0g43ai818', + brand: { + id: '205', + brand_index: 'agi', + name: 'AGI', + image: '', + url: '\/brand\/agi', + }, + visit: '34', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '489', + productSKU: 'SSD0000228', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

V\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng 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\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng 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: '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: '48', + review_score: '4.7', + }, + 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: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + { + id: '3680', + catPath: ':3680:3476:284:0', + name: '\u00d4 c\u1ee9ng AGI', + url: '\/o-cung-agi', + }, + { + 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: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + ], + }, + '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', + }, + ], + }, + '28389': { + id: '28389', + productId: '28389', + priceUnit: 'chi\u1ebfc', + marketPrice: '3690000', + price: '2800000', + price_off: '24', + currency: 'vnd', + sale_rules: { + price: '2800000', + normal_price: '2800000', + min_purchase: '1', + max_purchase: '424', + remain_quantity: '424', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 17:07:28', + warranty: '36 th\u00e1ng', + productName: '\u1ed4 c\u1ee9ng SSD Kingmax Zeus PQ3480 1TB NVMe PCIe 3.0 x4 M.2 2280', + productSummary: + 'SSD KINGMAX Zeus PQ3480\r\nDung l\u01b0\u1ee3ng: 1TB\r\nK\u00edch th\u01b0\u1edbc: M.2 2280\r\nGiao ti\u1ebfp: NVMe PCIe\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc\/ghi (Up to): 240MB\/s(R) - 2100MB\/s (W)', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28389-ssd-kingmax-zeus-pq3480.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28389-ssd-kingmax-zeus-pq3480.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28389-ssd-kingmax-zeus-pq3480.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28389-ssd-kingmax-zeus-pq3480.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-kingmax-zeus-pq3480-1tb-nvme-pcie-30-x4-m2-2280', + brand: { + id: '0', + name: '', + image: '', + url: '', + }, + visit: '271', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '424', + productSKU: 'SSD0000259', + 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: '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: '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', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + id: '1382', + catPath: ':1382:3476:284:0', + name: '\u1ed4 c\u1ee9ng Kingmax', + url: '\/o-cung-kingmax', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + ], + }, + '28364': { + id: '28364', + productId: '28364', + priceUnit: 'chi\u1ebfc', + marketPrice: '1990000', + price: '1350000', + price_off: '32', + currency: 'vnd', + sale_rules: { + price: '1350000', + normal_price: '1350000', + min_purchase: '1', + max_purchase: '327', + remain_quantity: '327', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 16:51:58', + warranty: '36 th\u00e1ng', + productName: '\u1ed4 c\u1ee9ng SSD McQuest Raptor 512GB (M.2 2280, PCIe NVMe Gen3x4)', + productSummary: + 'Chu\u1ea9n giao ti\u1ebfp: PCIe Gen3 x4 NVMe\r\nDung l\u01b0\u1ee3ng l\u01b0u tr\u1eef: 512GB\r\nChu\u1ea9n k\u00edch c\u1ee1: M.2 2280\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc\/ghi ( t\u1ed1i \u0111a ): 2400MB\/s \/ 1600MB\/s', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28364-mcquest-raptor-512gb-02.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28364-mcquest-raptor-512gb-02.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28364-mcquest-raptor-512gb-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28364-mcquest-raptor-512gb-02.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-mcquest-raptor-512gb-m2-2280-pcie-nvme-gen3x4', + brand: { + id: '0', + name: '', + image: '', + url: '', + }, + visit: '250', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '327', + productSKU: 'SSD0000254', + 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: '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: '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', + }, + { + id: '3491', + catPath: ':3491:3477:284:0', + name: '512GB', + url: '\/512gb', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + ], + }, + '28557': { + id: '28557', + productId: '28557', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3500000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3500000', + normal_price: '3500000', + min_purchase: '1', + max_purchase: '299', + remain_quantity: '299', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-27 11:26:20', + warranty: '36 th\u00e1ng', + productName: + '\u1ed4 C\u1ee9ng SSD Colorful CN700 Pro 1TB M.2 2280 NVMe PCIe Gen4 x4 (\u0110\u1ecdc 7400MB\/s, Ghi 6600MB\/s)', + productSummary: + 'Dung l\u01b0\u1ee3ng: 1TB\r\nGiao di\u1ec7n: PCIe Gen4\u00d74\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc t\u1ed1i \u0111a: Up to 7400 MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi t\u1ed1i \u0111a: Up to 6600 MB\/s', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28557-ssd-colorful-cn700-pro-1tb-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28557-ssd-colorful-cn700-pro-1tb-03.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28557-ssd-colorful-cn700-pro-1tb-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28557-ssd-colorful-cn700-pro-1tb-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28557-ssd-colorful-cn700-pro-1tb-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28557-ssd-colorful-cn700-pro-1tb-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28557-ssd-colorful-cn700-pro-1tb-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28557-ssd-colorful-cn700-pro-1tb-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28557-ssd-colorful-cn700-pro-1tb-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28557-ssd-colorful-cn700-pro-1tb-04.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-colorful-cn700-pro-1tb', + brand: { + id: '13', + brand_index: 'colorful', + name: 'COLORFUL', + image: '', + url: '\/brand\/colorful', + }, + visit: '35', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '299', + productSKU: 'SSD0000291', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

V\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng 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\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng 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: '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: '54', + review_score: '4.8', + }, + 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: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + { + id: '451', + catPath: ':451:3476:284:0', + name: '\u1ed4 c\u1ee9ng Colorful', + url: '\/o-cung-colorful', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + 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', + }, + ], + }, + '28208': { + id: '28208', + productId: '28208', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3500000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3500000', + normal_price: '3500000', + min_purchase: '1', + max_purchase: '291', + remain_quantity: '291', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-13 14:11:03', + warranty: '60 th\u00e1ng', + productName: '\u1ed4 c\u1ee9ng SSD WD Blue SN5000 1TB NVMe PCIe Gen4 x4 (WDS100T4B0E)', + productSummary: + 'Dung l\u01b0\u1ee3ng \u1ed5 c\u1ee9ng: 1 TB\r\nForm Factor: M.2 2280\r\nChu\u1ea9n k\u1ebft n\u1ed1i: PCIe Gen 4.0 x4 NVMe\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc tu\u1ea7n t\u1ef1: 5150 MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi tu\u1ea7n t\u1ef1: 4900 MB\/s\r\n\u0110\u1ed9 b\u1ec1n (TBW): 600 TB', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28208-ssd-wd-blue-sn5000-1tb-nvme-pcie-gen4-wds100t4b0e-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28208-ssd-wd-blue-sn5000-1tb-nvme-pcie-gen4-wds100t4b0e-01.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28208-ssd-wd-blue-sn5000-1tb-nvme-pcie-gen4-wds100t4b0e-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28208-ssd-wd-blue-sn5000-1tb-nvme-pcie-gen4-wds100t4b0e-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28208-ssd-wd-blue-sn5000-1tb-nvme-pcie-gen4-wds100t4b0e-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28208-ssd-wd-blue-sn5000-1tb-nvme-pcie-gen4-wds100t4b0e-02.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-wd-blue-sn5000-1tb-nvme-pcie-gen4-x4-wds100t4b0e', + brand: { + id: '14', + brand_index: 'western-digital', + name: 'WESTERN DIGITAL', + image: '', + url: '\/brand\/western-digital', + }, + visit: '670', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '291', + productSKU: 'SSD0000192', + 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: '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: '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', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + id: '452', + catPath: ':452:3476:284:0', + name: '\u1ed4 c\u1ee9ng Western digital', + url: '\/o-cung-western-digital', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + ], + }, + '28405': { + id: '28405', + productId: '28405', + priceUnit: 'chi\u1ebfc', + marketPrice: '3690000', + price: '2800000', + price_off: '24', + currency: 'vnd', + sale_rules: { + price: '2800000', + normal_price: '2800000', + min_purchase: '1', + max_purchase: '285', + remain_quantity: '285', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 17:06:55', + warranty: '36 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD ADATA Legend 710 1TB M.2 NVMe PCIe 3.0 x4 (\u0110\u1ecdc 2400MB\/s - Ghi 1800MB\/s)', + productSummary: + 'Dung l\u01b0\u1ee3ng: 1TB\r\nK\u00edch th\u01b0\u1edbc: M.2 2280 ( c\u00f3 t\u1ea3n nhi\u1ec7t )\r\nGiao di\u1ec7n: PCIe Gen3x4\r\nNAND Flash: 3D NAND\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc\/ghi t\u1ed1i \u0111a: 2400\/1800 MB\/s', + package_accessory: '0', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28405-', + large: 'https://nguyencongpc.vn\/media\/product\/250-28405-', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28405-', + large: 'https://nguyencongpc.vn\/media\/product\/250-28405-', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28405-ssd-adata-legend-710-1tb-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28405-ssd-adata-legend-710-1tb-01.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-adata-legend-710-1tb', + brand: { + id: '17', + brand_index: 'adata', + name: 'ADATA', + image: '', + url: '\/brand\/adata', + }, + visit: '214', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '285', + productSKU: 'SSD0000271', + 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: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '45', + review_score: '4.5', + }, + 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: '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: '455', + catPath: ':455:3476:284:0', + name: '\u1ed4 c\u1ee9ng Adata', + url: '\/o-cung-adata', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + ], + }, + '27527': { + id: '27527', + productId: '27527', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3990000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3990000', + normal_price: '3990000', + min_purchase: '1', + max_purchase: '271', + remain_quantity: '271', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-13 14:15:08', + warranty: '60 Th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD Samsung 990 EVO Plus 1TB M.2 NVMe M.2 2280 PCIe Gen4.0 x4\/5.0 x2', + productSummary: + 'Dung l\u01b0\u1ee3ng \u1ed5 c\u1ee9ng: 1 TB\r\nForm Factor: M.2 2280\r\nChu\u1ea9n k\u1ebft n\u1ed1i: PCIe Gen 4.0 x4 NVMe, PCIe Gen 5.0 x2 NVMe\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc tu\u1ea7n t\u1ef1: Up to 7150 MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi tu\u1ea7n t\u1ef1: Up to 6300 MB\/s\r\n\u0110\u1ed9 b\u1ec1n (TBW): 600 TB', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27527-ssd-samsung-990-evo-plus-1tb-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27527-ssd-samsung-990-evo-plus-1tb-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27527-ssd-samsung-990-evo-plus-1tb-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27527-ssd-samsung-990-evo-plus-1tb-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27527-ssd-samsung-990-evo-plus-1tb-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27527-ssd-samsung-990-evo-plus-1tb-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27527-ssd-samsung-990-evo-plus-1tb-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27527-ssd-samsung-990-evo-plus-1tb-3.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-samsung-990-evo-plus-1tb', + brand: { + id: '7', + brand_index: 'samsung', + name: 'Samsung', + image: '', + url: '\/brand\/samsung', + }, + visit: '4079', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '271', + productSKU: 'SSD0000206', + 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: '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: '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: '457', + catPath: ':457:3476:284:0', + name: '\u1ed4 c\u1ee9ng Samsung', + url: '\/o-cung-sam-sung', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + { + id: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + ], + }, + '28549': { + id: '28549', + productId: '28549', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3500000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3500000', + normal_price: '3500000', + min_purchase: '1', + max_purchase: '260', + remain_quantity: '260', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-26 14:24:12', + warranty: '36 th\u00e1ng', + productName: + '\u1ed4 C\u1ee9ng SSD GIGABYTE Gen4 4000E 1TB M.2 NVMe PCIe Gen4 x4 (4000MB\/s | 3900MB\/s)', + productSummary: + 'Th\u01b0\u01a1ng hi\u1ec7u: GIGABYTE\r\nDung l\u01b0\u1ee3ng: 1TB\r\nGiao di\u1ec7n: PCIe Gen4\u00d74, NVMe 2.0\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc t\u1ed1i \u0111a: Up to 4000 MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi t\u1ed1i \u0111a: Up to 3900MB\/s', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28549-gigabyte-gen4-4000e-ssd-1tb_05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28549-gigabyte-gen4-4000e-ssd-1tb_05.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28549-gigabyte-gen4-4000e-ssd-1tb_05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28549-gigabyte-gen4-4000e-ssd-1tb_05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28549-gigabyte-gen4-4000e-ssd-1tb_04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28549-gigabyte-gen4-4000e-ssd-1tb_04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28549-gigabyte-gen4-4000e-ssd-1tb_01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28549-gigabyte-gen4-4000e-ssd-1tb_01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28549-gigabyte-gen4-4000e-ssd-1tb_02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28549-gigabyte-gen4-4000e-ssd-1tb_02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28549-gigabyte-gen4-4000e-ssd-1tb_03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28549-gigabyte-gen4-4000e-ssd-1tb_03.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-gigabyte-gen4-4000e-1tb', + brand: { + id: '2', + brand_index: 'gigabyte', + name: 'Gigabyte', + image: '', + url: '\/brand\/gigabyte', + }, + visit: '21', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '260', + productSKU: 'SSD0000256', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

V\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng 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\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng 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: '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: '51', + review_score: '4.8', + buy_count: '', + }, + 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: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + { + id: '3249', + catPath: ':3249:3476:284:0', + name: '\u1ed4 c\u1ee9ng Gigabyte', + url: '\/gigabyte', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + 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', + }, + ], + }, + '28306': { + id: '28306', + productId: '28306', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '1700000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '1700000', + normal_price: '1700000', + min_purchase: '1', + max_purchase: '249', + remain_quantity: '249', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-13 13:58:58', + warranty: '36 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD Crucial E100 480GB M.2 PCIe Gen4 x4 NVMe (CT480E100SSD8)', + productSummary: + 'Dung l\u01b0\u1ee3ng \u1ed5 c\u1ee9ng: 480 GB\r\nForm Factor: M.2 2280\r\nChu\u1ea9n k\u1ebft n\u1ed1i: PCIe Gen 4.0 x4 NVMe\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc tu\u1ea7n t\u1ef1: 4700 MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi tu\u1ea7n t\u1ef1: 2500 MB\/s\r\n\u0110\u1ed9 b\u1ec1n (TBW): 60TB', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28306-crucial-e100-480gb-12.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28306-crucial-e100-480gb-12.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28306-crucial-e100-480gb-11.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28306-crucial-e100-480gb-11.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28306-crucial-e100-480gb-14.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28306-crucial-e100-480gb-14.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28306-crucial-e100-480gb-13.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28306-crucial-e100-480gb-13.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28306-crucial-e100-480gb-12.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28306-crucial-e100-480gb-12.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-crucial-e100-480gb-m2-pcie-gen4-x4-nvme-ct480e100ssd8', + brand: { + id: '18', + brand_index: 'crucial', + name: 'CRUCIAL', + image: '', + url: '\/brand\/crucial', + }, + visit: '231', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '249', + productSKU: 'SSD0000244', + 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: '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: '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', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3489', + catPath: ':3489:3477:284:0', + name: '480GB', + url: '\/480gb', + }, + ], + }, + '28544': { + id: '28544', + productId: '28544', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3200000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3200000', + normal_price: '3200000', + min_purchase: '1', + max_purchase: '215', + remain_quantity: '215', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-25 17:22:27', + warranty: '36 th\u00e1ng', + productName: + '\u1ed4 C\u1ee9ng SSD McQuest Raptor X 1TB M.2 NVMe PCIe Gen4 x4 (5000MB\/s | 4700MB\/s)', + productSummary: + 'Chu\u1ea9n giao ti\u1ebfp: PCIe Gen4 x4 NVMe\r\nDung l\u01b0\u1ee3ng l\u01b0u tr\u1eef: 1TB\r\nChu\u1ea9n k\u00edch c\u1ee1: M.2 2280\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc\/ghi ( t\u1ed1i \u0111a ): 5000MB\/s \/ 4700MB\/s', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28544-ssd-mcquest-raptor-x-1tb-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28544-ssd-mcquest-raptor-x-1tb-01.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28544-ssd-mcquest-raptor-x-1tb.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28544-ssd-mcquest-raptor-x-1tb.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28544-ssd-mcquest-raptor-x-1tb-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28544-ssd-mcquest-raptor-x-1tb-01.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-mcquest-raptor-x-1tb', + brand: { + id: '0', + name: '', + image: '', + url: '', + }, + visit: '44', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '215', + productSKU: 'SSD0000278', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

V\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng 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\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng 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: '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: '65', + review_score: '4.7', + }, + 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: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + ], + }, + '28508': { + id: '28508', + productId: '28508', + priceUnit: 'chi\u1ebfc', + marketPrice: '1990000', + price: '1350000', + price_off: '32', + currency: 'vnd', + sale_rules: { + price: '1350000', + normal_price: '1350000', + min_purchase: '1', + max_purchase: '174', + remain_quantity: '174', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-18 11:38:44', + warranty: '60 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD DAHUA C910N 512GB M.2 NVMe PCIe Gen 3.0 x4 (DHI-SSD-C910N512G)', + productSummary: + 'T\u00ean s\u1ea3n ph\u1ea9m: SSD DAHUA C910N 512GB\r\nDung l\u01b0\u1ee3ng: 512GB\r\nChu\u1ea9n: M.2 2280\r\nGiao ti\u1ebfp: PCIe Gen 3.0 x4', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28508-ssd-dahua-c910n-512gb-11.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28508-ssd-dahua-c910n-512gb-11.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28508-ssd-dahua-c910n-512gb-11.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28508-ssd-dahua-c910n-512gb-11.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-dahua-c910n-512gb-c910n512g', + brand: { + id: '159', + brand_index: 'dahua', + name: 'DAHUA', + image: '', + url: '\/brand\/dahua', + }, + visit: '187', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '174', + productSKU: 'SSD0000296', + 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: '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: '56', + review_score: '4.6', + buy_count: '', + }, + 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: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3491', + catPath: ':3491:3477:284:0', + name: '512GB', + url: '\/512gb', + }, + ], + }, + '28548': { + id: '28548', + productId: '28548', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3400000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3400000', + normal_price: '3400000', + min_purchase: '1', + max_purchase: '165', + remain_quantity: '165', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-26 11:44:51', + warranty: '36 th\u00e1ng', + productName: + '\u1ed4 C\u1ee9ng SSD Lexar NQ700 1TB M.2 2280 NVMe PCIe Gen4 x4 (LNQ700X001T-RNNNG)', + productSummary: + 'Th\u01b0\u01a1ng hi\u1ec7u: Lexar\r\nDung l\u01b0\u1ee3ng: 1TB\r\nGiao di\u1ec7n: PCIe Gen4\u00d74\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc t\u1ed1i \u0111a: Up to 4200MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi t\u1ed1i \u0111a: Up to 2100MB\/s', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28548-ssd-lexar-nq700-1tb-01.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28548-ssd-lexar-nq700-1tb-01.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28548-ssd-lexar-nq700-1tb-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28548-ssd-lexar-nq700-1tb-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28548-ssd-lexar-nq700-1tb-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28548-ssd-lexar-nq700-1tb-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28548-ssd-lexar-nq700-1tb-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28548-ssd-lexar-nq700-1tb-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28548-ssd-lexar-nq700-1tb-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28548-ssd-lexar-nq700-1tb-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28548-ssd-lexar-nq700-1tb-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28548-ssd-lexar-nq700-1tb-05.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-lexar-nq700-1tb', + brand: { + id: '96', + brand_index: 'lexar', + name: 'LEXAR', + image: '', + url: '\/brand\/lexar', + }, + visit: '50', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '165', + productSKU: 'SSD0000285', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

V\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng 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\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng 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: '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: '48', + review_score: '4.8', + buy_count: '', + }, + 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: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + { + id: '3690', + catPath: ':3690:3476:284:0', + name: '\u1ed4 c\u1ee9ng Lexar', + url: '\/o-cung-lexar', + }, + { + 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: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + ], + }, + '28367': { + id: '28367', + productId: '28367', + priceUnit: 'chi\u1ebfc', + marketPrice: '3890000', + price: '3500000', + price_off: '10', + currency: 'vnd', + sale_rules: { + price: '3500000', + normal_price: '3500000', + min_purchase: '1', + max_purchase: '159', + remain_quantity: '159', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-24 10:38:03', + warranty: '60 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD ADATA LEGEND 860 1TB M.2 2280 PCIe Gen4x4 (\u0110\u1ecdc 6000MB\/s, Ghi 5000MB\/s)', + productSummary: + 'Th\u01b0\u01a1ng hi\u1ec7u: ADATA\r\nM\u00e3 s\u1ea3n ph\u1ea9m: SLEG-860-500GCS\r\nDung l\u01b0\u1ee3ng: 1TB\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc \u2013 ghi: 6,000MB\/s \u2013 5,000MB\/s\r\nGiao ti\u1ebfp: PCIe Gen4 x4', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28367-ssd-adata-legend-860-1tb-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28367-ssd-adata-legend-860-1tb-02.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28367-ssd-adata-legend-860-1tb-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28367-ssd-adata-legend-860-1tb-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28367-ssd-adata-legend-860-1tb-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28367-ssd-adata-legend-860-1tb-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28367-ssd-adata-legend-860-1tb-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28367-ssd-adata-legend-860-1tb-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28367-ssd-adata-legend-860-1tb-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28367-ssd-adata-legend-860-1tb-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28367-ssd-adata-legend-860-1tb-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28367-ssd-adata-legend-860-1tb-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28367-ssd-adata-legend-860-1tb-06.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28367-ssd-adata-legend-860-1tb-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28367-ssd-adata-legend-860-1tb-07.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28367-ssd-adata-legend-860-1tb-07.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-adata-legend-860-1tb', + brand: { + id: '17', + brand_index: 'adata', + name: 'ADATA', + image: '', + url: '\/brand\/adata', + }, + visit: '168', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '159', + productSKU: 'SSD0000262', + 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: '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: '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', + }, + { + id: '455', + catPath: ':455:3476:284:0', + name: '\u1ed4 c\u1ee9ng Adata', + url: '\/o-cung-adata', + }, + { + id: '3476', + catPath: ':3476:284:0', + name: 'CH\u1eccN THEO H\u00c3NG', + url: '\/chon-theo-hang', + }, + { + 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', + }, + ], + }, + '28527': { + id: '28527', + productId: '28527', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '1890000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '1890000', + normal_price: '1890000', + min_purchase: '1', + max_purchase: '149', + remain_quantity: '149', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-24 15:20:24', + warranty: '60 th\u00e1ng', + productName: '\u1ed4 c\u1ee9ng SSD WD Blue SN5100 500GB NVMe PCIe 4.0 x4 (WDS500G5B0E)', + productSummary: + 'Dung l\u01b0\u1ee3ng \u1ed5 c\u1ee9ng: 500GB\r\nForm Factor: M.2 2280\r\nChu\u1ea9n k\u1ebft n\u1ed1i: PCIe Gen 4.0 x4 NVMe\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc tu\u1ea7n t\u1ef1: 6600MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi tu\u1ea7n t\u1ef1: 5600MB\/s\r\n\u0110\u1ed9 b\u1ec1n (TBW): 300 TB', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28527-wd-blue-sn5100-nvme-ssd-500gb-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28527-wd-blue-sn5100-nvme-ssd-500gb-2.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28527-wd-blue-sn5100-nvme-ssd-500gb-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28527-wd-blue-sn5100-nvme-ssd-500gb-2.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-wd-blue-sn5100-500gb-wds500g5b0e', + brand: { + id: '14', + brand_index: 'western-digital', + name: 'WESTERN DIGITAL', + image: '', + url: '\/brand\/western-digital', + }, + visit: '174', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '149', + productSKU: 'SSD0000276', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + other: [ + { + id: '0', + title: + '

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

V\u00ec ngu\u1ed3n cung khan hi\u1ebfm NCPC ch\u1ec9 b\u00e1n l\u1ebb t\u1ed1i \u0111a 4 SP \/ 1 \u0111\u01a1n h\u00e0ng \/ 1 kh\u00e1ch h\u00e0ng. Mong qu\u00fd kh\u00e1ch th\u00f4ng c\u1ea3m.<\/span><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + pixel_code: '', + review_count: '56', + review_score: '4.9', + }, + 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: '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: '452', + catPath: ':452:3476:284:0', + name: '\u1ed4 c\u1ee9ng Western digital', + url: '\/o-cung-western-digital', + }, + { + 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', + }, + ], + }, + '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: '11323', + 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', + }, + ], + }, + '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', + }, + ], + }, + '28451': { + id: '28451', + productId: '28451', + priceUnit: 'chi\u1ebfc', + marketPrice: '2990000', + price: '1850000', + price_off: '38', + currency: 'vnd', + sale_rules: { + price: '1850000', + normal_price: '1850000', + min_purchase: '1', + max_purchase: '138', + remain_quantity: '138', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-03 17:44:03', + warranty: '60 th\u00e1ng', + productName: 'Ngu\u1ed3n Segotep GN850W ATX 3.1 (80 Plus Gold, Non Modular, PCIE 5.1)', + productSummary: + 'Segotep GN850W ATX 3.1 PCIE 5.1\r\nC\u00f4ng su\u1ea5t: 850W\r\nCh\u1ee9ng nh\u1eadn: 80 Plus Gold\r\nM\u00f4-\u0111un: Non-modular\r\nPFC: Active PFC', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28451-segotep-gn850w-atx-3-1-non-modular-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28451-segotep-gn850w-atx-3-1-non-modular-01.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28451-segotep-gn850w-atx-3-1-non-modular-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28451-segotep-gn850w-atx-3-1-non-modular-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28451-segotep-gn850w-atx-3-1-non-modular-06.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28451-segotep-gn850w-atx-3-1-non-modular-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28451-segotep-gn850w-atx-3-1-non-modular-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28451-segotep-gn850w-atx-3-1-non-modular-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28451-segotep-gn850w-atx-3-1-non-modular-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28451-segotep-gn850w-atx-3-1-non-modular-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28451-segotep-gn850w-atx-3-1-non-modular-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28451-segotep-gn850w-atx-3-1-non-modular-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28451-segotep-gn850w-atx-3-1-non-modular-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28451-segotep-gn850w-atx-3-1-non-modular-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28451-segotep-gn850w-atx-3-1-non-modular-07.jpeg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28451-segotep-gn850w-atx-3-1-non-modular-07.jpeg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-segotep-gn850w-atx-31-80-plus-gold-non-modular', + brand: { + id: '142', + brand_index: 'segotep', + name: 'SEGOTEP', + image: '', + url: '\/brand\/segotep', + }, + visit: '288', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '138', + productSKU: 'PSU0000213', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + pixel_code: '', + review_count: '55', + review_score: '4.5', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '3633', + catPath: ':3633:282:3431:0', + name: 'Ngu\u1ed3n Segotep', + url: '\/nguon-segotep', + }, + ], + }, + '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: '135', + remain_quantity: '135', + 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: '6881', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '135', + 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', + }, + ], + }, + '28553': { + id: '28553', + productId: '28553', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '3600000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '3600000', + normal_price: '3600000', + min_purchase: '1', + max_purchase: '120', + remain_quantity: '120', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-26 15:41:40', + warranty: '60 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD WD Blue SN5100 1TB NVMe PCIe 4.0 x4 (WDS100T5B0E-00CPE0)', + productSummary: + 'Dung l\u01b0\u1ee3ng: 1TB\r\nGiao di\u1ec7n: PCIe Gen4\u00d74\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc t\u1ed1i \u0111a: Up to 7100MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi t\u1ed1i \u0111a: Up to 6700MB\/s', + package_accessory: '0', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28553-ssd-wd-blue-sn5100-1tb-01.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28553-ssd-wd-blue-sn5100-1tb-01.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28553-ssd-wd-blue-sn5100-1tb-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28553-ssd-wd-blue-sn5100-1tb-01.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-wd-blue-sn5100-1tb', + brand: { + id: '14', + brand_index: 'western-digital', + name: 'WESTERN DIGITAL', + image: '', + url: '\/brand\/western-digital', + }, + visit: '38', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '120', + productSKU: 'SSD0000290', + 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><\/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><\/p>', + type: '', + thumbnail: '', + cash_value: '0', + quantity: '1', + from_time: '', + to_time: '', + url: '', + description: '', + status: '1', + }, + ], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '53', + review_score: '4.9', + }, + 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: '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: '452', + catPath: ':452:3476:284:0', + name: '\u1ed4 c\u1ee9ng Western digital', + url: '\/o-cung-western-digital', + }, + { + id: '3477', + catPath: ':3477:284:0', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: '\/chon-theo-dung-luong', + }, + { + id: '3492', + catPath: ':3492:3477:284:0', + name: '1TB', + url: '\/1tb', + }, + ], + }, + '27926': { + id: '27926', + productId: '27926', + priceUnit: 'chi\u1ebfc', + marketPrice: '0', + price: '880000', + price_off: '', + currency: 'vnd', + sale_rules: { + price: '880000', + normal_price: '880000', + min_purchase: '1', + max_purchase: '116', + remain_quantity: '116', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 16:49:41', + warranty: '60 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD OCPC MFL-300 256GB M.2 NVMe PCIe Gen3 x4 (SSDM2PCIEF256G)', + productSummary: + 'Th\u01b0\u01a1ng hi\u1ec7u: OCPC\r\nDung l\u01b0\u1ee3ng: 256GB\r\nD\u1ea1ng: M.2\r\nGiao di\u1ec7n: NVMe PCIe Gen3 x4\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc t\u1ed1i \u0111a: 3100MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi t\u1ed1i \u0111a: 1800MB\/s', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-27926-ssd-ocpc-mfl-300-256gb-1.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-27926-ssd-ocpc-mfl-300-256gb-1.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27926-ssd-ocpc-mfl-300-256gb-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27926-ssd-ocpc-mfl-300-256gb-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27926-ssd-ocpc-mfl-300-256gb-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27926-ssd-ocpc-mfl-300-256gb-2.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-nvme-gen-3x4-mfl-300-256gb-ssdm2pcief256g', + brand: { + id: '170', + brand_index: 'ocpc', + name: 'OCPC', + image: '', + url: '\/brand\/ocpc', + }, + visit: '764', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '116', + productSKU: 'SSD0000218', + 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: '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: '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', + }, + { + 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: '3488', + catPath: ':3488:3477:284:0', + name: '256GB', + url: '\/256gb', + }, + ], + }, + '28384': { + id: '28384', + productId: '28384', + priceUnit: 'chi\u1ebfc', + marketPrice: '1590000', + price: '950000', + price_off: '40', + currency: 'vnd', + sale_rules: { + price: '950000', + normal_price: '950000', + min_purchase: '1', + max_purchase: '114', + remain_quantity: '114', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-22 16:50:09', + warranty: '36 th\u00e1ng', + productName: + '\u1ed4 c\u1ee9ng SSD Gigabyte NVMe V2 256GB PCIe 3.0 x4 M.2 2280 (G3NVMEV2256G, \u0110\u1ecdc 3200MB\/s, Ghi 1200MB\/s)', + productSummary: + 'Dung l\u01b0\u1ee3ng: 256GB\r\nT\u1ed1c \u0111\u1ed9 \u0111\u1ecdc (SSD): 3200MB\/s\r\nT\u1ed1c \u0111\u1ed9 ghi (SSD): 1200MB\/s\r\nChu\u1ea9n giao ti\u1ebfp: NVMe PCIe\r\nK\u00edch th\u01b0\u1edbc: Gen3x4 M2.2280', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28384-ssd-gigabyte-nvme-v2-256gb-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28384-ssd-gigabyte-nvme-v2-256gb-04.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28384-ssd-gigabyte-nvme-v2-256gb-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28384-ssd-gigabyte-nvme-v2-256gb-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28384-ssd-gigabyte-nvme-v2-256gb-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28384-ssd-gigabyte-nvme-v2-256gb-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28384-ssd-gigabyte-nvme-v2-256gb-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28384-ssd-gigabyte-nvme-v2-256gb-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28384-ssd-gigabyte-nvme-v2-256gb-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28384-ssd-gigabyte-nvme-v2-256gb-04.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/o-cung-ssd-gigabyte-nvme-v2-256gb-g3nvmev2256g', + brand: { + id: '2', + brand_index: 'gigabyte', + name: 'Gigabyte', + image: '', + url: '\/brand\/gigabyte', + }, + visit: '446', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '114', + productSKU: 'SSD0000266', + 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: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + pixel_code: '', + review_count: '42', + review_score: '8.3', + }, + 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: '3644', + catPath: ':3644:284:0', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: '\/o-cung-ssd-2', + }, + { + id: '3249', + catPath: ':3249:3476:284:0', + name: '\u1ed4 c\u1ee9ng Gigabyte', + url: '\/gigabyte', + }, + { + 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: '3488', + catPath: ':3488:3477:284:0', + name: '256GB', + url: '\/256gb', + }, + ], + }, + '27377': { + id: '27377', + productId: '27377', + priceUnit: 'chi\u1ebfc', + marketPrice: '1990000', + price: '1290000', + price_off: '35', + currency: 'vnd', + sale_rules: { + price: '1290000', + normal_price: '1290000', + min_purchase: '1', + max_purchase: '112', + remain_quantity: '112', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-09-25 16:38:29', + warranty: '60 Th\u00e1ng', + productName: 'Ngu\u1ed3n M\u00e1y T\u00ednh OCPC ENERGIA BZ750 750W 80+ BRONZE', + productSummary: + 'C\u00f4ng su\u1ea5t ngu\u1ed3n: 750W\r\nK\u00edch th\u01b0\u1edbc Fan: 120mm\r\nTi\u00eau chu\u1ea9n: 80 Bronze\r\nThi\u1ebft k\u1ebf d\u00e2y: No-Modular', + package_accessory: '', + productImage: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-80-5.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-80-5.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-80-5.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-80-5.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-1.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-2.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-2.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-3.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze-3.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-80-.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-80-.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-27377-ocpc-energia-bz750-750w-80-1.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-27377-ocpc-energia-bz750-750w-80-1.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-may-tinh-ocpc-energia-bz750-750w-80-bronze', + brand: { + id: '170', + brand_index: 'ocpc', + name: 'OCPC', + image: '', + url: '\/brand\/ocpc', + }, + visit: '2545', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '112', + productSKU: 'PSU0000170', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + buy_count: '', + }, + 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: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3720', + catPath: ':3720:282:3431:0', + name: 'Ngu\u1ed3n OCPC', + url: '\/nguon-ocpc', + }, + ], + }, + '28501': { + id: '28501', + productId: '28501', + priceUnit: 'chi\u1ebfc', + marketPrice: '2990000', + price: '2490000', + price_off: '17', + currency: 'vnd', + sale_rules: { + price: '2490000', + normal_price: '2490000', + min_purchase: '1', + max_purchase: '106', + remain_quantity: '106', + from_time: '0', + to_time: '0', + type: '', + }, + lastUpdate: '2025-12-17 14:44:00', + warranty: '60 th\u00e1ng', + productName: 'Ngu\u1ed3n ANTEC 1000W CSK PRO EC (ATX 3.1, PCIE 5.1)', + productSummary: + 'C\u00f4ng su\u1ea5t: 1000W\r\n\u0110i\u1ec7n \u00e1p \u0111\u1ea7u v\u00e0o: 200-240 VAC, 6A Max, 50Hz\r\nTh\u00f4ng s\u1ed1 qu\u1ea1t: 120mm Silence Fan\r\nSemi Modul', + package_accessory: '', + productImage: { + small: 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-02.jpg', + large: 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-02.jpg', + original: '', + }, + imageCollection: [ + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-02.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-02.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-01.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-01.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-03.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-03.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-04.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-04.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-05.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-05.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-06.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-06.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-07.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-07.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-08.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-08.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-09.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-09.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-010.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-010.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-011.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-011.jpg', + original: '', + }, + alt: '', + }, + { + image: { + small: + 'https://nguyencongpc.vn\/media\/product\/75-28501-antec-1000w-csk-pro-ec-012.jpg', + large: + 'https://nguyencongpc.vn\/media\/product\/250-28501-antec-1000w-csk-pro-ec-012.jpg', + original: '', + }, + alt: '', + }, + ], + productUrl: '\/nguon-antec-1000w-csk-pro-ec-atx-31-pcie-51', + brand: { + id: '23', + brand_index: 'antec', + name: 'ANTEC', + image: '', + url: '\/brand\/antec', + }, + visit: '100', + rating: '0', + reviewCount: '0', + review: { + rate: '0', + total: '0', + }, + comment: { + rate: '0', + total: '0', + }, + quantity: '106', + productSKU: 'PSU0000217', + productModel: '', + hasVAT: '0', + condition: 'M\u1edbi', + config_count: '0', + configurable: '0', + component_count: '0', + specialOffer: { + all: [], + }, + specialOfferGroup: [], + productType: { + isNew: '0', + isHot: '0', + isBestSale: '0', + isSaleOff: '0', + 'online-only': '0', + }, + bulk_price: [], + thum_poster: '0', + thum_poster_type: '', + addon: [], + variants: [], + variant_option: [], + extend: { + pixel_code: '', + review_count: '64', + review_score: '4.7', + }, + weight: '0', + promotion_price: '', + deal_list: [], + pricing_traces: [], + categories: [ + { + id: '282', + catPath: ':282:3431:0', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: '\/psu-nguon-may-tinh', + }, + { + id: '3431', + catPath: ':3431:0', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: '\/linh-kien-may-tinh', + }, + { + id: '649', + catPath: ':649:282:3431:0', + name: 'Ngu\u1ed3n Antec', + url: '\/psu-antec', + }, + ], + }, + }, + price_filter_list: [ + { + count: '36', + is_selected: '0', + name: 'D\u01b0\u1edbi 1 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=duoi-1trieu&q=pc', + }, + { + count: '113', + is_selected: '0', + name: '1 tri\u1ec7u - 5 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=1trieu-5trieu&q=pc', + }, + { + count: '28', + is_selected: '0', + name: '5 tri\u1ec7u - 10 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=5trieu-10trieu&q=pc', + }, + { + count: '23', + is_selected: '0', + name: '10 tri\u1ec7u - 20 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=10trieu-20trieu&q=pc', + }, + { + count: '28', + is_selected: '0', + name: '20 tri\u1ec7u - 40 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=20trieu-40trieu&q=pc', + }, + { + count: '68', + is_selected: '0', + name: 'Tr\u00ean 40 tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?p=tren-40trieu&q=pc', + }, + ], + category_collection: [ + { + id: '194', + name: 'S\u1ea3n ph\u1ea9m khuy\u1ebfn m\u1ea1i', + url: 'https:\/\/nguyencongpc.vn\/tim?category=194&q=pc', + count: '4', + is_selected: '', + category_url: '\/san-pham-khuyen-mai', + }, + { + id: '277', + name: 'CPU - B\u1ed9 vi x\u1eed l\u00fd', + url: 'https:\/\/nguyencongpc.vn\/tim?category=277&q=pc', + count: '40', + is_selected: '', + category_url: '\/cpu-bo-vi-xu-ly', + }, + { + id: '279', + name: 'VGA - Card M\u00e0n H\u00ecnh', + url: 'https:\/\/nguyencongpc.vn\/tim?category=279&q=pc', + count: '2', + is_selected: '', + category_url: '\/vga-card-man-hinh', + }, + { + id: '280', + name: 'Case - V\u1ecf m\u00e1y t\u00ednh', + url: 'https:\/\/nguyencongpc.vn\/tim?category=280&q=pc', + count: '1', + is_selected: '', + category_url: '\/case-vo-may-tinh', + }, + { + id: '282', + name: 'PSU - Ngu\u1ed3n m\u00e1y t\u00ednh', + url: 'https:\/\/nguyencongpc.vn\/tim?category=282&q=pc', + count: '27', + is_selected: '', + category_url: '\/psu-nguon-may-tinh', + }, + { + id: '283', + name: 'Ram - B\u1ed9 nh\u1edb trong', + url: 'https:\/\/nguyencongpc.vn\/tim?category=283&q=pc', + count: '11', + is_selected: '', + category_url: '\/ram', + }, + { + id: '284', + name: 'THI\u1ebeT B\u1eca L\u01afU TR\u1eee', + url: 'https:\/\/nguyencongpc.vn\/tim?category=284&q=pc', + count: '74', + is_selected: '', + category_url: '\/o-cung-hdd-ssd', + }, + { + id: '407', + name: 'LAPTOP', + url: 'https:\/\/nguyencongpc.vn\/tim?category=407&q=pc', + count: '4', + is_selected: '', + category_url: '\/laptop', + }, + { + id: '408', + name: 'PC \u0110\u1ed2 HO\u1ea0 - L\u00c0M VI\u1ec6C', + url: 'https:\/\/nguyencongpc.vn\/tim?category=408&q=pc', + count: '53', + is_selected: '', + category_url: '\/pc-workstation', + }, + { + id: '451', + name: '\u1ed4 c\u1ee9ng Colorful', + url: 'https:\/\/nguyencongpc.vn\/tim?category=451&q=pc', + count: '1', + is_selected: '', + category_url: '\/o-cung-colorful', + }, + { + id: '452', + name: '\u1ed4 c\u1ee9ng Western digital', + url: 'https:\/\/nguyencongpc.vn\/tim?category=452&q=pc', + count: '7', + is_selected: '', + category_url: '\/o-cung-western-digital', + }, + { + id: '455', + name: '\u1ed4 c\u1ee9ng Adata', + url: 'https:\/\/nguyencongpc.vn\/tim?category=455&q=pc', + count: '8', + is_selected: '', + category_url: '\/o-cung-adata', + }, + { + id: '456', + name: '\u1ed4 c\u1ee9ng Apacer', + url: 'https:\/\/nguyencongpc.vn\/tim?category=456&q=pc', + count: '1', + is_selected: '', + category_url: '\/o-cung-apacer', + }, + { + id: '457', + name: '\u1ed4 c\u1ee9ng Samsung', + url: 'https:\/\/nguyencongpc.vn\/tim?category=457&q=pc', + count: '13', + is_selected: '', + category_url: '\/o-cung-sam-sung', + }, + { + id: '458', + name: '\u1ed4 c\u1ee9ng Kingston', + url: 'https:\/\/nguyencongpc.vn\/tim?category=458&q=pc', + count: '6', + is_selected: '', + category_url: '\/o-cung-kingston', + }, + { + id: '460', + name: 'Laptop Lenovo', + url: 'https:\/\/nguyencongpc.vn\/tim?category=460&q=pc', + count: '2', + is_selected: '', + category_url: '\/laptop-lenovo', + }, + { + id: '462', + name: 'Laptop Dell', + url: 'https:\/\/nguyencongpc.vn\/tim?category=462&q=pc', + count: '2', + is_selected: '', + category_url: '\/laptop-dell', + }, + { + id: '484', + name: 'RAM Adata', + url: 'https:\/\/nguyencongpc.vn\/tim?category=484&q=pc', + count: '1', + is_selected: '', + category_url: '\/adata-ram', + }, + { + id: '487', + name: 'RAM Samsung', + url: 'https:\/\/nguyencongpc.vn\/tim?category=487&q=pc', + count: '1', + is_selected: '', + category_url: '\/ram-samsung', + }, + { + id: '535', + name: 'B\u1ed9 M\u00e1y S\u1eed D\u1ee5ng CPU Intel Core I', + url: 'https:\/\/nguyencongpc.vn\/tim?category=535&q=pc', + count: '18', + is_selected: '', + category_url: '\/workstation-nc', + }, + { + id: '561', + name: 'CPU AMD', + url: 'https:\/\/nguyencongpc.vn\/tim?category=561&q=pc', + count: '40', + is_selected: '', + category_url: '\/cpu-amd', + }, + { + id: '649', + name: 'Ngu\u1ed3n Antec', + url: 'https:\/\/nguyencongpc.vn\/tim?category=649&q=pc', + count: '4', + is_selected: '', + category_url: '\/psu-antec', + }, + { + id: '843', + name: 'VGA Nvidia', + url: 'https:\/\/nguyencongpc.vn\/tim?category=843&q=pc', + count: '1', + is_selected: '', + category_url: '\/vga-nvidia', + }, + { + id: '949', + name: 'Ngu\u1ed3n Cooler master', + url: 'https:\/\/nguyencongpc.vn\/tim?category=949&q=pc', + count: '2', + is_selected: '', + category_url: '\/psu-cooler-master', + }, + { + id: '1255', + name: 'T\u1ea2N NHI\u1ec6T PC - COOLING', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1255&q=pc', + count: '12', + is_selected: '', + category_url: '\/tan-nhiet', + }, + { + id: '1333', + name: 'RAM Team', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1333&q=pc', + count: '1', + is_selected: '', + category_url: '\/ram-team', + }, + { + id: '1382', + name: '\u1ed4 c\u1ee9ng Kingmax', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1382&q=pc', + count: '4', + is_selected: '', + category_url: '\/o-cung-kingmax', + }, + { + id: '1390', + name: '\u1ed4 c\u1ee9ng Team', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1390&q=pc', + count: '2', + is_selected: '', + category_url: '\/team-o-cung-hdd-ssd', + }, + { + id: '1459', + name: '\u1ed4 c\u1ee9ng PNY', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1459&q=pc', + count: '1', + is_selected: '', + category_url: '\/pny', + }, + { + id: '1678', + name: 'M\u00e1y T\u00ednh \u0110\u1ed3ng B\u1ed9', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1678&q=pc', + count: '2', + is_selected: '', + category_url: '\/may-tinh-dong-bo', + }, + { + id: '1751', + name: 'THI\u1ebeT B\u1eca M\u1ea0NG', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1751&q=pc', + count: '11', + is_selected: '', + category_url: '\/thiet-bi-mang', + }, + { + id: '1829', + name: 'PC GAMING', + url: 'https:\/\/nguyencongpc.vn\/tim?category=1829&q=pc', + count: '74', + is_selected: '', + category_url: '\/pc-gaming', + }, + { + id: '2930', + name: 'VGA Leadtek', + url: 'https:\/\/nguyencongpc.vn\/tim?category=2930&q=pc', + count: '1', + is_selected: '', + category_url: '\/vga-leadtek', + }, + { + id: '3034', + name: 'B\u1ed9 M\u00e1y S\u1eed D\u1ee5ng CPU AMD', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3034&q=pc', + count: '9', + is_selected: '', + category_url: '\/amd-ryzen-workstation', + }, + { + id: '3036', + name: 'PC D\u1ef1ng phim - Editor', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3036&q=pc', + count: '40', + is_selected: '', + category_url: '\/edit-render-video-4k-8k', + }, + { + id: '3069', + name: 'Ngu\u1ed3n ASUS', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3069&q=pc', + count: '7', + is_selected: '', + category_url: '\/nguon-asus', + }, + { + id: '3082', + name: 'Server - M\u00e1y \u1ea3o h\u00f3a', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3082&q=pc', + count: '2', + is_selected: '', + category_url: '\/server-may-ao-hoa', + }, + { + id: '3094', + name: 'Thi\u1ebft b\u1ecb chuy\u1ec3n \u0111\u1ed5i', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3094&q=pc', + count: '1', + is_selected: '', + category_url: '\/thiet-bi-chuyen-doi', + }, + { + id: '3201', + name: 'PC V\u0102N PH\u00d2NG GI\u00c1 R\u1eba', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3201&q=pc', + count: '5', + is_selected: '', + category_url: '\/pc-van-phong-gia-re', + }, + { + id: '3249', + name: '\u1ed4 c\u1ee9ng Gigabyte', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3249&q=pc', + count: '4', + is_selected: '', + category_url: '\/gigabyte', + }, + { + id: '3269', + name: 'T\u1ea3n Nhi\u1ec7t N\u01b0\u1edbc AIO', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3269&q=pc', + count: '7', + is_selected: '', + category_url: '\/tan-nhiet-nuoc-aio', + }, + { + id: '3270', + name: 'T\u1ea3n Nhi\u1ec7t Kh\u00ed', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3270&q=pc', + count: '4', + is_selected: '', + category_url: '\/tan-nhiet-khi', + }, + { + id: '3271', + name: 'Fan t\u1ea3n nhi\u1ec7t', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3271&q=pc', + count: '2', + is_selected: '', + category_url: '\/quat-tan-nhiet', + }, + { + id: '3274', + name: '\u1ed4 C\u1ee8NG SSD', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3274&q=pc', + count: '72', + is_selected: '', + category_url: '\/o-cung-ssd', + }, + { + id: '3295', + name: 'Ngu\u1ed3n Super Flower', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3295&q=pc', + count: '2', + is_selected: '', + category_url: '\/nguon-super-flower', + }, + { + id: '3300', + name: 'PC AI - TR\u00cd TU\u1ec6 NH\u00c2N T\u1ea0O', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3300&q=pc', + count: '21', + is_selected: '', + category_url: '\/bo-pc-chay-ai-tri-tue-nhan-tao', + }, + { + id: '3310', + name: 'Case Asus', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3310&q=pc', + count: '1', + is_selected: '', + category_url: '\/case-asus', + }, + { + id: '3373', + name: 'RAM OCPC', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3373&q=pc', + count: '5', + is_selected: '', + category_url: '\/ram-ocpc', + }, + { + id: '3374', + name: 'Ngu\u1ed3n NZXT', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3374&q=pc', + count: '1', + is_selected: '', + category_url: '\/nguon-nzxt', + }, + { + id: '3403', + name: 'THI\u1ebeT B\u1eca V\u0102N PH\u00d2NG', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3403&q=pc', + count: '16', + is_selected: '', + category_url: '\/thiet-bi-van-phong', + }, + { + id: '3427', + name: 'Ngu\u1ed3n MSI', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3427&q=pc', + count: '3', + is_selected: '', + category_url: '\/nguon-msi', + }, + { + id: '3431', + name: 'LINH KI\u1ec6N M\u00c1Y T\u00cdNH', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3431&q=pc', + count: '80', + is_selected: '', + category_url: '\/linh-kien-may-tinh', + }, + { + id: '3432', + name: 'PC ESPORT', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3432&q=pc', + count: '72', + is_selected: '', + category_url: '\/pc-esport', + }, + { + id: '3433', + name: 'PC GAME AAA', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3433&q=pc', + count: '68', + is_selected: '', + category_url: '\/pc-game-aaa', + }, + { + id: '3434', + name: 'PC STREAM GAME', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3434&q=pc', + count: '68', + is_selected: '', + category_url: '\/pc-stream-game', + }, + { + id: '3439', + name: 'CH\u1eccN THEO H\u00c3NG', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3439&q=pc', + count: '4', + is_selected: '', + category_url: '\/laptop-chon-theo-hang', + }, + { + id: '3440', + name: 'LAPTOP GAMING', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3440&q=pc', + count: '1', + is_selected: '', + category_url: '\/laptop-gaming', + }, + { + id: '3441', + name: 'CH\u1eccN THEO NHU C\u1ea6U', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3441&q=pc', + count: '4', + is_selected: '', + category_url: '\/chon-theo-nhu-cau', + }, + { + id: '3442', + name: 'CH\u1eccN THEO KHO\u1ea2NG GI\u00c1', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3442&q=pc', + count: '4', + is_selected: '', + category_url: '\/chon-theo-khoang-gia', + }, + { + id: '3443', + name: 'CH\u1eccN THEO CPU', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3443&q=pc', + count: '2', + is_selected: '', + category_url: '\/chon-theo-cpu', + }, + { + id: '3446', + name: 'Laptop Gaming', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3446&q=pc', + count: '1', + is_selected: '', + category_url: '\/laptop-gaming-1', + }, + { + id: '3447', + name: 'Laptop \u0110\u1ed3 H\u1ecda - Ki\u1ebfn Tr\u00fac', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3447&q=pc', + count: '1', + is_selected: '', + category_url: '\/laptop-do-hoa-kien-truc', + }, + { + id: '3448', + name: 'Laptop V\u0103n Ph\u00f2ng', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3448&q=pc', + count: '4', + is_selected: '', + category_url: '\/laptop-van-phong', + }, + { + id: '3449', + name: 'Laptop M\u1ecfng Nh\u1eb9', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3449&q=pc', + count: '3', + is_selected: '', + category_url: '\/laptop-mong-nhe', + }, + { + id: '3451', + name: 'Intel Core i3', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3451&q=pc', + count: '2', + is_selected: '', + category_url: '\/laptop-intel-core-i3', + }, + { + id: '3452', + name: 'Intel Core i5', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3452&q=pc', + count: '1', + is_selected: '', + category_url: '\/intel-core-i5', + }, + { + id: '3453', + name: 'Intel Core i7', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3453&q=pc', + count: '1', + is_selected: '', + category_url: '\/intel-core-i7', + }, + { + id: '3459', + name: 'D\u01b0\u1edbi 10 Tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3459&q=pc', + count: '2', + is_selected: '', + category_url: '\/duoi-10-trieu', + }, + { + id: '3461', + name: '15 Tri\u1ec7u - 20 Tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3461&q=pc', + count: '2', + is_selected: '', + category_url: '\/15-trieu-20-trieu', + }, + { + id: '3466', + name: 'PC \u0110\u1ed3 h\u1ecda 3Ds - Ki\u1ebfn Tr\u00fac', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3466&q=pc', + count: '39', + is_selected: '', + category_url: '\/pc-do-hoa-3ds-max', + }, + { + id: '3467', + name: 'PC \u0110\u1ed3 h\u1ecda AutoCAD', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3467&q=pc', + count: '33', + is_selected: '', + category_url: '\/pc-do-hoa-autocad', + }, + { + id: '3468', + name: 'CH\u1eccN THEO NHU C\u1ea6U', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3468&q=pc', + count: '70', + is_selected: '', + category_url: '\/chon-theo-nhu-cau-1', + }, + { + id: '3469', + name: 'CH\u1eccN THEO KHO\u1ea2NG GI\u00c1', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3469&q=pc', + count: '68', + is_selected: '', + category_url: '\/chon-theo-khoang-gia-1', + }, + { + id: '3471', + name: '5 Tri\u1ec7u - 15 Tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3471&q=pc', + count: '11', + is_selected: '', + category_url: '\/5-trieu-15-trieu', + }, + { + id: '3472', + name: '20 Tri\u1ec7u - 30 Tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3472&q=pc', + count: '10', + is_selected: '', + category_url: '\/20-trieu-30-trieu-1', + }, + { + id: '3473', + name: '30 Tri\u1ec7u - 50 Tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3473&q=pc', + count: '16', + is_selected: '', + category_url: '\/30-trieu-50-trieu-1', + }, + { + id: '3474', + name: '50 Tri\u1ec7u - 100 Tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3474&q=pc', + count: '19', + is_selected: '', + category_url: '\/50-trieu-100-trieu-1', + }, + { + id: '3476', + name: 'CH\u1eccN THEO H\u00c3NG', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3476&q=pc', + count: '55', + is_selected: '', + category_url: '\/chon-theo-hang', + }, + { + id: '3477', + name: 'CH\u1eccN THEO DUNG L\u01af\u1ee2NG', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3477&q=pc', + count: '70', + is_selected: '', + category_url: '\/chon-theo-dung-luong', + }, + { + id: '3485', + name: '15 Tri\u1ec7u - 20 Tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3485&q=pc', + count: '13', + is_selected: '', + category_url: '\/15-trieu-20-trieu-1', + }, + { + id: '3486', + name: 'Tr\u00ean 100 Tri\u1ec7u', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3486&q=pc', + count: '3', + is_selected: '', + category_url: '\/tren-100-trieu-1', + }, + { + id: '3487', + name: '250GB', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3487&q=pc', + count: '1', + is_selected: '', + category_url: '\/250gb', + }, + { + id: '3488', + name: '256GB', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3488&q=pc', + count: '4', + is_selected: '', + category_url: '\/256gb', + }, + { + id: '3489', + name: '480GB', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3489&q=pc', + count: '1', + is_selected: '', + category_url: '\/480gb', + }, + { + id: '3490', + name: '500GB', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3490&q=pc', + count: '6', + is_selected: '', + category_url: '\/500gb', + }, + { + id: '3491', + name: '512GB', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3491&q=pc', + count: '8', + is_selected: '', + category_url: '\/512gb', + }, + { + id: '3492', + name: '1TB', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3492&q=pc', + count: '43', + is_selected: '', + category_url: '\/1tb', + }, + { + id: '3493', + name: '2TB', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3493&q=pc', + count: '8', + is_selected: '', + category_url: '\/2tb', + }, + { + id: '3495', + name: '4TB', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3495&q=pc', + count: '1', + is_selected: '', + category_url: '\/4tb', + }, + { + id: '3566', + name: 'PC Audio - Music', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3566&q=pc', + count: '5', + is_selected: '', + category_url: '\/pc-audio', + }, + { + id: '3567', + name: 'PC Animation - VFX', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3567&q=pc', + count: '18', + is_selected: '', + category_url: '\/pc-animation', + }, + { + id: '3588', + name: 'PC PHOTOSHOP - ILLUSTRATOR', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3588&q=pc', + count: '39', + is_selected: '', + category_url: '\/pc-photoshop-illustrator', + }, + { + id: '3595', + name: 'GAME ON AMD', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3595&q=pc', + count: '7', + is_selected: '', + category_url: '\/game-on-amd', + }, + { + id: '3614', + name: 'AMD Ryzen 5', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3614&q=pc', + count: '9', + is_selected: '', + category_url: '\/amd-ryzen-5', + }, + { + id: '3615', + name: 'AMD Ryzen 7', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3615&q=pc', + count: '7', + is_selected: '', + category_url: '\/amd-ryzen-7', + }, + { + id: '3616', + name: 'AMD Ryzen Threadripper', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3616&q=pc', + count: '20', + is_selected: '', + category_url: '\/amd-ryzen-threadripper', + }, + { + id: '3617', + name: 'AMD Ryzen 9', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3617&q=pc', + count: '4', + is_selected: '', + category_url: '\/amd-ryzen-9', + }, + { + id: '3633', + name: 'Ngu\u1ed3n Segotep', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3633&q=pc', + count: '1', + is_selected: '', + category_url: '\/nguon-segotep', + }, + { + id: '3636', + name: 'THI\u1ebeT B\u1eca CHUY\u1ec2N \u0110\u1ed4I, D\u00c2Y C\u00c1P', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3636&q=pc', + count: '3', + is_selected: '', + category_url: '\/thiet-bi-chuyen-doi-day-cap', + }, + { + id: '3644', + name: '\u1ed4 c\u1ee9ng SSD 2', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3644&q=pc', + count: '70', + is_selected: '', + category_url: '\/o-cung-ssd-2', + }, + { + id: '3645', + name: 'Case Deepcool', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3645&q=pc', + count: '1', + is_selected: '', + category_url: '\/case-deepcool', + }, + { + id: '3646', + name: 'Ngu\u1ed3n Deepcool', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3646&q=pc', + count: '1', + is_selected: '', + category_url: '\/nguon-deepcool', + }, + { + id: '3647', + name: 'CAMERA', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3647&q=pc', + count: '11', + is_selected: '', + category_url: '\/camera', + }, + { + id: '3680', + name: '\u00d4 c\u1ee9ng AGI', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3680&q=pc', + count: '2', + is_selected: '', + category_url: '\/o-cung-agi', + }, + { + id: '3687', + name: '\u1ed4 c\u1ee9ng HIKSEMI', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3687&q=pc', + count: '7', + is_selected: '', + category_url: '\/o-cung-hiksemi', + }, + { + id: '3689', + name: 'RAM Patriot', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3689&q=pc', + count: '2', + is_selected: '', + category_url: '\/ram-patriot', + }, + { + id: '3690', + name: '\u1ed4 c\u1ee9ng Lexar', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3690&q=pc', + count: '5', + is_selected: '', + category_url: '\/o-cung-lexar', + }, + { + id: '3691', + name: 'Build PC Custom', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3691&q=pc', + count: '4', + is_selected: '', + category_url: '\/build-pc-custom', + }, + { + id: '3695', + name: 'AMD Ryzen 9000 Series', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3695&q=pc', + count: '1', + is_selected: '', + category_url: '\/amd-ryzen-9000-series', + }, + { + id: '3715', + name: 'M\u00e1y T\u00ednh \u0110\u1ed3 H\u1ecda', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3715&q=pc', + count: '39', + is_selected: '', + category_url: '\/may-tinh-do-hoa', + }, + { + id: '3720', + name: 'Ngu\u1ed3n OCPC', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3720&q=pc', + count: '3', + is_selected: '', + category_url: '\/nguon-ocpc', + }, + { + id: '3733', + name: 'PC NC', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3733&q=pc', + count: '62', + is_selected: '', + category_url: '\/pc-nc', + }, + { + id: '3734', + name: 'PC RTX 5000 Series', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3734&q=pc', + count: '58', + is_selected: '', + category_url: '\/pc-rtx-5000-series', + }, + { + id: '3735', + name: 'PC RTX 5060', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3735&q=pc', + count: '8', + is_selected: '', + category_url: '\/pc-rtx-5060', + }, + { + id: '3736', + name: 'PC RTX 5070', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3736&q=pc', + count: '9', + is_selected: '', + category_url: '\/pc-rtx-5070', + }, + { + id: '3737', + name: 'PC RTX 5080', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3737&q=pc', + count: '7', + is_selected: '', + category_url: '\/pc-rtx-5080', + }, + { + id: '3738', + name: 'PC RTX 5090', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3738&q=pc', + count: '24', + is_selected: '', + category_url: '\/pc-rtx-5090', + }, + { + id: '3739', + name: 'PC RTX 5070 Ti', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3739&q=pc', + count: '11', + is_selected: '', + category_url: '\/pc-rtx-5070-ti', + }, + { + id: '3740', + name: 'PC intel', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3740&q=pc', + count: '3', + is_selected: '', + category_url: '\/pc-intel', + }, + { + id: '3741', + name: 'PC AMD', + url: 'https:\/\/nguyencongpc.vn\/tim?category=3741&q=pc', + count: '2', + is_selected: '', + category_url: '\/pc-amd', + }, + ], + attribute_filter_list: [], + brand_filter_list: [ + { + id: '4', + name: 'ASUS', + brand_index: 'asus', + image: '', + count: '11', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=asus&q=pc', + }, + { + id: '96', + name: 'LEXAR', + brand_index: 'lexar', + image: '', + count: '5', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=lexar&q=pc', + }, + { + id: '5', + name: 'MSI', + brand_index: 'msi', + image: '', + count: '5', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=msi&q=pc', + }, + { + id: '2', + name: 'Gigabyte', + brand_index: 'gigabyte', + image: '', + count: '6', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=gigabyte&q=pc', + }, + { + id: '7', + name: 'Samsung', + brand_index: 'samsung', + image: '', + count: '6', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=samsung&q=pc', + }, + { + id: '87', + name: 'SUPER FLOWER', + brand_index: 'super-flower', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=super-flower&q=pc', + }, + { + id: '81', + name: 'ID-COOLING', + brand_index: 'id-cooling', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=id-cooling&q=pc', + }, + { + id: '74', + name: 'AOC', + brand_index: 'aoc', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=aoc&q=pc', + }, + { + id: '73', + name: 'ACER', + brand_index: 'acer', + image: '', + count: '4', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=acer&q=pc', + }, + { + id: '72', + name: 'DEEPCOOL', + brand_index: 'deepcool', + image: '', + count: '13', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=deepcool&q=pc', + }, + { + id: '66', + name: 'NZXT', + brand_index: 'nzxt', + image: '', + count: '4', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=nzxt&q=pc', + }, + { + id: '53', + name: 'PNY', + brand_index: 'pny', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=pny&q=pc', + }, + { + id: '49', + name: 'KINGSPEC', + brand_index: 'kingspec', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=kingspec&q=pc', + }, + { + id: '47', + name: 'KINGMAX', + brand_index: 'kingmax', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=kingmax&q=pc', + }, + { + id: '45', + name: 'KINGSTON', + brand_index: 'kingston', + image: '', + count: '8', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=kingston&q=pc', + }, + { + id: '43', + name: 'TEAM', + brand_index: 'team', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=team&q=pc', + }, + { + id: '31', + name: 'CORSAIR', + brand_index: 'corsair', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=corsair&q=pc', + }, + { + id: '30', + name: 'COOLER MASTER', + brand_index: 'coolermaster', + image: '', + count: '5', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=coolermaster&q=pc', + }, + { + id: '29', + name: 'FSP', + brand_index: 'fsp', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=fsp&q=pc', + }, + { + id: '27', + name: 'NVIDIA', + brand_index: 'nvidia', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=nvidia&q=pc', + }, + { + id: '20', + name: 'DELL', + brand_index: 'dell', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=dell&q=pc', + }, + { + id: '18', + name: 'CRUCIAL', + brand_index: 'crucial', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=crucial&q=pc', + }, + { + id: '14', + name: 'WESTERN DIGITAL', + brand_index: 'western-digital', + image: '', + count: '7', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=western-digital&q=pc', + }, + { + id: '13', + name: 'COLORFUL', + brand_index: 'colorful', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=colorful&q=pc', + }, + { + id: '99', + name: 'LENOVO', + brand_index: 'lenovo', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=lenovo&q=pc', + }, + { + id: '23', + name: 'ANTEC', + brand_index: 'antec', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=antec&q=pc', + }, + { + id: '3', + name: 'AMD', + brand_index: 'amd', + image: '', + count: '40', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=amd&q=pc', + }, + { + id: '16', + name: 'APACER', + brand_index: 'apacer', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=apacer&q=pc', + }, + { + id: '17', + name: 'ADATA', + brand_index: 'adata', + image: '', + count: '9', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=adata&q=pc', + }, + { + id: '205', + name: 'AGI', + brand_index: 'agi', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=agi&q=pc', + }, + { + id: '230', + name: 'Biwin', + brand_index: 'biwin', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=biwin&q=pc', + }, + { + id: '159', + name: 'DAHUA', + brand_index: 'dahua', + image: '', + count: '2', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=dahua&q=pc', + }, + { + id: '211', + name: 'HIKSEMI', + brand_index: 'hiksemi', + image: '', + count: '7', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=hiksemi&q=pc', + }, + { + id: '144', + name: 'HIKVISION', + brand_index: 'hikvision', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=hikvision&q=pc', + }, + { + id: '178', + name: 'IMOU', + brand_index: 'imou', + image: '', + count: '11', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=imou&q=pc', + }, + { + id: '140', + name: 'Kingshare', + brand_index: 'kingshare', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=kingshare&q=pc', + }, + { + id: '133', + name: 'MIK', + brand_index: 'mik', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=mik&q=pc', + }, + { + id: '124', + name: 'NCPC', + brand_index: 'ncpc', + image: '', + count: '126', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=ncpc&q=pc', + }, + { + id: '170', + name: 'OCPC', + brand_index: 'ocpc', + image: '', + count: '10', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=ocpc&q=pc', + }, + { + id: '193', + name: 'Patriot', + brand_index: 'patriot', + image: '', + count: '3', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=patriot&q=pc', + }, + { + id: '142', + name: 'SEGOTEP', + brand_index: 'segotep', + image: '', + count: '1', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=segotep&q=pc', + }, + { + id: '134', + name: 'TP-Link', + brand_index: 'tp-link', + image: '', + count: '7', + is_selected: '', + url: 'https:\/\/nguyencongpc.vn\/tim?brand=tp-link&q=pc', + }, + ], + }, +]; diff --git a/src/lib/product/search/index.ts b/src/lib/product/search/index.ts new file mode 100644 index 0000000..6b1d54a --- /dev/null +++ b/src/lib/product/search/index.ts @@ -0,0 +1,14 @@ +import { TypeProductSearch } from '@/types/product/search'; + +/** + * Tìm danh mục theo mảng slug (ví dụ: ["pc-gaming","cao-cap","rtx-4090"]) + */ +export function findSearchBySlug( + keys: string | null, + categories: TypeProductSearch[], +): TypeProductSearch | null { + console.log('Searching for keys:', keys); + + const found = categories.find((item) => item.keywords === keys); + return found ?? null; +} diff --git a/src/lib/resolvePageType.ts b/src/lib/resolvePageType.ts index 0869850..595b184 100644 --- a/src/lib/resolvePageType.ts +++ b/src/lib/resolvePageType.ts @@ -4,11 +4,17 @@ import { ArticleCateDetailPageData } from '@/data/article/ArticleCateDetailPageD import { ArticleDetailPageData } from '@/data/article/ArticleDetailPageData'; export function resolvePageType(slug: string) { - // kiểm tra danh mục + // hiển thị trang danh mục sản phẩm if (productCategoryData.some((c) => c.current_category.url == slug)) { return 'category'; } - // kiểm tra sản phẩm + + // hiển thị trang tìm kiếm + if ('/tim' == slug) { + return 'product-search'; + } + + // hiển thị trang chi tiết sản phẩm if (productDetailData.some((c) => c.product_info.productUrl == slug)) { return 'product-detail'; } diff --git a/src/styles/globals.css b/src/styles/globals.css index d89a167..f9eb555 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -2909,6 +2909,8 @@ textarea::placeholder { -ms-transform-origin: top left; transform-origin: top left; padding: 14px 10px; + max-height: 400px; + overflow: auto; } .page-category .box-content-category .list-filter-category .item:hover ul { -webkit-transform: scale(1); @@ -4437,6 +4439,20 @@ textarea::placeholder { .page-deal .box-list-item-deal .product-item:nth-child(2) .text-deal-item { display: block !important; } +.page-deal .time-deal-page p { + background: #000; + color: #fff; + width: 25px; + height: 20px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 3px; +} +.page-deal .time-deal-page span { + text-align: left; +} + .page-cart { background: #f0f0f0; padding: 20px 0 40px; diff --git a/src/types/global/TypeListProduct.ts b/src/types/global/TypeListProduct.ts index 2621cd0..0b39b04 100644 --- a/src/types/global/TypeListProduct.ts +++ b/src/types/global/TypeListProduct.ts @@ -10,8 +10,8 @@ export interface ImageCollectionItem { } export interface Brand { - id: number; - brand_index: string; + id: number | string; + brand_index?: string; name: string; image: string; url: string; @@ -19,10 +19,10 @@ export interface Brand { export interface SaleRules { price: string | number; - normal_price: number; + normal_price: number | string; min_purchase: string | number; max_purchase: string | number; - remain_quantity: number; + remain_quantity: number | string; from_time: string | number; to_time: string | number; type: string; @@ -63,24 +63,24 @@ export interface Extend { } export interface SpecialOfferItem { - id: number; + id: number | string; title: string; type: string; thumbnail: string; - cash_value: number; - quantity: number; + cash_value: number | string; + quantity: number | string; from_time: string; to_time: string; url: string; description: string; - status: number; + status: number | string; } export interface Product { - id: number; - productId: number; + id: number | string; + productId: number | string; priceUnit: string; - marketPrice: number; + marketPrice: number | string; price: string | number; price_off: number | string; currency: string; @@ -94,27 +94,27 @@ export interface Product { imageCollection: ImageCollectionItem[]; productUrl: string; brand: Brand; - visit: number; - rating: number; - reviewCount: number; - review: { rate: number; total: number }; - comment: { rate: number; total: number }; - quantity: number; + visit: number | string; + rating: number | string; + reviewCount: number | string; + review: { rate: number | string; total: number | string }; + comment: { rate: number | string; total: number | string }; + quantity: number | string; productSKU: string; productModel: string; - hasVAT: number; + hasVAT: number | string; condition: string; - config_count: number; - configurable: number; - component_count: number; + config_count: number | string; + configurable: number | string; + component_count: number | string; specialOffer: { other?: SpecialOfferItem[]; all?: SpecialOfferItem[] }; specialOfferGroup: []; productType: { - isNew: number; - isHot: number; - isBestSale: number; - isSaleOff: number; - 'online-only': number; + isNew: number | string; + isHot: number | string; + isBestSale: number | string; + isSaleOff: number | string; + 'online-only': number | string; }; bulk_price: []; thum_poster: string; @@ -123,8 +123,8 @@ export interface Product { variants: []; variant_option: []; extend: Extend; - weight: number; - promotion_price: number | null; + weight: number | string; + promotion_price: number | null | string; deal_list: Deal[]; pricing_traces: PricingTrace[]; categories: Category[]; diff --git a/src/types/product/category/index.ts b/src/types/product/category/index.ts index 3c25296..b7f5947 100644 --- a/src/types/product/category/index.ts +++ b/src/types/product/category/index.ts @@ -11,7 +11,7 @@ export interface ChildCategory { is_featured: string; summary: string; } -interface FilterCollection { +export interface FilterCollection { url: string; key: string; name: string; @@ -21,22 +21,24 @@ export interface SortCollection { key: string; name: string; } -interface DisplayCollection { +export interface DisplayCollection { url: string; key: string; name: string; } -interface PagingCollection { +export interface PagingCollection { name: string; url: string; is_active: string; } -interface CategoryCollection { + +export interface CategoryCollection { id: string; name: string; url: string; count: string; is_selected: string; + category_url?: string; } export interface BrandFilter { id: string; diff --git a/src/types/product/search/index.ts b/src/types/product/search/index.ts new file mode 100644 index 0000000..7135c1f --- /dev/null +++ b/src/types/product/search/index.ts @@ -0,0 +1,33 @@ +import { + DisplayCollection, + FilterCollection, + SortCollection, + PagingCollection, + Product, + BrandFilter, + AttributeFilterList, + PriceFilter, + CategoryCollection, +} from '@/types'; + +export interface TypeProductSearch { + keywords: string; + description: string; + title: string; + favicon: string; + canonical: string; + image: string; + search_query: string; + other_filter_collection: FilterCollection[]; + sort_by_collection: SortCollection[]; + display_by_collection: DisplayCollection[]; + paging_collection: PagingCollection[]; + paging: string; + paging_count: string; + product_count: string; + product_list: Record; + attribute_filter_list: AttributeFilterList[]; + brand_filter_list: BrandFilter[]; + price_filter_list: PriceFilter[]; + category_collection: CategoryCollection[]; +}