|
@@ -1402,6 +1402,7 @@
|
|
|
});
|
|
|
//初始化加载
|
|
|
if(formSubmitted){
|
|
|
+ debugger
|
|
|
//基本信息页面1
|
|
|
function populateSelections(insuranceList) {
|
|
|
var insurances = insuranceList.split(',');
|
|
@@ -1434,6 +1435,46 @@
|
|
|
$('#insurance').on('change', function() {
|
|
|
updateSelectedValues();
|
|
|
});
|
|
|
+ /*<![CDATA[*/
|
|
|
+ var contactsData = /*[[${contactsData}]]*/ '';
|
|
|
+ /*]]>*/
|
|
|
+ // 遍历数据并动态生成表格行
|
|
|
+ contactsData.forEach(function(item, index) {
|
|
|
+ var row = '<tr>' +
|
|
|
+ '<td>' + (index + 1) + '</td>' +
|
|
|
+ '<td>' + item.contactPhone + '</td>' +
|
|
|
+ '<td>' + item.contactName + '</td>' +
|
|
|
+ '<td>' + item.contactRelationship + '</td>' +
|
|
|
+ '<td><button onclick="deleteRow(this)">删除</button></td>' +
|
|
|
+ '</tr>';
|
|
|
+ $('#relationTableBody').append(row);
|
|
|
+ });
|
|
|
+ /*<![CDATA[*/
|
|
|
+ var recordsData = /*[[${recordsData}]]*/ '';
|
|
|
+ /*]]>*/
|
|
|
+ // 遍历数据并动态生成表格行
|
|
|
+ recordsData.forEach(function(item, index) {
|
|
|
+ var row = '<tr>' +
|
|
|
+ '<td>' + (index + 1) + '</td>' +
|
|
|
+ '<td>' + item.medicationDescription + '</td>' +
|
|
|
+ '<td>' + item.medicationType + '</td>' +
|
|
|
+ '<td><button onclick="deleteRow(this)">删除</button></td>' +
|
|
|
+ '</tr>';
|
|
|
+ $('#yyqkTableBody').append(row);
|
|
|
+ });
|
|
|
+ /*<![CDATA[*/
|
|
|
+ var historyData = /*[[${historyData}]]*/ '';
|
|
|
+ /*]]>*/
|
|
|
+ // 遍历数据并动态生成表格行
|
|
|
+ historyData.forEach(function(item, index) {
|
|
|
+ var row = '<tr>' +
|
|
|
+ '<td>' + (index + 1) + '</td>' +
|
|
|
+ '<td>' + item.disease + '</td>' +
|
|
|
+ '<td>' + item.member + '</td>' +
|
|
|
+ '<td><button onclick="deleteRow(this)">删除</button></td>' +
|
|
|
+ '</tr>';
|
|
|
+ $('#familyHistoryTableBody').append(row);
|
|
|
+ });
|
|
|
}
|
|
|
// 绑定事件监听,当复选框状态改变时更新错误提示
|
|
|
$('input[name="insurance2"]').on('change', function() {
|