/**
* mplus_mobile_emrDetail
*/
var mplus_mobile_emrDetail = function(){
//상속
mplus_common.call(this);
//super
var self = this;
//변수
var div = $("
");
var tr = $("
");
var th = $("
");
var td = $("
");
var tbody = $("");
var table = $("
");
var li = $("");
var a = $("");
var span = $("");
var button = $("");
var $patientName = $('#patientName'),
$datepicker = $('#datepicker'),
$selectbox = $('#selectbox'),
$prescriptionList = $('#prescriptionList');
/**
* 초기화
*/
this.init = function(){
addEvent();
};
/**
* 이벤트 등록
*/
var addEvent = function(){
};
};