|
@@ -93,6 +93,10 @@
|
|
|
<label for="symptom_id">症状</label>
|
|
|
<input type="text" id="symptom_id" placeholder="" size="150">
|
|
|
</div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="other_id">其他史</label>
|
|
|
+ <input type="text" id="other_id" placeholder="" size="150">
|
|
|
+ </div>
|
|
|
<div class="form-group">
|
|
|
<label for="diag_id">诊断</label>
|
|
|
<input type="text" id="diag_id" placeholder="" size="50">
|
|
@@ -384,6 +388,7 @@
|
|
|
d.resourceType = resourceType;
|
|
|
d.algorithmClassifyValue = algorithmClassify;
|
|
|
var symptom = $("#symptom_id").val();
|
|
|
+ var other = $("#other_id").val();
|
|
|
var diag = $("#diag_id").val();
|
|
|
var length = $("#length").val();
|
|
|
var sex = $("#sex").val();
|
|
@@ -395,6 +400,9 @@
|
|
|
if (symptom != null && symptom != undefined) {
|
|
|
d.symptom = symptom;
|
|
|
}
|
|
|
+ if (other != null && other != undefined) {
|
|
|
+ d.other = other;
|
|
|
+ }
|
|
|
if (diag != null && diag != undefined && diag != '') {
|
|
|
d.diag = diag;
|
|
|
}
|
|
@@ -474,6 +482,7 @@
|
|
|
d.resourceType = resourceType;
|
|
|
d.algorithmClassifyValue = algorithmClassify;
|
|
|
var symptom = $("#symptom_id").val();
|
|
|
+ var other = $("#other_id").val();
|
|
|
var diag = $("#diag_id").val();
|
|
|
var length = $("#length").val();
|
|
|
var sex = $("#sex").val();
|
|
@@ -485,6 +494,9 @@
|
|
|
if (symptom != null && symptom != undefined) {
|
|
|
d.symptom = symptom;
|
|
|
}
|
|
|
+ if (other != null && other != undefined) {
|
|
|
+ d.other = other;
|
|
|
+ }
|
|
|
if (diag != null && diag != undefined && diag != '') {
|
|
|
d.diag = diag;
|
|
|
}
|