|
@ -18,8 +18,11 @@
|
|
deviceInfo = {
|
|
deviceInfo = {
|
|
//变量
|
|
//变量
|
|
$form: $("#div_patient_info_form"),
|
|
$form: $("#div_patient_info_form"),
|
|
|
|
$manufacturer: $("#sel_manufacturer"),
|
|
init: function () {
|
|
init: function () {
|
|
this.$form.attrScan();
|
|
|
|
|
|
_this = this;
|
|
|
|
this.$form.attrScan();
|
|
|
|
|
|
$("#inp_applyDate").ligerTextBox({width: 240}) //申请日期
|
|
$("#inp_applyDate").ligerTextBox({width: 240}) //申请日期
|
|
$("#inp_orgName").ligerTextBox({width: 240})//机构名称
|
|
$("#inp_orgName").ligerTextBox({width: 240})//机构名称
|
|
$("#inp_linkman").ligerTextBox({width: 240})//联系人
|
|
$("#inp_linkman").ligerTextBox({width: 240})//联系人
|
|
@ -29,26 +32,37 @@
|
|
$("#inp_deviceModel").ligerTextBox({width: 240})//设备型号
|
|
$("#inp_deviceModel").ligerTextBox({width: 240})//设备型号
|
|
$("#inp_deviceCode").ligerTextBox({width: 240})//设备唯一标识
|
|
$("#inp_deviceCode").ligerTextBox({width: 240})//设备唯一标识
|
|
$("#inp_sim").ligerTextBox({width: 240})//设备sim
|
|
$("#inp_sim").ligerTextBox({width: 240})//设备sim
|
|
$("#inp_manufacturer").ligerTextBox({width: 240})//厂家名称
|
|
|
|
|
|
// $("#inp_manufacturer").ligerTextBox({width: 240})//厂家名称
|
|
$("#inp_address").ligerTextBox({width: 240})//厂家地址
|
|
$("#inp_address").ligerTextBox({width: 240})//厂家地址
|
|
$("#inp_representative").ligerTextBox({width: 240})//法人代表
|
|
$("#inp_representative").ligerTextBox({width: 240})//法人代表
|
|
$("#inp_applicantName").ligerTextBox({width: 240})//申请注册人
|
|
$("#inp_applicantName").ligerTextBox({width: 240})//申请注册人
|
|
$("#inp_applicantIdentity").ligerTextBox({width: 240})//申请人身份证号
|
|
$("#inp_applicantIdentity").ligerTextBox({width: 240})//申请人身份证号
|
|
$("#inp_applicantTel").ligerTextBox({width: 240})//申请人手机
|
|
$("#inp_applicantTel").ligerTextBox({width: 240})//申请人手机
|
|
$("#inp_applicantMail").ligerTextBox({width: 240})//申请人邮箱
|
|
$("#inp_applicantMail").ligerTextBox({width: 240})//申请人邮箱
|
|
},
|
|
|
|
initForm: function () {
|
|
|
|
var _this = this;
|
|
|
|
|
|
|
|
_this.manufacturerBox = $("#sel_manufacturer").ligerComboBox({
|
|
|
|
data: [
|
|
|
|
{text: '三诺生物传感股份有限公司', id: 'threeNod'},
|
|
|
|
{text: '深圳市优瑞恩科技有限公司', id: 'urion'},
|
|
|
|
{text: '爱奥乐医疗器械(深圳)有限公司', id: 'bioland'} ,
|
|
|
|
{text: '中兴云湃*脉搏波', id: 'yunpai'} ,
|
|
|
|
{text: '康为血糖仪', id: 'comvee'}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
|
//厂商下拉框
|
|
|
|
_this.manufacturerBox = _this.$manufacturer.ligerComboBox({
|
|
|
|
url: ctx + "/admin/manufacturer/findAll",
|
|
|
|
parms: {},
|
|
|
|
dataParmName: "data",
|
|
|
|
textField: "manufacturerName",
|
|
|
|
valueField: "manufacturerCode",
|
|
|
|
isMultiSelect: false,
|
|
|
|
ajaxBeforeSend: function (xhr) {
|
|
|
|
if (ajaxHeaderName) {
|
|
|
|
xhr.setRequestHeader(ajaxHeaderName, ajaxHeaderValue);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
//厂商下拉框刷新
|
|
|
|
_this.reloadManufacturerBox = function () {
|
|
|
|
deviceInfo.manufacturerBox.reload();
|
|
|
|
};
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
initForm: function () {
|
|
|
|
_this = this;
|
|
|
|
|
|
//修改、查看
|
|
//修改、查看
|
|
$.ajax({
|
|
$.ajax({
|
|
@ -76,11 +90,10 @@
|
|
applicantName: data.applicantName,
|
|
applicantName: data.applicantName,
|
|
applicantIdentity: data.applicantIdentity,
|
|
applicantIdentity: data.applicantIdentity,
|
|
applicantTel: data.applicantTel,
|
|
applicantTel: data.applicantTel,
|
|
applicantMail: data.applicantMail
|
|
|
|
|
|
applicantMail: data.applicantMail,
|
|
});
|
|
});
|
|
//填值
|
|
//填值
|
|
_this.manufacturerBox.selectValue(data.manufacturerCode);
|
|
_this.manufacturerBox.selectValue(data.manufacturerCode);
|
|
|
|
|
|
} else {
|
|
} else {
|
|
$.Notice.error(result.msg);
|
|
$.Notice.error(result.msg);
|
|
}
|
|
}
|
|
@ -144,8 +157,9 @@
|
|
$("#btn_save").click(function () {
|
|
$("#btn_save").click(function () {
|
|
var values = self.$form.Fields.getValues();
|
|
var values = self.$form.Fields.getValues();
|
|
|
|
|
|
//厂家代码
|
|
|
|
values.manufacturerCode = $("#sel_manufacturer").ligerComboBox("getValue");
|
|
|
|
|
|
//厂家名称
|
|
|
|
values.manufacturerCode = self.manufacturerBox.getValue();
|
|
|
|
values.manufacturer = self.manufacturerBox.getText();
|
|
if (!validator.validate()) {
|
|
if (!validator.validate()) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@ -173,7 +187,7 @@
|
|
$("#btn_cancel").click(function () {
|
|
$("#btn_cancel").click(function () {
|
|
parent.window.closeDeviceInfoDialog();
|
|
parent.window.closeDeviceInfoDialog();
|
|
});
|
|
});
|
|
}
|
|
|
|
|
|
},
|
|
}
|
|
}
|
|
pageInit();
|
|
pageInit();
|
|
});
|
|
});
|