xuhy
2023-03-27 957a8e8f5a01de49baa837e30492de511bf407e3
management/guns-admin/src/main/webapp/static/modular/system/tHtml/tHtml.js
@@ -84,6 +84,22 @@
};
/**
 * 查询html
 */
THtml.queryHtml = function (type) {
    var ajax = new $ax(Feng.ctxPath + "/tHtml/agreement", function (data) {
        console.log(data)
        var html = document.getElementById("html");
        html.innerHTML = data.html
        THtml.table.refresh();
    }, function (data) {
        Feng.error("失败!" + data.responseJSON.message + "!");
    });
    ajax.set("type",type);
    ajax.start();
};
/**
 * 查询列表
 */
THtml.search = function () {