
■ 구성품 : 본체, 커프(압박대), 보관용 파우치, 사용자 설명서
■ 크기 : 99mm*160mm*56mm
■ 디스플레이 : LCD 디스플레이
■ 커프 착용 범위 : 22~36cm
■ 측정범위 : 수축기 혈압: 50~250mmHg / 이완기 혈압: 30~200mmHg / 맥박수: 40~180회/분
■ 측정방식 : 비침습성 진동식 방법
■ 정확도 : 혈압: ± 3mmHg / 맥박: ± 5%
■ 특징
- 전자식 터치버튼
- 메모리 기능 : 2명의 혈압을 각 120회까지 기록 가능
- AA배터리로 교체 편리
원");
gd_benefit_calculation();
}
/*
* 혜택
*/
function gd_benefit_calculation() {
$('#frmView input[name="mode"]').val('get_benefit');
var parameters = $("#frmView").serialize();
if ($("#frmView input[name*='goodsNo']").length == 0) {
parameters += "&goodsNo%5B%5D=25847&goodsCnt%5B%5D=1";
}
$.post('../goods/goods_ps.php', parameters, function (data) {
var getData = $.parseJSON(data);
if(getData.totalDcPrice > 0 || getData.totalMileage > 0) {
$(".item_discount_mileage").removeClass('dn');
if(getData.totalDcPrice > 0 ) {
$(".item_discount_mileage span.item_discount").removeClass('dn');
$(".end_price dl.total_discount").removeClass('dn');
var tmp = new Array();
if (getData.goodsDcPrice) tmp.push("상품 : " + " " + gd_money_format(getData.goodsDcPrice) + "원");
if (getData.memberDcPrice) tmp.push("회원 : " + " " + gd_money_format(getData.memberDcPrice) + "원");
if (getData.couponDcPrice) tmp.push("쿠폰 : " + " " + gd_money_format(getData.couponDcPrice) + "원");
$(".benefit_price").html("(" + tmp.join() + ")");
$(".total_benefit_price").html("-" + gd_money_format(getData.totalDcPrice) + "원");
$("#set_dc_price").val(getData.totalDcPrice);
} else {
$("#set_dc_price").val('0');
$(".item_discount_mileage span.item_discount").addClass('dn');
$(".end_price dl.total_discount").addClass('dn');
}
if(getData.totalMileage > 0 ) {
$(".item_discount_mileage span.item_mileage").removeClass('dn');
var tmp =new Array();
if (getData.goodsMileage) tmp.push("상품 : " + gd_money_format(getData.goodsMileage) + "원");
if (getData.memberMileage) tmp.push("회원 : " + gd_money_format(getData.memberMileage) + "원");
if (getData.couponMileage) tmp.push("쿠폰 : " + gd_money_format(getData.couponMileage) + "원");
$(".benefit_mileage").html("("+tmp.join()+")");
$(".total_benefit_mileage").html(gd_money_format(getData.totalMileage) + "원");
} else {
$(".item_discount_mileage span.item_mileage").addClass('dn');
}
} else {
$("#set_dc_price").val('0');
$(".item_discount_mileage").addClass('dn');
$(".end_price dl.total_discount").addClass('dn');
}
if ($('#frmView input[name="set_total_price"]').val().trim() == '0') {
$(".total_price").html("0원");
if ($("#cart_tab_option").length) $("#cart_tab_option .total_benefit_price").html("0원");
} else {
var totalPrice = parseFloat($('#frmView input[name="set_total_price"]').val()) - parseFloat(getData.totalDcPrice);
$(".total_price").html(" " + gd_money_format(totalPrice) + "원");
}
$('button.goods_cnt').attr('disabled', false);
$('button.add_goods_cnt').attr('disabled', false);
// 쿠폰 구매금액 제한에 따른 처리
if (typeof getData.couponAlertKey == 'undefined') {
// 구매 금액 제한에 걸리지 않음
} else {
gd_coupon_cancel(getData.couponAlertKey, 'noCalculation');
alert("적용 쿠폰이 구매 금액 제한에 걸려 적용 쿠폰이 취소 되었습니다.");
}
/* 총 적립금액 : S - 202412*/
const optionMileageElements = document.querySelectorAll('.item_option_mileage');
//옵션별 적립금액이 있거나 TotalMileage가 있을 때
if (optionMileageElements.length > 0 || getData.totalMileage > 0){
let totalOptionMileage = 0; //총 적립금액
var optionMileage; //옵션별 마일리지
optionMileageElements.forEach((el, idx) => {
const baseMileage = el.dataset.baseMileage.replace(/,/g, ''); //옵션별 마일리지 기본값
optionMileage = parseFloat(baseMileage) * goodsOptionCnt[idx]; // 수량에 따른 옵션별 마일리지 금액
var inputMileageValue = $(el).parent().siblings('input#option_item_mileage').val(optionMileage);
el.textContent = Number(inputMileageValue.val()).toLocaleString();
totalOptionMileage += optionMileage; // 총 적립금액 (옵션별 마일리지 누적(총합)금액 )
$("#set_total_option_mileage").val(totalOptionMileage);
});
const totalMileageElement = document.querySelector('.total_option_mileage_price');
if(totalMileageElement) {
if(totalOptionMileage > 0 || getData.totalMileage > 0) {
document.querySelector('.total_mileage').style.display = 'flex';
}else{
document.querySelector('.total_mileage').style.display = 'none';
}
totalMileageElement.innerHTML = (totalOptionMileage + getData.totalMileage).toLocaleString(); //총 누적금액 노출
}
}
/* 총 적립금액 : E - 202412*/
});
}
var salesUnit = parseInt("1");
var minOrderCnt = parseInt("1");
var maxOrderCnt = parseInt("0");
function gd_goods_order(modeStr)
{
$('#frmView input[name=\'cartMode\']').val(modeStr);
if (modeStr == 'w') {
alert("로그인하셔야 본 서비스를 이용하실 수 있습니다.");
document.location.href = "../member/login.php";
return false;
} else {
$('#frmView input[name="mode"]').val('cartIn');
$('#frmView').attr('action','../order/cart_ps.php');
var goodsInfo = $('#frmView input[name="optionSnoInput"]').val();
if (goodsInfo == '') {
alert("가격 정보가 없거나 옵션이 선택되지 않았습니다!");
return false;
}
}
var submitFl = true;
if (isNaN(goodsTotalCnt)) goodsTotalCnt = 1;
if (_.isEmpty(goodsOptionCnt)) goodsOptionCnt[0] = 1;
for (i in goodsOptionCnt) {
if (isNaN(goodsOptionCnt[i])) goodsOptionCnt[i] = 0;
var perSalesCnt = goodsOptionCnt[i] % salesUnit;
if (perSalesCnt !== 0) {
alert(__('%s개 단위로 묶음 주문 상품입니다.', salesUnit));
submitFl = false;
break;
}
}
if (submitFl == true) {
var fixedAlertString = '옵션당';
for (i in goodsOptionCnt) {
if (isNaN(goodsOptionCnt[i])) goodsOptionCnt[i] = 0;
var perSalesCnt = goodsOptionCnt[i] % salesUnit;
if (minOrderCnt > 1 && goodsOptionCnt[i] < minOrderCnt) {
alert(__('최소 구매 수량 미달 : ' + fixedAlertString + ' 최소 %s개 이상 구매가능합니다.', minOrderCnt));
submitFl = false;
break;
} else if (maxOrderCnt > 0 && goodsOptionCnt[i] > maxOrderCnt) {
alert(__('최대 구매 수량 초과 : ' + fixedAlertString + ' 최대 %s개 이하 구매가능합니다.', maxOrderCnt));
submitFl = false;
break;
}
}
}
if ((modeStr == 'd' || modeStr == 'pa') && submitFl === false) {
return false;
}
if(modeStr == 'pa') {
return true;
}
$('#frmView').attr('target','');
// 쿠폰 사용기간 체크
if ($('input:hidden[name="couponApplyNo[]"]').val()) {
var checkCouponType = true;
var couponApplyNo;
$.ajax({
method: "POST",
cache: false,
async: false,
url: "../goods/goods_ps.php",
data: {mode: 'goodsCheckCouponTypeArr', couponNo : $('input:hidden[name="couponApplyNo[]"]').val() },
success: function (data) {
checkCouponType = data.isSuccess;
couponApplyNo = data.setCouponApplyNo.join('||');
},
error: function (e) {
}
});
if(!checkCouponType) {
$('input:hidden[name="couponApplyNo[]"]').val(couponApplyNo);
alert('사용기간이 만료된 쿠폰이 포함되어 있어 제외 후 진행합니다.');
}
}
if (modeStr == 'w' || typeof modeStr == 'undefined') {
var params = $("#frmView").serialize();
if (modeStr == 'w') {
var ajaxUrl = '../mypage/wish_list_ps.php';
var target = $("#addWishLayer");
} else {
var ajaxUrl = '../order/cart_ps.php';
var target = $("#addCartLayer");
}
$.ajax({
method: "POST",
cache: false,
url: ajaxUrl,
data: params,
success: function (data) {
// error 메시지 예외 처리용
if (!_.isUndefined(data.error) && data.error == 1) {
alert(data.message);
return false;
}
target.removeClass('dn');
$('#layerDim').removeClass('dn');
target.find('> div').center();
},
error: function (data) {
alert(data.message);
}
});
} else {
$('#frmView').submit();
}
}
- 1
동일성분 의약품 리스트
장바구니 담기
상품이 장바구니에 담겼습니다.
바로 확인하시겠습니까?
관심상품에 담기
상품이 관심상품에 담겼습니다.
바로 확인하시겠습니까?
고객센터
1688-7517상담시간 : 평일 09:00 - 18:00
점심시간 : 12:00 - 13:00
휴무 : 토,일,공휴일
무통장 입금계좌
- 국민은행 : 033237-04-007472
- 하나은행 : 233-910014-79405
- 신한은행 : 100-031-794555
- 농협은행 : 301-0199-9939-31
예금주 : (주)엠디오씨
공지사항
-
퍼슨 엑스팡정 출시관련 복용안내
16:24
- 3M 실크반창고(Durapore) 신... 2026.08.26
- 벡톤디킨슨(BD) 정맥카테터 회수조치... 2026.08.21
- 카톤특가 EVENT! 2026.06.30
- 최근 국제 정세, 원유 가격 변동으로... 2026.03.25
- 상호명 : (주)엠디오씨
- 대표 : 이승훈
- 사업자등록번호 : 431-81-00504
- 본사 : 서울특별시 동대문구 고산자로 410(용두동) 강동빌딩 B호 304호 물류센터 : 경기도 남양주시 덕송3로 95(별내동) 별내ONE물류센터 7층
- 대표번호 : 1688-7517
- 팩스번호 : 02-6280-2349
- 통신판매업신고 : 제2016-서울동대문-1023호
- 의료기기판매허가번호 : 제 2289호
- 개인정보관리자 : 장다정 메일 : help@medioc.com
copyright (c) medioc.com all rights reserved.











