Browse Source
Merge pull request #16966 from abpframework/auto-merge/rel-7-0/2032
Merge branch rel-7.1 with rel-7.0
pull/16967/head
maliming
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
3 deletions
-
modules/setting-management/src/Volo.Abp.SettingManagement.Web/Pages/SettingManagement/Index.js
|
|
|
@ -7,7 +7,8 @@ |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
var id = _this.data("id") |
|
|
|
var id = _this.data("id"); |
|
|
|
var tabId = id.replace(/\./g, '-'); |
|
|
|
abp.ui.block({ |
|
|
|
elm: '#tab-content', |
|
|
|
busy: true, |
|
|
|
@ -19,8 +20,8 @@ |
|
|
|
processData: false |
|
|
|
}).done(function (response) { |
|
|
|
$('#tab-content').children('.tab-pane').removeClass('show').removeClass('active'); |
|
|
|
_this.attr('data-bs-target', '#' + $.escapeSelector(id)); |
|
|
|
$('#tab-content').append('<div id=' + $.escapeSelector(id) + ' class="tab-pane fade active show">' + response + '</div>'); |
|
|
|
_this.attr('data-bs-target', '#' + tabId); |
|
|
|
$('#tab-content').append('<div id=' + tabId + ' class="tab-pane fade active show">' + response + '</div>'); |
|
|
|
}) |
|
|
|
}); |
|
|
|
}).first().click(); |
|
|
|
|