/*! * clipboard.js v1.5.16 * https://zenorocha.github.io/clipboard.js * * Licensed MIT © Zeno Rocha */ !function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.Clipboard=e()}}(function(){var e,t,n;return function e(t,n,i){function o(a,c){if(!n[a]){if(!t[a]){var l="function"==typeof require&&require;if(!c&&l)return l(a,!0);if(r)return r(a,!0);var s=new Error("Cannot find module '"+a+"'");throw s.code="MODULE_NOT_FOUND",s}var u=n[a]={exports:{}};t[a][0].call(u.exports,function(e){var n=t[a][1][e];return o(n?n:e)},u,u.exports,e,t,n,i)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function e(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function e(){var t=this,n="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=document.body.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[n?"right":"left"]="-9999px";var i=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.addEventListener("focus",window.scrollTo(0,i)),this.fakeElem.style.top=i+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,document.body.appendChild(this.fakeElem),this.selectedText=(0,o.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function e(){this.fakeHandler&&(document.body.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(document.body.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function e(){this.selectedText=(0,o.default)(this.target),this.copyText()}},{key:"copyText",value:function e(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function e(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function e(){this.target&&this.target.blur(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function e(){this.removeFake()}},{key:"action",set:function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function e(){return this._action}},{key:"target",set:function e(t){if(void 0!==t){if(!t||"object"!==("undefined"==typeof t?"undefined":r(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function e(){return this._target}}]),e}();e.exports=c})},{select:5}],8:[function(t,n,i){!function(o,r){if("function"==typeof e&&e.amd)e(["module","./clipboard-action","tiny-emitter","good-listener"],r);else if("undefined"!=typeof i)r(n,t("./clipboard-action"),t("tiny-emitter"),t("good-listener"));else{var a={exports:{}};r(a,o.clipboardAction,o.tinyEmitter,o.goodListener),o.clipboard=a.exports}}(this,function(e,t,n,i){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e,t){var n="data-clipboard-"+e;if(t.hasAttribute(n))return t.getAttribute(n)}var s=o(t),u=o(n),f=o(i),d=function(){function e(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText}},{key:"listenClick",value:function e(t){var n=this;this.listener=(0,f.default)(t,"click",function(e){return n.onClick(e)})}},{key:"onClick",value:function e(t){var n=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new s.default({action:this.action(n),target:this.target(n),text:this.text(n),trigger:n,emitter:this})}},{key:"defaultAction",value:function e(t){return l("action",t)}},{key:"defaultTarget",value:function e(t){var n=l("target",t);if(n)return document.querySelector(n)}},{key:"defaultText",value:function e(t){return l("text",t)}},{key:"destroy",value:function e(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}]),t}(u.default);e.exports=h})},{"./clipboard-action":7,"good-listener":4,"tiny-emitter":6}]},{},[8])(8)});/*! ./QueryClientProvider.js */ /*! ./QueryErrorResetBoundary.js */ /*! ./cjs/react-jsx-runtime.development.js */ /*! ./errorBoundaryUtils.js */ /*! ./focusManager.js */ /*! ./infiniteQueryBehavior.js */ /*! ./isRestoring.js */ /*! ./mutation.js */ /*! ./mutationCache.js */ /*! ./notifyManager.js */ /*! ./onlineManager.js */ /*! ./query.js */ /*! ./queryCache.js */ /*! ./queryObserver.js */ /*! ./removable.js */ /*! ./retryer.js */ /*! ./subscribable.js */ /*! ./suspense.js */ /*! ./useBaseQuery.js */ /*! ./utils.js */ /*! @tanstack/query-core */ /*! @tanstack/react-query */ /*! react */ /*! react/jsx-runtime */ /*!**************************!*\ !*** external ["React"] ***! \**************************/ /*!*******************************************!*\ !*** ./node_modules/react/jsx-runtime.js ***! \*******************************************/ /*!******************************************************!*\ !*** ./node_modules/@elementor/query/dist/index.mjs ***! \******************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/query.js ***! \*****************************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/utils.js ***! \*****************************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/react/cjs/react-jsx-runtime.development.js ***! \*****************************************************************/ /*!******************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/utils.js ***! \******************************************************************/ /*!*******************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/retryer.js ***! \*******************************************************************/ /*!********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutation.js ***! \********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/removable.js ***! \*********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/suspense.js ***! \*********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useQuery.js ***! \*********************************************************************/ /*!**********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryCache.js ***! \**********************************************************************/ /*!***********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryClient.js ***! \***********************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/focusManager.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/subscribable.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/isRestoring.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useMutation.js ***! \************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutationCache.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/notifyManager.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/onlineManager.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryObserver.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useBaseQuery.js ***! \*************************************************************************/ /*!****************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutationObserver.js ***! \****************************************************************************/ /*!*****************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useInfiniteQuery.js ***! \*****************************************************************************/ /*!*******************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/errorBoundaryUtils.js ***! \*******************************************************************************/ /*!********************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/QueryClientProvider.js ***! \********************************************************************************/ /*!*********************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/infiniteQueryBehavior.js ***! \*********************************************************************************/ /*!*********************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/infiniteQueryObserver.js ***! \*********************************************************************************/ /*!************************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/QueryErrorResetBoundary.js ***! \************************************************************************************/ {"id":5825,"date":"2022-03-16T22:54:04","date_gmt":"2022-03-16T15:54:04","guid":{"rendered":"https:\/\/hongling.com.vn\/?post_type=product&p=5825"},"modified":"2024-12-21T14:58:12","modified_gmt":"2024-12-21T07:58:12","slug":"lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01","status":"publish","type":"product","link":"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/","title":{"rendered":"L\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel HX-32Y-01"},"content":{"rendered":"
\n
\n
\n

Th\u00f4ng tin c\u01a1 b\u1ea3n.<\/h2>\n<\/div>\n
\n
\n
\n
Model<\/div>\n
HX-32Y-01<\/div>\n<\/div>\n
\n
Model<\/div>\n
Hx-32y-1 (32pan)<\/div>\n<\/div>\n
\n
V\u1eadt li\u1ec7u<\/div>\n
Th\u00e9p kh\u00f4ng g\u1ec9 ho\u00e0n to\u00e0n # 201<\/div>\n<\/div>\n
\n
N\u0103ng l\u01b0\u1ee3ng<\/div>\n
\u0110i\u1ec7n \/ Diesel \/ Gas<\/div>\n<\/div>\n
\n
K\u00edch th\u01b0\u1edbc m\u00e1y<\/div>\n
2550L * 1600W * 2500 gi\u1edd<\/div>\n<\/div>\n
\n
S\u1ee9c ch\u1ee9a<\/div>\n
32tray 400 * 600\/460 * 720mm<\/div>\n<\/div>\n
\n
\u0110i\u1ec7n \u00e1p<\/div>\n
380V<\/div>\n<\/div>\n
\n
C\u00f4ng su\u1ea5t<\/div>\n
5kw<\/div>\n<\/div>\n
\n
V\u1eadt li\u1ec7u \u0111\u00f3ng g\u00f3i<\/div>\n
T\u00f9y ch\u1ec9nh<\/div>\n<\/div>\n
\n
Th\u1ecb tr\u01b0\u1eddng xu\u1ea5t kh\u1ea9u<\/div>\n
To\u00e0n c\u1ea7u<\/div>\n<\/div>\n
\n
C\u00e1ch th\u1ee9c \u0111\u00f3ng g\u00f3i<\/div>\n
V\u1ecf g\u1ed7 \/ T\u00f9y ch\u1ecdn<\/div>\n<\/div>\n
\n
Chi ti\u1ebft s\u1ea3n ph\u1ea9m<\/div>\n
CE<\/div>\n<\/div>\n
\n
Th\u01b0\u01a1ng hi\u1ec7u<\/div>\n
Hongling<\/div>\n<\/div>\n
\n
Xu\u1ea5t x\u1ee9<\/div>\n
Qu\u1ea3ng Ch\u00e2u Trung Qu\u1ed1c<\/div>\n<\/div>\n
\n
M\u00e3 HS<\/div>\n
85166090<\/div>\n<\/div>\n
\n
Kh\u1ea3 n\u0103ng s\u1ea3n xu\u1ea5t<\/div>\n
300 \/ th\u00e1ng<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n
\n
\n

M\u00f4 t\u1ea3 S\u1ea3n ph\u1ea9m<\/h2>\n<\/div>\n
\n
\n
\n

\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0<\/strong>XIN L\u01afU \u00dd NH\u1eeeNG \u0110I\u1ec0U N\u00c0Y<\/strong><\/p>\n

\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a01. C\u00e1c b\u1ed9 ph\u1eadn ch\u00ednh c\u1ee7a h\u1ec7 th\u1ed1ng t\u1eeb \u0110\u1ee9c \/ Nh\u1eadt B\u1ea3n \/ \u0110\u00e0i Loan<\/strong>
\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a02. B\u00ean trong m\u00a0<\/strong>aterial:\u00a0\u00a0<\/strong>SS #\u00a0<\/strong>201\u00a0<\/strong>, d\u00e0y 1,5mm.
\n3. v\u1eadt li\u1ec7u b\u00ean ngo\u00e0i: SS # 201, d\u00e0y 1,2mm.<\/strong>
\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a04.BURNER ch\u1ec9 d\u00e0nh cho L\u00f2 quay Diesel & L\u00f2 quay gas
\n5. ch\u1ecdn OLYMPIA BURNER (Nh\u1eadt B\u1ea3n) ho\u1eb7c RIELLO BURNER (\u00dd)\u00a0<\/strong><\/p>\n

N\u0103ng l\u01b0\u1ee3ng: \u0110i\u1ec7n<\/strong><\/p>\n

\u0110i\u1ec7n<\/strong>\u00a0\u00a0 \u00a0\u00e1p \u0111\u1ecbnh m\u1ee9c: 380V \/ 50HZ \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0\u00a0<\/strong><\/p>\n

Ti\u00eau th\u1ee5\u00a0<\/strong>:\u00a0\u00a0<\/strong>5kw \/ h\u00a0<\/strong>\u00a0 \u00a0<\/strong><\/p>\n

K\u00edch th\u01b0\u1edbc: 25\u00a0<\/strong>50 * 1600 * 2500\u00a0<\/strong>mm \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0\u00a0<\/strong><\/p>\n

K\u00edch th\u01b0\u1edbc khay: 600 * 400mm\u00a0<\/strong>\u00a0 \u00a0<\/strong><\/p>\n

Quy c\u00e1ch: 32 Khay \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0\u00a0<\/strong><\/p>\n

Nhi\u1ec7t \u0111\u1ed9: Ph\u00f2ng\u00a0<\/strong><\/p>\n

\u0110\u1ea7u \u0111\u1ed1t c\u00e1m d\u1ed7-300\u00a0<\/strong>\u00baC<\/strong>
\n\u0110\u1ea7u \u0111\u1ed1t Olympia ho\u1eb7c RIello l\u00e0 t\u00f9y ch\u1ecdn<\/strong>\u00a0<\/strong><\/p>\n<\/div>\n

Chi ti\u1ebft s\u1ea3n ph\u1ea9m \u00a0 \u00a0<\/strong><\/p>\n
\u00a0 \u00a0 \u00a0Th\u00f4ng s\u1ed1 s\u1ea3n ph\u1ea9m<\/strong><\/div>\n

Theo lo\u1ea1i \u0111\u1ea7u \u0111\u1ed1t v\u00e0 lo\u1ea1i \u0111\u1ea7u \u0111\u1ed1t, \u0111\u01b0\u1ee3c chia th\u00e0nh L\u00f2 quay \u0111i\u1ec7n, L\u00f2 n\u01b0\u1edbng quay Diesel v\u00e0 L\u00f2 quay quay b\u1eb1ng gas.
\nV\u1ec1 ba lo\u1ea1i L\u00f2 n\u01b0\u1edbng gi\u00e1 quay, th\u00f4ng s\u1ed1 k\u1ef9 thu\u1eadt gi\u1ed1ng nhau th\u00f4ng s\u1ed1 s\u1ea3n ph\u1ea9m.
\nS\u1ea3n ph\u1ea9m ki\u1ec3u\u00a0n\u00e0y l\u00e0 L\u00f2 n\u01b0\u1edbng xoay d\u00f9ng gas 16 khay v\u1edbi 1900X1400X2500 (mm) v\u00e0\u00a0\u0111\u1ea7u \u0111\u1ed1t Olympia ho\u1eb7c RIello l\u00e0 t\u00f9y ch\u1ecdn.<\/p>\n

\u00a0 \u00a0 \u00a0Th\u00f4ng tin chi ti\u1ebft v\u1ec1 s\u1ea3n ph\u1ea9m<\/strong><\/div>\n
Burner Real Shot \u0110\u1ea7u \u0111\u1ed1t<\/strong><\/div>\n

\"L\u00f2<\/p>\n

H\u00ecnh \u1ea3nh \u1ee9ng d\u1ee5ng s\u1ea3n ph\u1ea9m ch\u1ee5p th\u1ef1c t\u1ebf<\/strong><\/div>\n
S\u1ea3n ph\u1ea9m \u0111\u00e1p \u1ee9ng h\u1ea7u h\u1ebft c\u00e1c y\u00eau c\u1ea7u n\u01b0\u1edbng, l\u00f2 n\u01b0\u1edbng\u00a0\u00a0\u0111a n\u0103ng v\u00e0 gi\u00e1 c\u1ea3 ph\u1ea3i ch\u0103ng.<\/div>\n
<\/div>\n

T\u00ednh n\u0103ng s\u1ea3n ph\u1ea9m<\/strong><\/p>\n

1) Th\u00e0nh ph\u1ea7n quan tr\u1ecdng nh\u1eadp kh\u1ea9u \u0110\u1ee9c\u00a0<\/strong>\u00a0& \u0110\u00e0i Loan\u00a0<\/strong>.<\/strong><\/p>\n

2)\u00a0<\/strong>\u00a0C\u00e1ch nhi\u1ec7t: 2 l\u1edbp, d\u00e0y 145mm,\u00a0\u00a0<\/strong>gi\u1eef nhi\u1ec7t tuy\u1ec7t v\u1eddi\u00a0<\/strong>.<\/strong><\/p>\n

3)\u00a0\u00a0<\/strong>T\u1ea5m t\u1ef1 \u0111\u1ed9ng \u1edf ph\u00eda d\u01b0\u1edbi b\u00ean ngo\u00e0i c\u1eeda, thu\u1eadn ti\u1ec7n cho\u00a0\u00a0<\/strong>\u0111\u1ea7u v\u00e0o v\u00e0 S\u1ea3n l\u01b0\u1ee3ng c\u1ee7a\u00a0<\/strong>r<\/strong>ack\u00a0<\/strong><\/p>\n

4)\u00a0\u00a0<\/strong>Qu\u1ea1t th\u00f4ng gi\u00f3 t\u1ef1 \u0111\u1ed9ng \u0111\u1ec3 ng\u0103n kh\u00f4ng kh\u00ed n\u00f3ng \u1ea3nh h\u01b0\u1edfng \u0111\u1ebfn ng\u01b0\u1eddi v\u1eadn h\u00e0nh khi m\u1edf <\/strong>c\u1eeda <\/strong>.\u00a0<\/strong><\/p>\n

5)\u00a0\u00a0<\/strong>H\u1ec7 th\u1ed1ng \u0111\u01b0\u1ee3c thi\u1ebft k\u1ebf \u0111\u1eb7c bi\u1ec7t \u0111\u1ec3 \u0111\u1ea3m b\u1ea3o nhi\u1ec7t \u0111\u1ed9 v\u00e0 nhi\u1ec7t \u0111\u1ed9 <\/strong>b\u00ean trong l\u00f2 <\/strong>\u0111\u1ed3ng nh\u1ea5t<\/strong><\/p>\n

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Model<\/strong><\/td>\nT\u00caN<\/strong><\/td>\nV\u00d4N<\/strong><\/td>\nC\u00f4ng su\u1ea5t<\/strong><\/td>\nK\u00edch th\u01b0\u1edbc b\u00ean ngo\u00e0i (mm)<\/strong><\/td>\nL\u01b0u \u00fd<\/strong><\/td>\n<\/tr>\n
L<\/strong><\/td>\nW<\/strong><\/td>\nH<\/strong><\/td>\n<\/tr>\n
L\u00f2 n\u01b0\u1edbng gi\u00e1 quay \u0111i\u1ec7n<\/strong><\/td>\n<\/tr>\n
HX-16D-01<\/td>\nL\u00f2 n\u01b0\u1edbng xoay d\u00f9ng \u0111i\u1ec7n 16 khay<\/td>\n380V 50Hz 3N<\/td>\n35kW \/ gi\u1edd<\/td>\n1900<\/td>\n1400<\/td>\n2500<\/td>\nC\u00f3 ch\u1ee9c n\u0103ng phun h\u01a1i n\u01b0\u1edbc<\/td>\n<\/tr>\n
HX-16D-01<\/td>\nL\u00f2 n\u01b0\u1edbng xoay d\u00f9ng \u0111i\u1ec7n 32 khay<\/td>\n380V 50Hz 3N<\/td>\n51W \/ gi\u1edd<\/td>\n2550<\/td>\n1600<\/td>\n2500<\/td>\nC\u00f3 ch\u1ee9c n\u0103ng phun h\u01a1i n\u01b0\u1edbc<\/td>\n<\/tr>\n
HX-16D-01<\/td>\nL\u00f2 n\u01b0\u1edbng xoay d\u00f9ng \u0111i\u1ec7n 64 khay<\/td>\n380V 50Hz 3N<\/td>\n76W \/ gi\u1edd<\/td>\n2800<\/td>\n2600<\/td>\n2500<\/td>\nC\u00f3 ch\u1ee9c n\u0103ng phun h\u01a1i n\u01b0\u1edbc<\/td>\n<\/tr>\n
L\u00f2 n\u01b0\u1edbng\u00a0<\/strong>gi\u00e1 quay Diesel<\/strong><\/td>\n<\/tr>\n
HX-16Y-01<\/td>\nL\u00f2 n\u01b0\u1edbng xoay d\u00f9ng Diesel 16 khay<\/td>\n380V 50Hz 3N<\/td>\n5kW \/ gi\u1edd<\/td>\n1900<\/td>\n1400<\/td>\n2500<\/td>\nC\u00f3 ch\u1ee9c n\u0103ng phun h\u01a1i n\u01b0\u1edbc<\/td>\n<\/tr>\n
HX-16Y-01<\/td>\nL\u00f2 n\u01b0\u1edbng xoay d\u00f9ng Diesel 32 khay<\/td>\n380V 50Hz 3N<\/td>\n5kW \/ gi\u1edd<\/td>\n2550<\/td>\n1600<\/td>\n2500<\/td>\nC\u00f3 ch\u1ee9c n\u0103ng phun h\u01a1i n\u01b0\u1edbc<\/td>\n<\/tr>\n
HX-16Y-01<\/td>\nL\u00f2 n\u01b0\u1edbng xoay d\u00f9ng Diesel 64 khay<\/td>\n380V 50Hz 3N<\/td>\n7kW \/ gi\u1edd<\/td>\n2800<\/td>\n2600<\/td>\n2500<\/td>\nC\u00f3 ch\u1ee9c n\u0103ng phun h\u01a1i n\u01b0\u1edbc<\/td>\n<\/tr>\n
L\u00f2 n\u01b0\u1edbng gi\u00e1 quay b\u1eb1ng gas<\/strong><\/td>\n<\/tr>\n
HX-16Q-01<\/td>\nL\u00f2 n\u01b0\u1edbng xoay d\u00f9ng gas 16 khay<\/td>\n380V 50Hz 3N<\/td>\n5kW \/ gi\u1edd<\/td>\n1900<\/td>\n1400<\/td>\n2500<\/td>\nC\u00f3 ch\u1ee9c n\u0103ng phun h\u01a1i n\u01b0\u1edbc<\/td>\n<\/tr>\n
HX-16Q-01<\/td>\nL\u00f2 n\u01b0\u1edbng xoay d\u00f9ng gas 32 khay<\/td>\n380V 50Hz 3N<\/td>\n5kW \/ gi\u1edd<\/td>\n2550<\/td>\n1600<\/td>\n2500<\/td>\nC\u00f3 ch\u1ee9c n\u0103ng phun h\u01a1i n\u01b0\u1edbc<\/td>\n<\/tr>\n
HX-16Q-01<\/td>\nL\u00f2 n\u01b0\u1edbng xoay d\u00f9ng gas 64 khay<\/td>\n380V 50Hz 3N<\/td>\n7kW \/ gi\u1edd<\/td>\n2800<\/td>\n2600<\/td>\n2500<\/td>\nC\u00f3 ch\u1ee9c n\u0103ng phun h\u01a1i n\u01b0\u1edbc<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"

Th\u00f4ng tin c\u01a1 b\u1ea3n. Model HX-32Y-01 Model Hx-32y-1 (32pan) V\u1eadt li\u1ec7u Th\u00e9p kh\u00f4ng g\u1ec9 ho\u00e0n to\u00e0n # 201 N\u0103ng l\u01b0\u1ee3ng \u0110i\u1ec7n \/ Diesel \/ Gas K\u00edch th\u01b0\u1edbc m\u00e1y 2550L * 1600W * 2500 gi\u1edd S\u1ee9c ch\u1ee9a 32tray 400 * 600\/460 * 720mm \u0110i\u1ec7n \u00e1p 380V C\u00f4ng su\u1ea5t 5kw V\u1eadt li\u1ec7u \u0111\u00f3ng g\u00f3i T\u00f9y ch\u1ec9nh Th\u1ecb […]<\/p>\n","protected":false},"author":2,"featured_media":5724,"comment_status":"open","ping_status":"closed","template":"","meta":[],"product_cat":[47],"product_tag":[],"acf":[],"yoast_head":"\nL\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel HX-32Y-01 - Hongling Vietnam<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/\" \/>\n<meta property=\"og:locale\" content=\"vi_VN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"L\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel HX-32Y-01 - Hongling Vietnam\" \/>\n<meta property=\"og:description\" content=\"Th\u00f4ng tin c\u01a1 b\u1ea3n. Model HX-32Y-01 Model Hx-32y-1 (32pan) V\u1eadt li\u1ec7u Th\u00e9p kh\u00f4ng g\u1ec9 ho\u00e0n to\u00e0n # 201 N\u0103ng l\u01b0\u1ee3ng \u0110i\u1ec7n \/ Diesel \/ Gas K\u00edch th\u01b0\u1edbc m\u00e1y 2550L * 1600W * 2500 gi\u1edd S\u1ee9c ch\u1ee9a 32tray 400 * 600\/460 * 720mm \u0110i\u1ec7n \u00e1p 380V C\u00f4ng su\u1ea5t 5kw V\u1eadt li\u1ec7u \u0111\u00f3ng g\u00f3i T\u00f9y ch\u1ec9nh Th\u1ecb […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongling Vietnam\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/honglingvietnam\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-21T07:58:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/03\/img_623092c919f91.\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"492\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 ph\u00fat\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/hongling.com.vn\/#organization\",\"name\":\"Hongling Vietnam\",\"url\":\"https:\/\/hongling.com.vn\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/honglingvietnam\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"vi\",\"@id\":\"https:\/\/hongling.com.vn\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/07\/hongling_vietnam.jpg\",\"contentUrl\":\"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/07\/hongling_vietnam.jpg\",\"width\":329,\"height\":102,\"caption\":\"Hongling Vietnam\"},\"image\":{\"@id\":\"https:\/\/hongling.com.vn\/#\/schema\/logo\/image\/\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hongling.com.vn\/#website\",\"url\":\"https:\/\/hongling.com.vn\/\",\"name\":\"Hongling Vietnam\",\"description\":\"\u0110\u1ea1i l\u00fd ch\u00ednh th\u1ee9c Hongling t\u1ea1i Vi\u1ec7t Nam\",\"publisher\":{\"@id\":\"https:\/\/hongling.com.vn\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hongling.com.vn\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"vi\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/\",\"url\":\"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/\",\"name\":\"L\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel HX-32Y-01 - Hongling Vietnam\",\"isPartOf\":{\"@id\":\"https:\/\/hongling.com.vn\/#website\"},\"datePublished\":\"2022-03-16T15:54:04+00:00\",\"dateModified\":\"2024-12-21T07:58:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/#breadcrumb\"},\"inLanguage\":\"vi\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Trang ch\u1ee7\",\"item\":\"https:\/\/hongling.com.vn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"S\u1ea3n ph\u1ea9m\",\"item\":\"https:\/\/hongling.com.vn\/san-pham\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"L\u00f2 n\u01b0\u1edbng b\u00e1nh\",\"item\":\"https:\/\/hongling.com.vn\/lo-nuong-banh\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"L\u00f2 n\u01b0\u1edbng xoay\",\"item\":\"https:\/\/hongling.com.vn\/lo-nuong-xoay\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"L\u00f2 n\u01b0\u1edbng xoay 32 khay\",\"item\":\"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay\/\"},{\"@type\":\"ListItem\",\"position\":6,\"name\":\"L\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel\",\"item\":\"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel\/\"},{\"@type\":\"ListItem\",\"position\":7,\"name\":\"L\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel HX-32Y-01\"}]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"L\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel HX-32Y-01 - Hongling Vietnam","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/","og_locale":"vi_VN","og_type":"article","og_title":"L\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel HX-32Y-01 - Hongling Vietnam","og_description":"Th\u00f4ng tin c\u01a1 b\u1ea3n. Model HX-32Y-01 Model Hx-32y-1 (32pan) V\u1eadt li\u1ec7u Th\u00e9p kh\u00f4ng g\u1ec9 ho\u00e0n to\u00e0n # 201 N\u0103ng l\u01b0\u1ee3ng \u0110i\u1ec7n \/ Diesel \/ Gas K\u00edch th\u01b0\u1edbc m\u00e1y 2550L * 1600W * 2500 gi\u1edd S\u1ee9c ch\u1ee9a 32tray 400 * 600\/460 * 720mm \u0110i\u1ec7n \u00e1p 380V C\u00f4ng su\u1ea5t 5kw V\u1eadt li\u1ec7u \u0111\u00f3ng g\u00f3i T\u00f9y ch\u1ec9nh Th\u1ecb […]","og_url":"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/","og_site_name":"Hongling Vietnam","article_publisher":"https:\/\/www.facebook.com\/honglingvietnam","article_modified_time":"2024-12-21T07:58:12+00:00","og_image":[{"width":600,"height":492,"url":"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/03\/img_623092c919f91.","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 ph\u00fat"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/hongling.com.vn\/#organization","name":"Hongling Vietnam","url":"https:\/\/hongling.com.vn\/","sameAs":["https:\/\/www.facebook.com\/honglingvietnam"],"logo":{"@type":"ImageObject","inLanguage":"vi","@id":"https:\/\/hongling.com.vn\/#\/schema\/logo\/image\/","url":"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/07\/hongling_vietnam.jpg","contentUrl":"https:\/\/hongling.com.vn\/wp-content\/uploads\/2022\/07\/hongling_vietnam.jpg","width":329,"height":102,"caption":"Hongling Vietnam"},"image":{"@id":"https:\/\/hongling.com.vn\/#\/schema\/logo\/image\/"}},{"@type":"WebSite","@id":"https:\/\/hongling.com.vn\/#website","url":"https:\/\/hongling.com.vn\/","name":"Hongling Vietnam","description":"\u0110\u1ea1i l\u00fd ch\u00ednh th\u1ee9c Hongling t\u1ea1i Vi\u1ec7t Nam","publisher":{"@id":"https:\/\/hongling.com.vn\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hongling.com.vn\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"vi"},{"@type":"WebPage","@id":"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/","url":"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/","name":"L\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel HX-32Y-01 - Hongling Vietnam","isPartOf":{"@id":"https:\/\/hongling.com.vn\/#website"},"datePublished":"2022-03-16T15:54:04+00:00","dateModified":"2024-12-21T07:58:12+00:00","breadcrumb":{"@id":"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/#breadcrumb"},"inLanguage":"vi","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel-hx-32y-01\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Trang ch\u1ee7","item":"https:\/\/hongling.com.vn\/"},{"@type":"ListItem","position":2,"name":"S\u1ea3n ph\u1ea9m","item":"https:\/\/hongling.com.vn\/san-pham\/"},{"@type":"ListItem","position":3,"name":"L\u00f2 n\u01b0\u1edbng b\u00e1nh","item":"https:\/\/hongling.com.vn\/lo-nuong-banh\/"},{"@type":"ListItem","position":4,"name":"L\u00f2 n\u01b0\u1edbng xoay","item":"https:\/\/hongling.com.vn\/lo-nuong-xoay\/"},{"@type":"ListItem","position":5,"name":"L\u00f2 n\u01b0\u1edbng xoay 32 khay","item":"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay\/"},{"@type":"ListItem","position":6,"name":"L\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel","item":"https:\/\/hongling.com.vn\/lo-nuong-xoay-32-khay-dung-dau-diesel\/"},{"@type":"ListItem","position":7,"name":"L\u00f2 n\u01b0\u1edbng xoay 32 khay d\u00f9ng d\u1ea7u diesel HX-32Y-01"}]}]}},"_links":{"self":[{"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/product\/5825"}],"collection":[{"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/types\/product"}],"author":[{"embeddable":true,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/comments?post=5825"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/media\/5724"}],"wp:attachment":[{"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/media?parent=5825"}],"wp:term":[{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/product_cat?post=5825"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/hongling.com.vn\/wp-json\/wp\/v2\/product_tag?post=5825"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}