|
|
@@ -123,7 +123,7 @@ $(function() {
|
|
|
var id = $(this).attr("_id");
|
|
|
var row = tableData['key'+id];
|
|
|
|
|
|
- var html = '<div>';
|
|
|
+ /*var html = '<div>';
|
|
|
if (row.registryList) {
|
|
|
for (var index in row.registryList) {
|
|
|
html += (parseInt(index)+1) + '. <span class="badge bg-green" >' + row.registryList[index] + '</span><br>';
|
|
|
@@ -135,8 +135,19 @@ $(function() {
|
|
|
title: I18n.jobinfo_opt_registryinfo ,
|
|
|
btn: [ I18n.system_ok ],
|
|
|
content: html
|
|
|
- });
|
|
|
+ });*/
|
|
|
+
|
|
|
+ var html = '<table class="table table-bordered"><tbody>';
|
|
|
+ if (row.registryList) {
|
|
|
+ for (var index in row.registryList) {
|
|
|
+ html += '<tr><th>' + (parseInt(index)+1) + '</th>';
|
|
|
+ html += '<th><span class="badge bg-green" >' + row.registryList[index] + '</span></th><tr>';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ html += '</tbody></table>';
|
|
|
|
|
|
+ $('#showRegistryListModal .data').html(html);
|
|
|
+ $('#showRegistryListModal').modal({backdrop: false, keyboard: false}).modal('show');
|
|
|
});
|
|
|
|
|
|
|