You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
470 B
JavaScript
19 lines
470 B
JavaScript
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) + "<em>万</em>" : $(this).text());
|
|
})
|
|
|
|
})
|