xblock中添加日志

1. 把下面的内容保存为util.py

定义logger

# coding: utf8
# luofuwen

import logging


class Util:
    @staticmethod
    def logger(config):
 '''
        获取logger
        '''
        fh = logging.FileHandler(config['logFile'], encoding="utf-8")
        fmt = logging.Formatter(config['logFmt'])
        fh.setFormatter(fmt)
        logger = logging.getLogger(config['logName'])
        logger.setLevel(config['logLevel'])
        logger.addHandler(fh)
        return logger

2. 把下面的内容保存为conf.py

用于定义log的储存位置和格式

# coding:utf8
# luofuwen

import logging


class Config:
    # log config
    loggerConfig = {
     'logFile':'/tmp/workflow_block.log',
     'logFmt':'%(asctime)s - %(filename)s:%(lineno)s - %(name)s - %(message)s',
     'logLevel': logging.INFO,
     'logName': 'WorkflowXBlockLogger',
    }


3. 如workflow.py   在xblock的类中加入下面的命令

from conf import Config
from util import Util
import logging

class WorkflowXBlock(XBlock):
    """
    这是一个工作流测试的xblock
    """

 # Fields are defined on the class.  You can access them in your code as
    # self.<fieldname>.

 # TO-DO: delete count, and define your own fields.

    logger = Util.logger(Config.loggerConfig)
    @XBlock.json_handler
   def increment_count(self, data, suffix=''):
           """
        An example handler, which increments the data.
        """
 # Just to show data coming in...
        assert data['hello'] == 'world'


       self.count += 1
       student = self.runtime.get_real_user(self.runtime.anonymous_student_id)
       studentEmail = student.email
       studentUsername = student.username
       studentIsStaff = student.is_staff
       self.logger.info('workflow test:%s, email=%s,username=%s,isStaff=%s',str(self.count),studentEmail,studentUsername,studentIsStaff)
       return {"count": self.count}



nodejs安装我现在就负责把管理员模块前端完善好,你告诉我我怎么做,以下是我现有的管理员模块代码addminadd.html: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> 管理员管理 </title> <meta name="renderer" content="webkit"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="format-detection" content="telephone=no"> <script type="text/javascript" src="lib/loading/okLoading.js"></script> <link rel="stylesheet" href="css/main.css" media="all"> </head> <style> .imgs{display: none;} .picture{display: none;} </style> <body> <div class="x-body"> <form class="layui-form" id="adminadd"> <input type="hidden" name="id" value=""> <div class="layui-form-item"> <label for="username" class="layui-form-label"> <span class="x-red">*</span>登录名 </label> <div class="layui-input-inline"> <input type="text" id="name" name="name" required="" lay-verify="required" autocomplete="off" class="layui-input" value=""> </div> <div class="layui-form-mid layui-word-aux"> <span class="x-red">*</span>将会成为您唯一的登入名 </div> </div> <div class="layui-form-item"> <label for="phone" class="layui-form-label"> <span class="x-red">*</span>手机 </label> <div class="layui-input-inline"> <input type="text" id="phone" name="phone" required="" lay-verify="phone" autocomplete="off" class="layui-input" value=""> </div> <div class="layui-form-mid layui-word-aux"> <span class="x-red">*</span>将会成为您唯一的登入名 </div> </div> <div class="layui-form-item"> <label for="role" class="layui-form-label"> <span class="x-red">*</span>用户组 </label> <div class="layui-input-inline"> <select name="group_id"> <option value="">请选择角色</option> <option value="1" >超级管理员</option> </select> </div> </div> <div class="layui-form-item"> <label for="link" class="layui-form-label"> <span class="x-red">*</span>缩略图 </label> <div class="layui-input-inline"> <div class="site-demo-upbar"> <div class=" layui-upload-button" style="border:#FFFFFF ;"> <button type="button" class="layui-btn" id="test1"> <i class="layui-icon"></i>上传图片 </button> <input class="layui-upload" type="file" accept="undefined" id="previewImg" name="img" onchange="upload(this,)"> </div> </div> </div> <a href="javascript:;" style="" class="layui-btn " id="cancel"><i class="layui-icon">ဂ</i>撤销上传</a> </div> <div class="layui-form-item imgs" id="imgshow"> <label class="layui-form-label">缩略图展示 </label> <img src="" id="pimages" name="pimages" style="width: 400px;height: 200px;"/> <input id="avatar" name="image" required="" type="hidden" value=""> </div> <div class="layui-form-item"> <label for="L_pass" class="layui-form-label"> <span class="x-red">*</span>密码 </label> <div class="layui-input-inline"> <input type="password" id="L_pass" name="password" required="" lay-verify="pass" autocomplete="off" class="layui-input" value=""> </div> <div class="layui-form-mid layui-word-aux"> 6到16个字符 </div> </div> <div class="layui-form-item"> <label for="L_repass" class="layui-form-label"> <span class="x-red">*</span>确认密码 </label> <div class="layui-input-inline"> <input type="password" id="L_repass" name="repass" required="" lay-verify="repass" autocomplete="off" class="layui-input"> </div> </div> <div class="layui-form-item"> <label class="layui-form-label">状态</label> <div class="layui-input-block"> <input type="radio" name="status" value="1" title="启用" checked="checked"> <div class="layui-unselect layui-form-radio layui-form-radioed"><i class="layui-anim layui-icon layui-anim-scaleSpring"></i> <div>启用</div> </div> <input type="radio" name="status" value="0" title="禁用" checked="checked"> <div class="layui-unselect layui-form-radio"><i class="layui-anim layui-icon"></i> <div>禁用</div> </div> </div> </div> <div class="layui-form-item"> <label for="L_repass" class="layui-form-label"> </label> <button class="layui-btn" lay-filter="add" lay-submit=""> 增加 </button> </div> </form> </div> <script src="lib/layui/layui.js" charset="utf-8"> </script> <script src="js/x-layui.js" charset="utf-8"> </script> <script> layui.use(['form','layer'], function(){ $ = layui.jquery; var form = layui.form() ,layer = layui.layer; okLoading.close($); //自定义验证规则 /*form.verify({ nikename: function(value){ if(value.length < 5){ return '昵称至少得5个字符啊'; } } ,pass: [/(.+){6,12}$/, '密码必须6到12位'] ,repass: function(value){ if($('#L_pass').val()!=$('#L_repass').val()){ return '两次密码不一致'; } } });*/ //监听提交 form.on('submit(add)', function(data){ var admindate=$("#adminadd").serialize(); //var data = data.field; $.ajax({ type:'post', url:"xxx", data:admindate, datatype:"json", success:function (data) { if(data.status==1){ layer.msg(data.info,{icon:1,time:1000}); setTimeout(function(){ window.parent.location.reload(); var index = parent.layer.getFrameIndex(window.name); parent.layer.close(index); },1000); return false; }else{ layer.msg(data.info,{icon:5,time:2000});return false; } } }) return false; }); }); </script> <script> //轮播图上传 function upload(obj,id) { var formData = new FormData(); formData.append('img', $('#previewImg')[0].files[0]); formData.append('id', id);//将id追加再id中 layer.msg('图片上传中', {icon: 16}); $.ajax({ type:"post", processData: false, contentType: false, url:"xxx", data:formData, success:function(data){ if(data.status == 1){ //console.log(data.image_name); layer.closeAll('loading'); //layer.msg(data.info,{icon:1,time:1000}); $("#pimages").attr('src',data.image_name); $("#avatar").val(data.image_name); $(".imgs").show(); return false; }else{ layer.msg(data.info,{icon:2,time:1000}); } } }); } </script> </body> </html> 和adminlist.html: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> 管理员列表 </title> <meta name="renderer" content="webkit"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="format-detection" content="telephone=no"> <script type="text/javascript" src="lib/loading/okLoading.js"></script> <link rel="stylesheet" href="css/main.css" media="all"> <link rel="stylesheet" href="css/bootstrap.css"> </head> <body> <div class="x-nav"> <span class="layui-breadcrumb"> <a><cite>首页</cite></a> <a><cite>管理员管理</cite></a> <a><cite>管理员列表</cite></a> </span> <a class="layui-btn layui-btn-small" style="line-height:1.6em;margin-top:3px;float:right" href="javascript:location.replace(location.href);" title="刷新"><i class="layui-icon" style="line-height:30px">ဂ</i></a> </div> <div class="x-body"> <form class="layui-form x-center" action="" style="width:80%"> <div class="layui-form-pane" style="margin-top: 15px;"> <div class="layui-form-item"> <label class="layui-form-label">日期范围</label> <div class="layui-input-inline"> <input class="layui-input" placeholder="开始日" id="LAY_demorange_s"> </div> <div class="layui-input-inline"> <input class="layui-input" placeholder="截止日" id="LAY_demorange_e"> </div> <div class="layui-input-inline"> <input type="text" name="username" placeholder="请输入登录名" autocomplete="off" class="layui-input"> </div> <div class="layui-input-inline" style="width:80px"> <button class="layui-btn" lay-submit="" lay-filter="sreach"><i class="layui-icon"></i></button> </div> </div> </div> </form> <xblock> <button class="layui-btn layui-btn-danger" onclick="delAll()"><i class="layui-icon"></i>批量删除</button> <button class="layui-btn" onclick="admin_add('添加用户','adminadd.html','600','500')"><i class="layui-icon"></i>添加</button> <span class="x-right" style="line-height:40px">共有数据:88 条</span> </xblock> <table class="layui-table"> <thead> <tr> <th> <input type="checkbox" name="" value=""> </th> <th> ID </th> <th> 登录名 </th> <th> 手机 </th> <th> 邮箱 </th> <th> 角色 </th> <th> 加入时间 </th> <th> 状态 </th> <th> 操作 </th> </tr> </thead> <tbody> <tr> <td> <input type="checkbox" value="1" name=""> </td> <td> 1 </td> <td> admin </td> <td > 1111111111 </td> <td > 1111111@qq.com </td> <td > </td> <td> 1970-01-01 08:00:00 </td> <td class="td-status"> <span class="layui-btn layui-btn-normal " onclick="admin_stop(this,'1',0)"> 启用 </span> </td> <td class="td-manage"> <!--<a style="text-decoration:none" onclick="admin_stop(this,'1')" href="javascript:;" title="停用"> <i class="layui-icon"></i> </a>--> <a title="编辑" href="javascript:;" onclick="admin_edit('编辑','adminadd.html','1','','510')" class="ml-5" style="text-decoration:none"> <i class="layui-icon"></i> </a> <a title="删除" href="javascript:;" onclick="admin_del(this,'1')" style="text-decoration:none"> <i class="layui-icon"></i> </a> </td> </tr> <tr> <td> <input type="checkbox" value="1" name=""> </td> <td> 2 </td> <td> admin1 </td> <td > 1111111111 </td> <td > 111111111@qq.com </td> <td > 超级管理员 </td> <td> 1970-01-01 08:00:00 </td> <td class="td-status"> <span class="layui-btn layui-btn-normal " onclick="admin_stop(this,'2',0)"> 启用 </span> </td> <td class="td-manage"> <!--<a style="text-decoration:none" onclick="admin_stop(this,'2')" href="javascript:;" title="停用"> <i class="layui-icon"></i> </a>--> <a title="编辑" href="javascript:;" onclick="admin_edit('编辑','adminadd.html','2','','510')" class="ml-5" style="text-decoration:none"> <i class="layui-icon"></i> </a> <a title="删除" href="javascript:;" onclick="admin_del(this,'1')" style="text-decoration:none"> <i class="layui-icon"></i> </a> </td> </tr> <tr> <td> <input type="checkbox" value="1" name=""> </td> <td> 3 </td> <td> admin2 </td> <td > 11111111 </td> <td > 11111111@qq.com </td> <td > 超级管理员 </td> <td> 1970-01-01 08:00:00 </td> <td class="td-status"> <span class="layui-btn layui-btn-normal " onclick="admin_stop(this,'3',0)"> 启用 </span> </td> <td class="td-manage"> <!--<a style="text-decoration:none" onclick="admin_stop(this,'3')" href="javascript:;" title="停用"> <i class="layui-icon"></i> </a>--> <a title="编辑" href="javascript:;" onclick="admin_edit('编辑','adminadd.html','3','','510')" class="ml-5" style="text-decoration:none"> <i class="layui-icon"></i> </a> <a title="删除" href="javascript:;" onclick="admin_del(this,'1')" style="text-decoration:none"> <i class="layui-icon"></i> </a> </td> </tr> <tr> <td> <input type="checkbox" value="1" name=""> </td> <td> 4 </td> <td> admin </td> <td > 1111111111 </td> <td > 111111111@qq.com </td> <td > </td> <td> 2019-07-20 17:03:28 </td> <td class="td-status"> <span class="layui-btn layui-btn-normal " onclick="admin_stop(this,'4',0)"> 启用 </span> </td> <td class="td-manage"> <!--<a style="text-decoration:none" onclick="admin_stop(this,'4')" href="javascript:;" title="停用"> <i class="layui-icon"></i> </a>--> <a title="编辑" href="javascript:;" onclick="admin_edit('编辑','adminadd.html','4','','510')" class="ml-5" style="text-decoration:none"> <i class="layui-icon"></i> </a> <a title="删除" href="javascript:;" onclick="admin_del(this,'1')" style="text-decoration:none"> <i class="layui-icon"></i> </a> </td> </tr> <tr> <td> <input type="checkbox" value="1" name=""> </td> <td> 5 </td> <td> admin </td> <td > 11111111 </td> <td > 111111111@qq.com </td> <td > </td> <td> 2019-07-20 17:03:41 </td> <td class="td-status"> <span class="layui-btn layui-btn-normal " onclick="admin_stop(this,'5',0)"> 启用 </span> </td> <td class="td-manage"> <!--<a style="text-decoration:none" onclick="admin_stop(this,'5')" href="javascript:;" title="停用"> <i class="layui-icon"></i> </a>--> <a title="编辑" href="javascript:;" onclick="admin_edit('编辑','adminadd.html','5','','510')" class="ml-5" style="text-decoration:none"> <i class="layui-icon"></i> </a> <a title="删除" href="javascript:;" onclick="admin_del(this,'1')" style="text-decoration:none"> <i class="layui-icon"></i> </a> </td> </tr> </tbody> </table> <div id="page"></div> </div> <script src="lib/layui/layui.js" charset="utf-8"></script> <script src="js/x-layui.js" charset="utf-8"></script> <script> layui.use(['laydate','element','laypage','layer'], function(){ $ = layui.jquery;//jquery laydate = layui.laydate;//日期插件 lement = layui.element();//面包导航 laypage = layui.laypage;//分页 layer = layui.layer;//弹出层 okLoading.close($); //以上模块根据需要引入 /*laypage({ cont: 'page' ,pages: 100 ,first: 1 ,last: 100 ,prev: '<' ,next: '>' }); */ var start = { min: laydate.now() ,max: '2099-06-16 23:59:59' ,istoday: false ,choose: function(datas){ end.min = datas; //开始日选好后,重置结束日的最小日期 end.start = datas //将结束日的初始值设定为开始日 } }; var end = { min: laydate.now() ,max: '2099-06-16 23:59:59' ,istoday: false ,choose: function(datas){ start.max = datas; //结束日选好后,重置开始日的最大日期 } }; document.getElementById('LAY_demorange_s').onclick = function(){ start.elem = this; laydate(start); } document.getElementById('LAY_demorange_e').onclick = function(){ end.elem = this laydate(end); } }); //批量删除提交 function delAll () { layer.confirm('确认要删除吗?',function(index){ //捉到所有被选中的,发异步进行删除 layer.msg('删除成功', {icon: 1}); }); } /*添加*/ function admin_add(title,url,w,h){ x_admin_show(title,url,w,h); } /*停用*/ function admin_stop(obj,id,e){ layer.confirm(e==1?'你确定要启用吗?':'你确定要禁用吗?',{icon: 3, title:'提示'},function(index){ $.ajax({ type:"post", url:"xxx", data:{id:id,status:e}, dataType:"json", success:function(data) { if(data.status==1){ //发异步把用户状态进行更改 $(obj).attr("class","layui-btn layui-btn-danger "); $(obj).text("隐藏"); $(obj).remove(); layer.msg(data.info,{icon: 6,time:1000}); setTimeout(function(){ window.location.reload(); },1000);return false; }else{ //发异步把用户状态进行更改 $(obj).attr("class","layui-btn layui-btn-normal "); $(obj).text("显示"); $(obj).remove(); layer.msg(data.info,{icon: 5,time:1000});return false; } } }); }); } /*启用*/ function admin_start(obj,id){ layer.confirm('确认要启用吗?',function(index){ //发异步把用户状态进行更改 $(obj).parents("tr").find(".td-manage").prepend('<a style="text-decoration:none" onClick="admin_stop(this,id)" href="javascript:;" title="停用"><i class="layui-icon"></i></a>'); $(obj).parents("tr").find(".td-status").html('<span class="layui-btn layui-btn-normal layui-btn-mini">已启用</span>'); $(obj).remove(); layer.msg('已启用!',{icon: 6,time:1000}); }); } //编辑 function admin_edit (title,url,id,w,h) { url = url+"?id="+id; x_admin_show(title,url,w,h); } /*删除*/ function admin_del(obj,id){ layer.confirm('确认要删除吗?',function(index){ //发异步删除数据 $(obj).parents("tr").remove(); layer.msg('已删除!',{icon:1,time:1000}); }); } </script> </body> </html>,这是我的admin.js:// js/admin.js const AdminManager = { // 获取所有管理员 getAll: function() { return JSON.parse(localStorage.getItem('admins')) || []; }, // 保存所有管理员 saveAll: function(admins) { localStorage.setItem('admins', JSON.stringify(admins)); }, // 获取单个管理员 getById: function(id) { return this.getAll().find(item => item.id == id); }, // 添加或更新管理员 save: function(admin) { let admins = this.getAll(); if (admin.id) { // 更新 const index = admins.findIndex(a => a.id == admin.id); if (index !== -1) { admins[index] = admin; } } else { // 新增 admin.id = this.generateId(); admin.create_time = new Date().toLocaleString(); admins.push(admin); } this.saveAll(admins); return admin; }, // 删除管理员 delete: function(id) { let admins = this.getAll().filter(a => a.id != id); this.saveAll(admins); }, // 生成ID generateId: function() { const admins = this.getAll(); return admins.length > 0 ? Math.max(...admins.map(a => a.id)) + 1 : 1; } }为什么运行出来添加删除键点了没反应,能帮帮我吗
07-04
Description Resource Path Location Type Compiling for Java version '1.6' is no longer supported. Minimal supported version is '1.8' DepartmentController.java /EmployeesManager/src/main/java/com/esms/controller line 0 Java Problem cvc-elt.1.a: Cannot find the declaration of element 'beans'. [cvc-elt.1.a] applicationContext.xml /EmployeesManager/src/main/resources line 2 Language Servers Downloading external resources is disabled. [DownloadResourceDisabled] applicationContext.xml /EmployeesManager/src/main/resources line 6 Language Servers Downloading external resources is disabled. [DownloadResourceDisabled] applicationContext.xml /EmployeesManager/src/main/resources line 8 Language Servers Downloading external resources is disabled. [DownloadResourceDisabled] applicationContext.xml /EmployeesManager/src/main/resources line 10 Language Servers Downloading external resources is disabled. [DownloadResourceDisabled] applicationContext.xml /EmployeesManager/src/main/resources line 12 Language Servers Java compiler level does not match the version of the installed Java project facet. EmployeesManager Unknown Faceted Project Problem (Java Version Mismatch) Referenced file contains errors (file:/F:/eclipse/workspace/EmployeesManager/src/main/resources/xsd/spring-aop-4.3.xsd). For more information, right click on the message in the Problems View and select "Show Details..." applicationContext.xml /EmployeesManager/src/main/resources line 1 XML Problem Referenced file contains errors (file:/F:/eclipse/workspace/EmployeesManager/src/main/resources/xsd/spring-context-4.3.xsd). For more information, right click on the message in the Problems View and select "Show Details..." applicationContext.xml /EmployeesManager/src/main/resources line 1 XML Problem Referenced file contains errors (file:/F:/eclipse/workspace/EmployeesManager/src/main/resources/xsd/spring-context-4.3.xsd). For more information, right click on the message in the Problems View and select "Show Details..." springmvc.xml /EmployeesManager/src/main/resources line 1 XML Problem Referenced file contains errors (file:/F:/eclipse/workspace/EmployeesManager/src/main/resources/xsd/spring-tx-4.3.xsd). For more information, right click on the message in the Problems View and select "Show Details..." applicationContext.xml /EmployeesManager/src/main/resources line 1 XML Problem Referenced file contains errors (http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd). For more information, right click on the message in the Problems View and select "Show Details..." springmvc.xml /EmployeesManager/src/main/resources line 1 XML Problem Attribute (frameborder) is obsolete. Its use is discouraged in HTML5 documents. index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 224 HTML Problem Attribute (frameborder) is obsolete. Its use is discouraged in HTML5 documents. index.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 101 HTML Problem Attribute (scrolling) is obsolete. Its use is discouraged in HTML5 documents. index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 224 HTML Problem Attribute (scrolling) is obsolete. Its use is discouraged in HTML5 documents. index.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 101 HTML Problem Build path specifies execution environment JavaSE-1.6. There are no JREs installed in the workspace that are strictly compatible with this environment. EmployeesManager Build path JRE System Library Problem Classpath entry org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER will not be exported or published. Runtime ClassNotFoundExceptions may result. EmployeesManager P/EmployeesManager Classpath Dependency Validator Message End tag (</br>) not needed. monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 29 HTML Problem Implementation of project facet maven could not be found. Functionality will be limited. EmployeesManager Unknown Faceted Project Problem Invalid character used in text string (&nbsp&nbsp&nbsp ). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 48 HTML Problem Invalid character used in text string ( &nbsp&nbsp&nbsp ). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 57 HTML Problem Invalid character used in text string (&nbsp&nbsp&nbsp 部门: ). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 36 HTML Problem Invalid character used in text string ( &nbsp&nbsp&nbsp 部门: ). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 40 HTML Problem Invalid character used in text string ( &nbsp&nbsp&nbsp 部门: ). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 49 HTML Problem Invalid character used in text string (&nbsp&nbsp&nbsp部门管理). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 62 HTML Problem Invalid character used in text string (&nbsp&nbsp&nbsp岗位管理). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 76 HTML Problem Invalid character used in text string (&nbsp&nbsp&nbsp工龄奖金管理). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 106 HTML Problem Invalid character used in text string (&nbsp&nbsp&nbsp工资管理). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 153 HTML Problem Invalid character used in text string (&nbsp&nbsp&nbsp工资项管理). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 121 HTML Problem Invalid character used in text string ( &nbsp&nbsp&nbsp 考勤月份: ). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 51 HTML Problem Invalid character used in text string (&nbsp&nbsp&nbsp图表显示). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 181 HTML Problem Invalid character used in text string (&nbsp&nbsp&nbsp员工管理). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 47 HTML Problem Invalid character used in text string ( &nbsp&nbsp&nbsp 员工姓名: ). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 44 HTML Problem Invalid character used in text string (&nbsp&nbsp&nbsp月考勤管理). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 137 HTML Problem Invalid character used in text string (&nbsp&nbsp&nbsp职称奖金管理). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 90 HTML Problem Invalid location of tag (script). adminLogin.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 86 HTML Problem Invalid location of tag (script). login.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 92 HTML Problem Invalid location of text (,) in tag (<th>). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 84 HTML Problem Invalid location of text (,) in tag (<th>). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 70 HTML Problem Invalid location of text ([endif]--) in tag (<!>). department-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 20 HTML Problem Invalid location of text ([endif]--) in tag (<!>). department-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 20 HTML Problem Invalid location of text ([endif]--) in tag (<!>). position-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 20 HTML Problem Invalid location of text ([endif]--) in tag (<!>). position-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 20 HTML Problem Invalid location of text ([endif]--) in tag (<!>). rankBonusEdit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 20 HTML Problem Invalid location of text ([endif]--) in tag (<!>). rankBonusadd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 20 HTML Problem Invalid location of text ([endif]--) in tag (<!>). workingYearsBonusAdd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 20 HTML Problem No start tag (<div>). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 42 HTML Problem No start tag (<div>). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 91 HTML Problem No start tag (<div>). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 120 HTML Problem No start tag (<div>). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 72 HTML Problem No start tag (<div>). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 139 HTML Problem No start tag (<div>). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 111 HTML Problem No start tag (<div>). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 58 HTML Problem No start tag (<div>). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 125 HTML Problem Project 'EmployeesManager' has no explicit encoding set EmployeesManager /EmployeesManager No explicit project encoding The compiler compliance specified is 1.6 but a JRE 21 is used EmployeesManager Compiler Compliance JRE Compiler Compliance Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 52 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 67 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 81 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 96 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 112 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 127 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 142 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 159 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 165 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 171 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 186 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 192 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 198 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 204 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 52 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 66 HTML Problem Undefined attribute name (_href). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 81 HTML Problem Undefined attribute name (lay-allowclose). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 218 HTML Problem Undefined attribute name (lay-allowclose). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 95 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 46 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 50 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 53 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 54 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 55 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 58 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 61 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 65 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 68 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 71 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 75 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 78 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 81 HTML Problem Undefined attribute name (lay-data). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 84 HTML Problem Undefined attribute name (lay-data). department-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 48 HTML Problem Undefined attribute name (lay-data). department-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 51 HTML Problem Undefined attribute name (lay-data). department-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 52 HTML Problem Undefined attribute name (lay-data). department-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 53 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 78 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 82 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 84 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 87 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 90 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 93 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 96 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 99 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 102 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 105 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 108 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 111 HTML Problem Undefined attribute name (lay-data). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 114 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 42 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 45 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 46 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 47 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 48 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 49 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 50 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 51 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 52 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 54 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 55 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 58 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 59 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 60 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 61 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 63 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 64 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 65 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 66 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 68 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 69 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 70 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 71 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 72 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 73 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 75 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 76 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 77 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 78 HTML Problem Undefined attribute name (lay-data). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 79 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 80 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 84 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 85 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 88 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 91 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 92 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 93 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 94 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 95 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 98 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 101 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 105 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 108 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 112 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 115 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 118 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 122 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 125 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 128 HTML Problem Undefined attribute name (lay-data). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 131 HTML Problem Undefined attribute name (lay-data). position-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 52 HTML Problem Undefined attribute name (lay-data). position-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 56 HTML Problem Undefined attribute name (lay-data). position-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 57 HTML Problem Undefined attribute name (lay-data). position-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 58 HTML Problem Undefined attribute name (lay-data). position-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 59 HTML Problem Undefined attribute name (lay-data). rankBonusList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 45 HTML Problem Undefined attribute name (lay-data). rankBonusList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 48 HTML Problem Undefined attribute name (lay-data). rankBonusList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 49 HTML Problem Undefined attribute name (lay-data). rankBonusList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 50 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 58 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 61 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 62 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 65 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 66 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 67 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 68 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 69 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 70 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 71 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 72 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 74 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 75 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 79 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 82 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 85 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 86 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 87 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 88 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 90 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 91 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 92 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 93 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 95 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 96 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 97 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 98 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 99 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 100 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 101 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 102 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 103 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 104 HTML Problem Undefined attribute name (lay-data). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 105 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 66 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 70 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 71 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 72 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 75 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 76 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 77 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 78 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 79 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 80 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 81 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 82 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 84 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 87 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 92 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 95 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 98 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 99 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 100 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 101 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 103 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 104 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 105 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 106 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 108 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 109 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 110 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 111 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 112 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 113 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 115 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 116 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 117 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 118 HTML Problem Undefined attribute name (lay-data). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 119 HTML Problem Undefined attribute name (lay-data). workingYearsBonusList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 52 HTML Problem Undefined attribute name (lay-data). workingYearsBonusList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 55 HTML Problem Undefined attribute name (lay-data). workingYearsBonusList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 56 HTML Problem Undefined attribute name (lay-data). workingYearsBonusList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 57 HTML Problem Undefined attribute name (lay-filter). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 47 HTML Problem Undefined attribute name (lay-filter). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/infor line 57 HTML Problem Undefined attribute name (lay-filter). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 57 HTML Problem Undefined attribute name (lay-filter). department-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 51 HTML Problem Undefined attribute name (lay-filter). department-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 53 HTML Problem Undefined attribute name (lay-filter). department-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 48 HTML Problem Undefined attribute name (lay-filter). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 115 HTML Problem Undefined attribute name (lay-filter). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 128 HTML Problem Undefined attribute name (lay-filter). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 139 HTML Problem Undefined attribute name (lay-filter). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 227 HTML Problem Undefined attribute name (lay-filter). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 119 HTML Problem Undefined attribute name (lay-filter). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 132 HTML Problem Undefined attribute name (lay-filter). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 143 HTML Problem Undefined attribute name (lay-filter). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 231 HTML Problem Undefined attribute name (lay-filter). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 52 HTML Problem Undefined attribute name (lay-filter). employee-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 79 HTML Problem Undefined attribute name (lay-filter). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 42 HTML Problem Undefined attribute name (lay-filter). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 27 HTML Problem Undefined attribute name (lay-filter). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 218 HTML Problem Undefined attribute name (lay-filter). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 28 HTML Problem Undefined attribute name (lay-filter). index.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 95 HTML Problem Undefined attribute name (lay-filter). inforEmployee.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 186 HTML Problem Undefined attribute name (lay-filter). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 125 HTML Problem Undefined attribute name (lay-filter). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 45 HTML Problem Undefined attribute name (lay-filter). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 81 HTML Problem Undefined attribute name (lay-filter). position-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 57 HTML Problem Undefined attribute name (lay-filter). position-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 59 HTML Problem Undefined attribute name (lay-filter). position-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 53 HTML Problem Undefined attribute name (lay-filter). rank-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 52 HTML Problem Undefined attribute name (lay-filter). rank-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 64 HTML Problem Undefined attribute name (lay-filter). rank-list.jsp /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 42 JSP Problem Undefined attribute name (lay-filter). rankBonusEdit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 55 HTML Problem Undefined attribute name (lay-filter). rankBonusList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 45 HTML Problem Undefined attribute name (lay-filter). rankBonusadd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 53 HTML Problem Undefined attribute name (lay-filter). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 58 HTML Problem Undefined attribute name (lay-filter). salaryIssueList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 67 HTML Problem Undefined attribute name (lay-filter). salarySettlement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 42 HTML Problem Undefined attribute name (lay-filter). salarySettlement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 65 HTML Problem Undefined attribute name (lay-filter). wageManagement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/wage line 91 HTML Problem Undefined attribute name (lay-filter). workingYearsBonusAdd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 53 HTML Problem Undefined attribute name (lay-filter). workingYearsBonusEdit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 55 HTML Problem Undefined attribute name (lay-filter). workingYearsBonusList.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 52 HTML Problem Undefined attribute name (lay-search). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 40 HTML Problem Undefined attribute name (lay-skin). rank-list.jsp /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 54 JSP Problem Undefined attribute name (lay-skin). rank-list.jsp /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 67 JSP Problem Undefined attribute name (lay-submit). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/infor line 57 HTML Problem Undefined attribute name (lay-submit). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 57 HTML Problem Undefined attribute name (lay-submit). department-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 51 HTML Problem Undefined attribute name (lay-submit). department-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 53 HTML Problem Undefined attribute name (lay-submit). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 227 HTML Problem Undefined attribute name (lay-submit). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 231 HTML Problem Undefined attribute name (lay-submit). inforEmployee.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 186 HTML Problem Undefined attribute name (lay-submit). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 125 HTML Problem Undefined attribute name (lay-submit). position-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 57 HTML Problem Undefined attribute name (lay-submit). position-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 59 HTML Problem Undefined attribute name (lay-submit). rank-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 52 HTML Problem Undefined attribute name (lay-submit). rank-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 64 HTML Problem Undefined attribute name (lay-submit). rank-list.jsp /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 42 JSP Problem Undefined attribute name (lay-submit). rankBonusEdit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 55 HTML Problem Undefined attribute name (lay-submit). rankBonusadd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 53 HTML Problem Undefined attribute name (lay-submit). salarySettlement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 42 HTML Problem Undefined attribute name (lay-submit). salarySettlement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 65 HTML Problem Undefined attribute name (lay-submit). wageManagement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/wage line 91 HTML Problem Undefined attribute name (lay-submit). workingYearsBonusAdd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 53 HTML Problem Undefined attribute name (lay-submit). workingYearsBonusEdit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 55 HTML Problem Undefined attribute name (lay-verify). adminLogin.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 46 HTML Problem Undefined attribute name (lay-verify). adminLogin.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 52 HTML Problem Undefined attribute name (lay-verify). adminLogin.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin line 64 HTML Problem Undefined attribute name (lay-verify). attendanceList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 37 HTML Problem Undefined attribute name (lay-verify). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/infor line 28 HTML Problem Undefined attribute name (lay-verify). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/infor line 39 HTML Problem Undefined attribute name (lay-verify). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/infor line 49 HTML Problem Undefined attribute name (lay-verify). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 28 HTML Problem Undefined attribute name (lay-verify). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 39 HTML Problem Undefined attribute name (lay-verify). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 49 HTML Problem Undefined attribute name (lay-verify). department-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 40 HTML Problem Undefined attribute name (lay-verify). department-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 46 HTML Problem Undefined attribute name (lay-verify). department-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 42 HTML Problem Undefined attribute name (lay-verify). department-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 48 HTML Problem Undefined attribute name (lay-verify). department-salary.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/echarts line 29 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 39 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 47 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 56 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 87 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 97 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 154 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 164 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 173 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 203 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 209 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 218 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 223 HTML Problem Undefined attribute name (lay-verify). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 237 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 43 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 51 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 60 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 91 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 101 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 158 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 168 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 177 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 207 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 213 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 222 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 227 HTML Problem Undefined attribute name (lay-verify). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 241 HTML Problem Undefined attribute name (lay-verify). employeeSalaryList.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 36 HTML Problem Undefined attribute name (lay-verify). inforEmployee.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 162 HTML Problem Undefined attribute name (lay-verify). inforEmployee.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 168 HTML Problem Undefined attribute name (lay-verify). inforEmployee.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 177 HTML Problem Undefined attribute name (lay-verify). inforEmployee.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 182 HTML Problem Undefined attribute name (lay-verify). inforEmployee.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 194 HTML Problem Undefined attribute name (lay-verify). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 66 HTML Problem Undefined attribute name (lay-verify). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 71 HTML Problem Undefined attribute name (lay-verify). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 82 HTML Problem Undefined attribute name (lay-verify). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 87 HTML Problem Undefined attribute name (lay-verify). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 92 HTML Problem Undefined attribute name (lay-verify). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 103 HTML Problem Undefined attribute name (lay-verify). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 108 HTML Problem Undefined attribute name (lay-verify). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 113 HTML Problem Undefined attribute name (lay-verify). monthlyattendance-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 118 HTML Problem Undefined attribute name (lay-verify). monthlyattendance-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/attendance line 54 HTML Problem Undefined attribute name (lay-verify). position-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 40 HTML Problem Undefined attribute name (lay-verify). position-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 46 HTML Problem Undefined attribute name (lay-verify). position-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 52 HTML Problem Undefined attribute name (lay-verify). position-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 42 HTML Problem Undefined attribute name (lay-verify). position-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 48 HTML Problem Undefined attribute name (lay-verify). position-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 54 HTML Problem Undefined attribute name (lay-verify). rankBonusEdit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 43 HTML Problem Undefined attribute name (lay-verify). rankBonusEdit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 50 HTML Problem Undefined attribute name (lay-verify). rankBonusadd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 41 HTML Problem Undefined attribute name (lay-verify). rankBonusadd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 48 HTML Problem Undefined attribute name (lay-verify). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 40 HTML Problem Undefined attribute name (lay-verify). salary-list.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 47 HTML Problem Undefined attribute name (lay-verify). salary-percent.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/echarts line 28 HTML Problem Undefined attribute name (lay-verify). salary-percent.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/echarts line 35 HTML Problem Undefined attribute name (lay-verify). salarySettlement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 38 HTML Problem Undefined attribute name (lay-verify). salarySettlement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 55 HTML Problem Undefined attribute name (lay-verify). salarySettlement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/salary line 60 HTML Problem Undefined attribute name (lay-verify). wageManagement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/wage line 44 HTML Problem Undefined attribute name (lay-verify). wageManagement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/wage line 52 HTML Problem Undefined attribute name (lay-verify). wageManagement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/wage line 60 HTML Problem Undefined attribute name (lay-verify). wageManagement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/wage line 68 HTML Problem Undefined attribute name (lay-verify). wageManagement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/wage line 76 HTML Problem Undefined attribute name (lay-verify). wageManagement.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/wage line 84 HTML Problem Undefined attribute name (lay-verify). workingYearsBonusAdd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 41 HTML Problem Undefined attribute name (lay-verify). workingYearsBonusAdd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 48 HTML Problem Undefined attribute name (lay-verify). workingYearsBonusEdit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 41 HTML Problem Undefined attribute name (lay-verify). workingYearsBonusEdit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 49 HTML Problem Undefined attribute name (pane). employee-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 75 HTML Problem Undefined attribute name (pane). employee-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/employee line 79 HTML Problem Undefined attribute value (). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/infor line 28 HTML Problem Undefined attribute value (). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/infor line 39 HTML Problem Undefined attribute value (). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/infor line 49 HTML Problem Undefined attribute value (). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 28 HTML Problem Undefined attribute value (). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 39 HTML Problem Undefined attribute value (). changePassword.html /EmployeesManager/src/main/webapp/WEB-INF/page/employee line 49 HTML Problem Undefined attribute value (). rank-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 36 HTML Problem Undefined attribute value (). rank-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 45 HTML Problem Undefined attribute value (). rank-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 39 HTML Problem Undefined attribute value (). rank-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 48 HTML Problem Undefined attribute value (). rank-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 57 HTML Problem Unknown referenced nature: org.springframework.ide.eclipse.core.springnature. .project /EmployeesManager Unknown Unknown nature Unknown tag (!). department-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 20 HTML Problem Unknown tag (!). department-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/department line 20 HTML Problem Unknown tag (!). position-add.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 20 HTML Problem Unknown tag (!). position-edit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/position line 20 HTML Problem Unknown tag (!). rankBonusEdit.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 20 HTML Problem Unknown tag (!). rankBonusadd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rankBonus line 20 HTML Problem Unknown tag (!). workingYearsBonusAdd.html /EmployeesManager/src/main/webapp/WEB-INF/page/admin/workBonus line 20 HTML Problem Unknown tag (xblock). rank-list.jsp /EmployeesManager/src/main/webapp/WEB-INF/page/admin/rank line 45 JSP Problem
最新发布
07-19
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值