.time-input{
display: inline;
}
.add-right{
float: right;
font-size: 20px;
border: 1px solid #111111;
border-radius: 50%;
padding: 0px 10px 2px 10px;
}
var prefix = ctx + “system/serve”;
$(function(){
serveList();
})
function serveList(){
var options = {
url: prefix + “/list”,
createUrl: prefix + “/add”,
showRefresh: false,
showColumns: false,
showToggle: false,
showSearch: false,
columns:[{
checkbox: true
},{
field: ‘name’,
title: ‘员工姓名’
},{
field: ’empId’,
title: ‘员工编号’
},{
field: ‘startTime’,
title: ‘开始时间’
},{
field: ‘endTime’,
title: ‘结束时间’
},{
field: ’empAsfl’,
title: ‘请假原因’
},{
field: ‘asflStatus’,
title: ‘请假状态’
}]
}
$.table.init(options);
}