|
|
@@ -165,7 +165,7 @@
|
|
|
}
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
-
|
|
|
+ getThemeInfo();
|
|
|
})
|
|
|
|
|
|
$('.uploadImage').on('change', function (res) {
|
|
|
@@ -247,6 +247,22 @@
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+ function getThemeInfo() {
|
|
|
+ var config = {
|
|
|
+ url: prefixEdit + '/getHomeIconInfo',
|
|
|
+ type: "post",
|
|
|
+ dataType: "json",
|
|
|
+ data: {},
|
|
|
+ beforeSend: function () {
|
|
|
+ $.modal.loading("正在处理中,请稍后...");
|
|
|
+ },
|
|
|
+ success: function(result) {
|
|
|
+ $.modal.closeLoading();
|
|
|
+ }
|
|
|
+ };
|
|
|
+ $.ajax(config)
|
|
|
+ }
|
|
|
+
|
|
|
function submitHandler() {
|
|
|
if ($.validate.form()) {
|
|
|
var alertTitle = $('#alertTitle').val();
|