Specification
- OE NO. MR130551
- Car Fitment For MITSUBISHI
- Warranty 1 year
- Place of Origin TAIWAN
- Brand Name JAHMA
- Certification D-U-N-S® Certified
Company Profile
ENGINE MOUNT product list
FOR AUDI | ||||
8D0199379-A | 8D0199382-L | 8D0399151-M |
|
|
FOR CHEVROLET | ||||
11720-62G00 13248475 13248554 13248607 13248630 20839833 20839834 20840181 20840183 22712836 22774205 | 22774206 24106262 26671545 90372462 90495169 90495170 9064343 9068936 9072809 9075310 | 93302286 93302287 94540780 95032353 95164488 95190896 95211295 95493722 95969583 96280258 96484909 | 96535400 96535402 96535431 96535495 96535499 96535510 96550225 96550227 96550232 96550234 96550236 | 96550261 96550266 96550315 96591290 96591306 96610705 96626770 96626787 96626813 96626828 96686002 |
FOR CITROEN | ||||
183994 | 184437 |
|
|
|
FOR DAEWOO | ||||
96484907 |
|
|
|
|
FOR DAIHATSU | ||||
12361-87311 | 12361-87383 | 12361-87403 | 12362-87403 |
|
FOR FIAT | ||||
1335129080 | 7610157 |
|
|
|
FOR FORD | ||||
2S656F012LB 2S657M121AA | 4C116A002AE | AB39-6038-JB AB39-6038-MB | AB396B032MB XS61-6P082-CA | XS616038EA |
FOR JEEP | ||||
38163 | 38167 | 38116 |
|
|
FOR GM | ||||
0684184 | 13248549 | 9011456 | 93302281 | 93302282 |
FOR HINO | ||||
12031-1880 |
|
|
|
|
FOR HONDA | ||||
50805-S04-001 50805-S5A-033 50805-SAA-013 50805-SAA-J82 50810-SDA-A02 50810-SEL-T81 50810-SR3-030 50820-S04-013 | 50820-S5A-000 | {
notification.classList.remove('show');
}, 3000);
}
function openFullscreen(image) {
const overlay = document.getElementById("fullscreen-overlay");
const fullscreenImage = document.getElementById("fullscreen-image");
fullscreenImage.src = image.src; // 将点击的图片源传递给全屏展示图片
overlay.style.display = "flex"; // 显示全屏容器
}
function closeFullscreen() {
const overlay = document.getElementById("fullscreen-overlay");
overlay.style.display = "none"; // 关闭全屏容器
}
document.addEventListener("DOMContentLoaded", function () {
// 打开弹窗函数
document.getElementById("send-inquiry").onclick = openPoterModal
document.getElementById("help-btn").onclick = openPoterModal
function openPoterModal() {
document.getElementById("poterOverlay").style.display = "block";
}
// 关闭弹窗函数
function closePoterModal() {
document.getElementById("poterOverlay").style.display = "none";
}
// 绑定关闭按钮点击事件
document.getElementById("poterCloseBtn").addEventListener("click", closePoterModal);
// 点击遮罩层外部区域关闭弹窗
document.getElementById("poterOverlay").addEventListener("click", function (e) {
if (e.target === this) {
closePoterModal();
}
});
let quantityInput = document.getElementById("quantity");
quantityInput.addEventListener("input", function () {
// 移除非数字字符
let newVal = this.value.replace(/[^0-9]/g, "");
this.value = newVal
$("#overlay-quantity").val(newVal)
});
let overlayQuantity = document.getElementById("overlay-quantity");
overlayQuantity.addEventListener("input", function () {
// 移除非数字字符
let newVal = this.value.replace(/[^0-9]/g, "");
this.value = newVal
$("#quantity").val(newVal)
});
$(".add-btn").click(function () {
let qty = parseInt($("#quantity").val())
console.log(qty);
if (qty) {
qty++
} else {
qty = 1
}
$("#quantity").val(qty)
$("#overlay-quantity").val(qty)
})
$(".subtract-btn").click(function () {
let qty = parseInt($("#quantity").val())
if (qty > 1) {
qty--
} else {
qty = 1
}
$("#quantity").val(qty)
$("#overlay-quantity").val(qty)
})
let productId = 2746183;
let supplierId = 154170;
$(".form-submit").click(function () {
let params = {
productId: productId,
supplierId: supplierId,
est_amount: $("#est_amount").val(),
est_quantity: $("#quantity").val(),
email: $("#email").val(),
phone: $("#phone").val(),
message: $("#message").val(),
}
// 遍历 params 对象,检查是否有空值
for (let [key, value] of Object.entries(params)) {
if (!value) { // 检查是否为空或为0直接退出函数
return
}
}
$.ajax({
url: "/api/ProductReserve",
data: params,
method: "POST",
success: function (res) {
if (res.statusCode == 200) {
productId = null
supplierId = null
$("#est_amount").val("")
$("#quantity").val(1)
$("#overlay-quantity").val(1)
$("#email").val("")
$("#phone").val("")
$("#message").val("")
closePoterModal()
showNotification('Successfully');
} else {
alert(res.message)
}
}
})
})
})
|