layui.config({ base : "/js/" }).use(['form','element','layer','jquery'],function(){ var form = layui.form, layer = parent.layer === undefined ? layui.layer : parent.layer, element = layui.element, $ = layui.jquery; $(".panel a").on("click",function(){ window.parent.addTab($(this)); }) //数字格式化 $(".panel span").each(function(){ $(this).html($(this).text()>9999 ? ($(this).text()/10000).toFixed(2) + "" : $(this).text()); }) })