$(function () { $('a[data-admin="False"]').hide(); $('#headerDataForm').autoValidate({ sysName: { required: true, maxlength: 50 } }, { button: ['sysSave'] }); $('#footerDataForm').autoValidate({ sysFoot: { required: true, maxlength: 50 } }, { button: ['footSave'] }); var bsa = new BootstrapAdmin({ url: Profiles.url, bootstrapTable: null, validateForm: null, modal: null, dataEntity: new DataEntity({ map: { Title: "sysName", Footer: "sysFoot" } }), click: { assign: [{ id: 'sysSave', click: function (row, data) { if ($(this).attr('data-valid') == "true") { $.bc({ url: Profiles.url, data: { name: '网站标题', code: data.Title, category: Profiles.title }, title: Profiles.title, callback: function (result) { if (result) $('#websiteTitle').text(data.Title); } }); } } }, { id: 'footSave', click: function (row, data) { if ($(this).attr('data-valid') == "true") { $.bc({ url: Profiles.url, data: { name: '网站页脚', code: data.Footer, category: Profiles.title }, title: Profiles.title, callback: function (result) { if (result) $('#websiteFooter').text(data.Footer); } }); } } }, { id: 'cssSave', click: function (row, data) { var cssDefine = $('#dictCssDefine').attr('data-val'); if (cssDefine) { $.bc({ url: Profiles.url, data: { name: '使用样式', code: cssDefine, category: '当前样式' }, title: '网站样式', callback: function (result) { if (result) { window.setTimeout(function () { window.location.reload(true); }, 1000); } } }); } } }] } }); var $sortable = $('#sortable'); var listCacheUrl = function (options) { options = $.extend({ clear: false }, options); $sortable.html(''); $.bc({ url: Profiles.url, method: 'GET', swal: false, callback: function (result) { if (result && $.isArray(result)) { $.each(result, function (index, item) { listCache($.extend({ item: item, url: item.Url }, options)); }); } } }); } var listCache = function (options) { options = $.extend({ clear: false, key: '' }, options); if (options.key != '') { options.url = $.format(options.url, options.key); } if (options.clear) { options.url += '&clear=clear'; } $.bc({ url: options.url, swal: false, callback: function (result) { if (result && options.key == '') { result = $.parseJSON(result); if ($.isArray(result)) { var html = '