Jelajahi Sumber

新增人资文件

caipin 7 tahun lalu
induk
melakukan
2b1c09aedc

+ 4 - 0
global/js/humanResource.js

@@ -0,0 +1,4 @@
+$(function() {
+	
+	
+})

+ 209 - 0
protected/controller/HumanResourceController.php

@@ -0,0 +1,209 @@
+<?php
+
+/**
+ * @author darkredz
+ */
+class HumanResourceController extends DooController {
+	
+	public function beforeRun($resource, $action) {
+		
+	}
+	
+	function __construct() {
+		if (isset ( $_COOKIE ["staff"] )) {
+			if (! empty ( $_COOKIE ["staff"] )) {
+				Doo::loadModel ( 'staff' );
+				$staff = new staff ();
+	
+				$this->staff = $staff->getUserByIdList ( $_COOKIE ["staff"] );
+				return "/";
+			}
+		}
+	
+		Doo::loadCore ( 'uri/DooUriRouter' );
+		$router = new DooUriRouter ();
+		$routeRs = $router->execute ( Doo::app ()->route, Doo::conf ()->SUBFOLDER );
+	
+		if ($routeRs ['1'] != "login") {
+			header ( 'Content-Type:text/html;charset=utf-8' );
+			@header ( "Location: /login" );
+		}
+	}
+	
+	/**
+	 * 员工信息
+	 */
+	function hrEmployee(){
+		
+		$data ['staff'] = $this->staff;
+		
+		$birArray = explode ( '-', $this->staff [0] ['birthday'] );
+		
+		$data ['year'] = $birArray [0];
+		
+		$year = date ( 'Y' );
+		$yearHtml = "";
+		for(; $year >= 1900; $year --) {
+			$yearHtml .= '<option ';
+			if ($data ['year'] == $year)
+				$yearHtml .= 'selected';
+				$yearHtml .= ' value="' . $year . '">' . $year . '</option>';
+		}
+		$data ['yearHtml'] = $yearHtml;
+		$data ['month'] = 01;
+		$data ['day'] = 01;
+		if (isset ( $birArray [1] )) {
+			$data ['month'] = $birArray [1];
+			$data ['day'] = $birArray [2];
+		}
+		$data ['msg'] = urldecode ( $this->params ['msg'] );
+		
+		
+		
+		Doo::loadModel ( 'staff' );
+		$staff = new staff ();
+		
+		$stafflist=$staff->getStaff (true);
+		
+		//生成工号
+		$jobNumber=$this->createJobNumber();
+		//获得办事和部门
+		
+		$this->data ['jobNumber'] = $jobNumber;
+		$this->data ['stafflist'] = $stafflist;
+		
+		$this->data ['memu'] = "HumanResource";
+		$this->data ['hrMemu'] = "hrEmployeeInfo";
+		
+		$this->render ( "/humanResource/hrEmployee", $this->data );
+	}
+	
+	function staffAdd(){
+		echo 'ddd';
+		die;
+		
+		
+		$username = $this->get_args ( 'username' ) ? $this->get_args ( 'username' ) : "";
+		$nature = $this->get_args ( 'nature' ) ? $this->get_args ( 'nature' ) : 2;
+		$cid_did = $this->get_args ( 'cid_did' ) ? $this->get_args ( 'cid_did' ) : '';
+		$position = $this->get_args ( 'position' ) ? $this->get_args ( 'position' ) : '';
+		$hiredate = $this->get_args ( 'hiredate' ) ? $this->get_args ( 'hiredate' ) : '';
+		$telephone = $this->get_args ( 'telephone' ) ? $this->get_args ( 'telephone' ) : '';
+		$baseWage = $this->get_args ( 'baseWage' ) ? $this->get_args ( 'baseWage' ) : 0;
+		$postWage = $this->get_args ( 'postWage' ) ? $this->get_args ( 'postWage' ) : 0;
+		$achievementBonus = $this->get_args ( 'achievementBonus' ) ? $this->get_args ( 'achievementBonus' ) : 0;
+		$gender = $this->get_args ( 'gender' ) ? $this->get_args ( 'gender' ) : '';
+		
+		
+		
+		
+		$username = $this->get_args ( 'username' ) ? $this->get_args ( 'username' ) : "";
+		$password = $this->get_args ( 'password' ) ? $this->get_args ( 'password' ) : "";
+		$cid = is_numeric ( $this->get_args ( 'cid' ) ) ? $this->get_args ( 'cid' ) : 0;
+		$hiredate = $this->get_args ( 'hiredate' ) ? $this->get_args ( 'hiredate' ) : "";
+		$nature = is_numeric ( $this->get_args ( 'nature' ) ) ? $this->get_args ( 'nature' ) : 1;
+		
+		$didKey = $this->get_args ( 'didKey' ) ? $this->get_args ( 'didKey' ) : array();
+		
+		if (! empty ( $username ) && ! empty ( $password ) && ! empty ( $cid ) && ! empty ( $hiredate ) && ! empty ( $nature )) {
+				
+			Doo::loadModel ( 'L_category' );
+			Doo::loadModel ( 'staff' );
+			Doo::loadModel ( 'tag' );
+			Doo::loadModel ( 'holidaystaff' );
+				
+			$staff = new staff ();
+			$L_category = new L_category ();
+				
+			// 加入默认总部分类
+			$cagegory = $L_category->getCategoryById ( $cid );
+				
+			// 根据这个分类加入管理权限
+			if ($cagegory [0] ['defult'] == 1) {
+				$staff->isadmin = 1;
+			}
+				
+			$staff->username = $username;
+			$staff->passwork = md5 ( $password );
+			$staff->cid = $cagegory [0] ['cid'];
+			$staff->category = $cagegory [0] ['title'];
+			$staff->hiredate = $hiredate;
+			$staff->nature = $nature;
+				
+			$staff->did=implode(',', $didKey);
+				
+			$id = $staff->insert ();
+				
+			$holidaystaff = new HStaff ();
+			$holidaystaff->uid = $id;
+				
+			$holidaystaff->insert ();
+				
+			$staffmsg = $staff->getUserById ( $id );
+			$this->updateAnnualLeave ( $staffmsg [0] );
+				
+			for($i = 1; $i <= 7; $i ++) {
+		
+				$tag = new tag ();
+				$tag->name = "个人标签";
+				$tag->sid = $id;
+				$tag->colorid = $i;
+				$tag->insert ();
+			}
+		}
+		
+		
+		
+	}
+	
+	/**
+	 * 生成工号
+	 */
+	function createJobNumber(){
+		Doo::loadModel ( 'staff' );
+		$staff = new staff ();
+		
+		$regularStaff=$staff->getStaffJobNumberByNature(1);
+		$internStaff=$staff->getStaffJobNumberByNature(2);
+		
+		if (empty($regularStaff['jobNumber']))
+			$regularStaffJobNumber='Z0001';
+		else{
+			$jobNumber=preg_replace('/[^\.0123456789]/s', '', $regularStaff['jobNumber']);
+			$regularStaffJobNumber='Z'.sprintf("%04d", $jobNumber+1);
+		} 
+			
+		$internStaffJobNumber=$internStaff['jobNumber'];
+		if (empty($internStaff['jobNumber']))
+			$internStaffJobNumber='C0001';
+		else{
+			$jobNumber=preg_replace('/[^\.0123456789]/s', '', $internStaff['jobNumber']);
+			$internStaffJobNumber='Z'.sprintf("%04d", $jobNumber+1);
+		}
+		$list=array('regularStaff'=>$regularStaffJobNumber,'internStaff'=>$internStaffJobNumber);
+		return $list;
+	}
+	
+	/**
+	 * 获取get或者POST值
+	 *
+	 * @param string $name 属性名称
+	 * @return fixed 值
+	 */
+	function get_args($name) {
+		if (isset ( $_GET [$name] )) {
+			if (is_array ( $_GET [$name] ))
+				return $_GET [$name];
+				else
+					return addslashes ( $_GET [$name] );
+		} elseif (isset ( $_POST [$name] )) {
+			if (is_array ( $_POST [$name] ))
+				return $_POST [$name];
+				else
+					return addslashes ( $_POST [$name] );
+		} else
+			return false;
+	}
+}
+
+?>

+ 92 - 0
protected/controller/SettingController.php

@@ -0,0 +1,92 @@
+<?php
+
+/**
+ * @author darkredz
+ */
+class SettingController extends DooController {
+	
+	public function beforeRun($resource, $action) {
+		
+	}
+	
+	function __construct() {
+		if (isset ( $_COOKIE ["staff"] )) {
+			if (! empty ( $_COOKIE ["staff"] )) {
+				Doo::loadModel ( 'staff' );
+				$staff = new staff ();
+	
+				$this->staff = $staff->getUserByIdList ( $_COOKIE ["staff"] );
+				return "/";
+			}
+		}
+	
+		Doo::loadCore ( 'uri/DooUriRouter' );
+		$router = new DooUriRouter ();
+		$routeRs = $router->execute ( Doo::app ()->route, Doo::conf ()->SUBFOLDER );
+	
+		if ($routeRs ['1'] != "login") {
+			header ( 'Content-Type:text/html;charset=utf-8' );
+			@header ( "Location: /login" );
+		}
+	}
+	
+	/**
+	 * 员工信息
+	 */
+	function settingEmployeeInfo(){
+		
+		$data ['staff'] = $this->staff;
+		
+		$birArray = explode ( '-', $this->staff [0] ['birthday'] );
+		
+		$data ['year'] = $birArray [0];
+		
+		$year = date ( 'Y' );
+		$yearHtml = "";
+		for(; $year >= 1900; $year --) {
+			$yearHtml .= '<option ';
+			if ($data ['year'] == $year)
+				$yearHtml .= 'selected';
+				$yearHtml .= ' value="' . $year . '">' . $year . '</option>';
+		}
+		$data ['yearHtml'] = $yearHtml;
+		$data ['month'] = 01;
+		$data ['day'] = 01;
+		if (isset ( $birArray [1] )) {
+			$data ['month'] = $birArray [1];
+			$data ['day'] = $birArray [2];
+		}
+		$data ['msg'] = urldecode ( $this->params ['msg'] );
+		
+		
+		
+		$this->data ['memu'] = "adminmyinfo";
+		$this->data ['hrMemu'] = "settingEmployeeInfo";
+		
+		$this->render ( "/setting/settingEmployeeInfo", $this->data );
+	}
+	
+	
+	/**
+	 * 获取get或者POST值
+	 *
+	 * @param string $name 属性名称
+	 * @return fixed 值
+	 */
+	function get_args($name) {
+		if (isset ( $_GET [$name] )) {
+			if (is_array ( $_GET [$name] ))
+				return $_GET [$name];
+				else
+					return addslashes ( $_GET [$name] );
+		} elseif (isset ( $_POST [$name] )) {
+			if (is_array ( $_POST [$name] ))
+				return $_POST [$name];
+				else
+					return addslashes ( $_POST [$name] );
+		} else
+			return false;
+	}
+}
+
+?>

+ 553 - 0
protected/view/humanResource/hrEmployee.html

@@ -0,0 +1,553 @@
+<!-- include '../header' -->
+<script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/humanResource.js"></script>
+<body>
+	<div class="mainLayout">
+		<div class="mainMenu">
+			<div class="menuItem">
+				<a href="#" class="mLogo">CLD</a>
+				<ul>
+					<!-- include '../menu' -->
+				</ul>
+			</div>
+			
+		</div>
+		<div class="warpContent">
+			<div class="subMenu fL">
+				<div class="menuItem">
+					<!-- include 'hrMenu' -->
+				</div>
+			</div>
+			<div class="adminContent autoHeight">
+				<legend>员工列表</legend>
+				<div class="demandCate">
+					<ul class="cateList">
+						<li>
+							<select class="select">
+								<option>在职</option>
+								<option>离职</option>
+								<option>全部</option>
+							</select>
+						</li>
+						<li>
+							<select class="select">
+								<option>全部</option>
+								<option>正式</option>
+								<option>试用</option>
+								<option>实习</option>
+							</select>
+						</li>
+						<li>
+							<select class="select">
+								<option>所有组织</option>
+								<option>总部</option>
+								<option>总部-研究中心</option>
+								<option>广东办</option>
+							</select>
+						</li>
+						<li>
+							<div class="search">
+								<div class="input-append">
+									<input class="span3" placeholder="姓名、工号" type="text" style="width:100px">
+									<button class="btn btn-small" type="button">搜索</button>
+								</div>
+							</div>
+						</li>
+						<li>
+							本月(05.01-05.31):在职 89&nbsp;入职&nbsp;<a href="#">5</a>&nbsp;离职&nbsp;<a>4</a>
+						</li>
+						<li>
+							<label class="checkbox"><input type="checkbox"> 设置权限</label>
+						</li>
+						<li style="float:right">
+							<a href="#add-employee" data-toggle="modal" class="button">+员工</a>
+						</li>
+	  			</ul>
+	  		</div>
+				<div class="saeaList">
+					<table class="table table-hover">
+						<tbody>
+						<tr class="thead"><th width="80">工号</th><th>姓名</th><th>手机</th><th>QQ</th><th>办事处/部门</th><th>岗位</th><th>聘用状态</th><th>入职时间</th><th>操作</th></tr>
+						
+						<!-- loop stafflist -->
+						<tr>
+						<td>{{stafflist' value.jobNumber}}</td>
+						<td><a href="#detail" data-toggle="modal">{{stafflist' value.username}}</a></td>
+						<td>{{stafflist' value.telephone}}</td>
+						<td>{{stafflist' value.qq}}</td>
+						<td>{{stafflist' value.category}}
+						<!-- if {{stafflist' value.departmentID}}!=0  -->
+						/{{stafflist' value.departmentName.departmentName}}
+						<!-- endif -->
+						</td>
+						<td>{{stafflist' value.position}}</td>
+						<td>
+							<!-- if {{stafflist' value.nature}}==1 -->
+							正式
+							<!-- elseif {{stafflist' value.nature}}==2 -->
+							实习
+							<!-- endif -->
+						</td>
+						<td>{{stafflist' value.hiredate}}</td>
+						<td>
+						<!-- if {{stafflist' value.nature}}==1 -->
+						<a href="#do-dismiss" data-toggle="modal">离职(点我)</a>
+						<!-- elseif {{stafflist' value.nature}}==2 -->
+						<a href="#do-probation" data-toggle="modal">转试用(点我)</a>
+						<!-- elseif {{stafflist' value.nature}}==3 -->
+						<a href="#do-return" data-toggle="modal">再入职(点我)</a>
+						<!-- endif -->
+						</td>
+						</tr>
+						<!-- endloop -->
+						
+						<tr><td>Z0002</td><td><a href="#">王五</a></td><td>12345678901</td><td>12345678</td><td>总部/研究中心</td><td>测试</td><td>试用</td><td>2017-05-30</td><td><a href="#do-hire" data-toggle="modal">转正式(点我)</a>&nbsp;<a href="#">离职</a></td></tr>
+						<tr><td>C001</td><td><a href="#">李四</a></td><td>12345678901</td><td>12345678</td><td>总部</td><td>测试</td><td>实习</td><td>2017-05-30</td><td><a href="#do-probation" data-toggle="modal">转试用(点我)</a>&nbsp;<a href="#">离职</a></td></tr>
+						<tr><td>C001</td><td><a href="#">李四</a></td><td>12345678901</td><td></td><td>总部</td><td>测试</td><td>实习</td><td>2017-05-30</td><td>待入职</td></tr>
+						<tr><td>C001</td><td><a href="#">李四</a></td><td>12345678901</td><td></td><td>总部</td><td>测试</td><td>实习</td><td>2017-05-30</td><td>待离职</td></tr>
+						</tbody>
+					</table>
+					<!--离职-->
+					<table class="table table-hover">
+						<tbody>
+						<tr class="thead"><th width="80">工号</th><th>姓名</th><th>手机</th><th>QQ</th><th>办事处/部门</th><th>岗位</th><th>聘用状态</th><th>入职时间</th><th>离职时间</th><th>操作</th></tr>
+						<tr><td>Z0001</td><td><a href="">张三</a></td><td>12345678901</td><td>12345678</td><td>总部</td><td>测试</td><td>正式</td><td>2017-05-30</td><td>2018-01-13</td><td><a href="#do-return" data-toggle="modal">再入职(点我)</a></td></tr>
+						<tr><td>Z0002</td><td><a href="#">王五</a></td><td>12345678901</td><td>12345678</td><td>总部/研究中心</td><td>测试</td><td>试用</td><td>2017-05-30</td><td>2017-06-30</td><td><a href="#">再入职</a></td></tr>
+						</tbody>
+					</table>
+					<!--权限-->
+					<table class="table table-hover">
+						<tbody>
+						<tr class="thead"><th width="80">工号</th><th>姓名</th><th>手机</th><th>QQ</th><th>办事处/部门</th><th>岗位</th><th>聘用状态</th><th>入职时间</th><th>主权限</th><th>通讯录权限</th></tr>
+						<tr><td>Z0001</td><td><a href="">张三</a></td><td>12345678901</td><td>12345678</td><td>总部</td><td>测试</td><td>正式</td><td>2017-05-30</td><td>信息中心、通讯录、在线锁库、报销单、发票申请、人资管理 <a href="#authority" data-toggle="modal">编辑(点我)</a></td><td>2 个省份 <a href="#province" data-toggle="modal">编辑(点我)</a></td></tr>
+						<tr><td>Z0002</td><td><a href="#">王五</a></td><td>12345678901</td><td>12345678</td><td>总部/研究中心</td><td>测试</td><td>试用</td><td>2017-05-30</td><td>信息中心、通讯录、在线锁库、报销单、发票申请、人资管理 <a href="#">编辑</a></td><td>1 个省份 <a href="#">编辑</a></td></tr>
+						</tbody>
+					</table>
+				</div>
+				<div class="demandPage" style='display:none'>
+					<ul class="pagination fL">
+						<li><a href="#">&lt;</a></li>
+						<li><a href="#">1</a></li>
+						<li class="active"><a href="#">2</a></li>
+						<li><a href="#">3</a></li>
+						<li><a href="#">4</a></li>
+						<li><a href="#">5</a></li>
+						<li><a href="#">&gt;</a></li>
+					</ul>
+			  	</div>
+			</div>
+		</div>
+	</div>
+	<!--弹出(员工详情)-->
+	<div class="modal hide fade" id="detail">
+		<div class="modal-dialog modal-xlg">
+			<div class="modal-content">
+				<div class="modal-header">
+					<h3>员工详情</h3>
+				</div>
+				<div class="modal-body saeaList" style="overflow:hidden;margin:0">
+					<div class="fL staff-detail-con">
+						<table class="table table-bordered table-condensed">
+						<tbody>
+						<tr>
+							<th class="taC" width="150">工号</th><td width="210">Z0001</td>
+							<th class="taC" width="150">姓名</th><td><input type="text" value="张三"></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">办事处/部门</th><td><select><option>总部</option><option>总部-研究中心</option><option>广东办</option></select></td>
+							<th class="taC" width="150">岗位</th><td><input type="text" value="程序员"></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">入职日期</th><td><input type="date"></td>
+							<th class="taC" width="150">手机</th><td><input type="text" value="1234567890"></td>
+						</tr>
+						<tr>
+							<th class="taC">QQ</th><td><input type="text" value="12345678"></td>
+							<th class="taC">微信</th><td><input type="text" value="12345678"></td>
+						</tr>
+						<tr>
+							<th class="taC">电话</th><td><input type="text" value="12345678"></td>
+							<th class="taC">邮箱</th><td><input type="text" value="12345678"></td>
+						</tr>
+						</tbody>
+					</table>
+						<table class="table table-bordered table-condensed">
+							<tr>
+								<th class="taC" width="150">性别</th><td width="210"><label class="radio inline"><input type="radio">男</label> <label class="radio inline"><input type="radio">女</label></td>
+								<th class="taC" width="150">出生日期</th><td><input type="date"></td>
+							</tr>
+							<tr>
+								<th class="taC" width="150">最高学历</th><td><select><option>初中</option><option>高中</option><option>中专</option><option>大专</option><option>本科</option><option>硕士</option></select></td>
+								<th class="taC" width="150">婚姻状况</th><td><select><option>已婚</option><option>未婚</option></select></td>
+							</tr>
+							<tr>
+								<th class="taC" width="150">身份证</th><td><input type="text" value="440476528372638192"></td>
+								<th class="taC" width="150">身份证扫描件</th><td><a href="#" target="_blank">正面(国徽)</a><a href="#" target="_blank">反面(照片)</a></td>
+							</tr>
+						</table>
+						<table class="table table-bordered table-condensed">
+							<tr>
+								<th class="taC" width="150">毕业证书</th><td width="210"><a href="#" target="_blank">毕业证书</a></td>
+								<th class="taC" width="150">学位证书</th><td><a href="#" target="_blank">学位证书</a></td>
+							</tr>
+							<tr>
+								<th class="taC" width="150">职称</th><td colspan="3"><a href="#" target="_blank">证书1</a> <a href="#" target="#">证书2</a></td>
+							</tr>
+						</table>
+						<table class="table table-bordered table-condensed">
+							<tr>
+								<th class="taC" width="150">现居住地</th><td colspan="3"><input type="text" style="width:500px"></td>
+							</tr>
+							<tr>
+								<th class="taC" width="150">籍贯</th><td width="210"><input type="text"></td>
+								<th class="taC" width="150">紧急联系人</th><td><input type="text"></td>
+							</tr>
+						</table>
+						<table class="table table-bordered table-condensed">
+							<tr>
+								<th class="taC" width="150">汇款人户名</th><td width="210"><input type="text"></td>
+								<th class="taC" width="150">汇款银行</th><td><select><option>其他</option><option>公司广发</option></select></td>
+							</tr>
+							<tr>
+								<th class="taC" width="150">汇款开户银行名称</th><td width="210"><input type="text"></td>
+								<th class="taC" width="150">汇款帐号</th><td><input type="text"></td>
+							</tr>
+							<tr>
+								<th class="taC" width="150">联行号</th><td colspan="3"><input type="text"></td>
+							</tr>
+						</table>
+					</div>
+					<div class="fL staff-detail-side">
+						<!--入职试用 & 离职后再入职试用-->
+						<div class="infoFlowList">
+						 <div class="dateTitle">
+							 <em class="month"><span class="num">12</span><span class="text">-02</span></em>
+							 <span class="year">2013</span>
+						 </div>
+						 <ul class="flowList">
+							 <li class="item colGray">总部-温秀娟</li>
+							 <li class="item">员工 入职试用</li>
+						 </ul>
+						</div>
+						<div class="infoFlowList">
+						 <div class="dateTitle">
+							 <em class="month"><span class="num">12</span><span class="text">-02</span></em>
+							 <span class="year">2013</span>
+						 </div>
+						 <ul class="flowList">
+							 <li class="item colGray">总部-温秀娟</li>
+							 <li class="item">员工 离职</li>
+						 </ul>
+						</div>
+						<div class="infoFlowList">
+						 <div class="dateTitle">
+							 <em class="month"><span class="num">12</span><span class="text">-02</span></em>
+							 <span class="year">2013</span>
+						 </div>
+						 <ul class="flowList">
+							 <li class="item colGray">总部-温秀娟</li>
+							 <li class="item">员工 试用转正式</li>
+						 </ul>
+						</div>
+						<div class="infoFlowList">
+						 <div class="dateTitle">
+							 <em class="month"><span class="num">9</span><span class="text">-02</span></em>
+							 <span class="year">2013</span>
+						 </div>
+						 <ul class="flowList">
+							 <li class="item colGray">总部-温秀娟</li>
+							 <li class="item">员工 实习转试用</li>
+						 </ul>
+					 	</div>
+						<div class="infoFlowList">
+							 <div class="dateTitle">
+								 <em class="month"><span class="num">8</span><span class="text">-01</span></em>
+								 <span class="year">2013</span>
+							 </div>
+							 <ul class="flowList">
+								 <li class="item colGray">总部-张三</li>
+								 <li class="item">入职实习</li>
+							 </ul>
+						 	</div>
+							<div class="infoFlowList">
+								 <div class="dateTitle">
+									 <em class="month"><span class="num">8</span><span class="text">-01</span></em>
+									 <span class="year">2013</span>
+								 </div>
+								 <ul class="flowList">
+									 <li class="item colGray">总部-温秀娟</li>
+									 <li class="item">添加新员工</li>
+								 </ul>
+							 	</div>
+					</div>
+				</div>
+				<div class="modal-footer">
+					<a href="#" class="button">确定更新</a>
+					<a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
+				</div>
+			</div></div>
+	</div>
+	<!--弹出(添加员工)-->
+	<div class="modal hide fade" id="add-employee">
+		<form  action="/staffAdd" method="post" id="staff" >
+		<div class="modal-dialog modal-lg">
+			<div class="modal-content">
+				<div class="modal-header">
+					<h3>添加员工</h3>
+				</div>
+				<div class="modal-body saeaList">
+					<table class="table table-bordered table-condensed">
+							<tbody>
+							<tr>
+								<th class="taC" width="150">聘用状态</th><td width="260">
+								<select name='nature' id='nature' >
+								<option value='2'>实习</option>
+								<option value='3'>试用</option>
+								<option value='1'>正式</option>
+								</select>
+								</td>
+								<th class="taC" width="150">工号</th>
+								<td>
+								<input type="text" id='internStaff' value="{{jobNumber.internStaff}}" disabled>
+								<input type="text" id='regularStaff' value="{{jobNumber.regularStaff}}" style='display:none' disabled>
+										
+								</td>
+							</tr>
+							<tr>
+								<th class="taC">姓名</th>
+								<td><input type="text" name='username' id='username' value=""></td>
+								<th class="taC" width="150">性别</th>
+								<td width="260">
+									<label class="radio inline"><input type="radio"  name='gender'  value='男'>男</label>
+									<label class="radio inline"><input type="radio" name='gender' value='女' >女</label>
+								</td>
+							</tr>
+							
+							<tr>
+								<th class="taC" width="150">办事处/部门</th>
+								<td>
+								<select name='cid_did' id='cid_did'>
+								<option value=''>请选择办事处/部门</option>
+								<option>总部</option>
+								<option>总部-研究中心</option>
+								<option>广东办</option>
+								</select>
+								</td>
+								<th class="taC" width="150">岗位</th>
+								<td><input type="text" name='position' id='position' value="">
+								</td>
+							</tr>
+							
+							<tr>
+								<th class="taC" width="150">入职日期</th>
+								<td><input type="date" name='hiredate' id='hiredate' value='' ></td>
+								<th class="taC" width="150">手机</th>
+								<td><input type="text" name='telephone' value=""></td>
+							</tr>
+							</tbody>
+						</table>
+						<table class="table table-bordered table-condensed">
+							<tr>
+								<th class="taC" width="150">基本工资</th>
+								<td width="210"><input name='baseWage' value="" type="number"></td>
+								<th class="taC" width="150">岗位工资</th>
+								<td><input name='postWage' value="" type="number"></td>
+							</tr>
+							<tr>
+								<th class="taC" width="150">绩效奖金</th>
+								<td width="210"><input name='achievementBonus' value="" type="number"></td>
+								<th class="taC" width="150"></th><td></td>
+							</tr>
+						</table>
+						<p class="alert alert-">短信通知例子:「张三欢迎加入纵横大家庭,这是您的CLD账号密码:张三 sa4kj,请登录完成入职申请。」</p>
+				</div>
+				<div class="modal-footer">
+					<input type="submit" class="button" value="确定添加">
+					<a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
+				</div>
+			</div>
+		</div>
+		</form>
+	</div>
+	<!--弹出(实习转试用)-->
+	<div class="modal hide fade" id="do-probation">
+		<div class="modal-dialog">
+			<div class="modal-content">
+				<div class="modal-header">
+					<h3>员工实习转试用</h3>
+				</div>
+				<div class="modal-body saeaList">
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="100">工号</th><td>C001</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">姓名</th><td>张三</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">办事处/部门</th><td>总部</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">岗位</th><td>文员</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">入职日期</th><td>2013-06-01 <span class="colGray">已入职 40天</span></td>
+						</tr>
+					</table>
+					<p class="alert">确认该员工实习转试用。</p>
+				</div>
+				<div class="modal-footer">
+					<a href="#" class="button">确定</a>
+					<a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
+				</div>
+			</div>
+		</div>
+	</div>
+	<!--弹出(试用转正式)-->
+	<div class="modal hide fade" id="do-hire">
+		<div class="modal-dialog">
+			<div class="modal-content">
+				<div class="modal-header">
+					<h3>员工试用转正式</h3>
+				</div>
+				<div class="modal-body saeaList">
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="100">工号</th><td>Z0001</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">姓名</th><td>张三</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">办事处/部门</th><td>总部</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">岗位</th><td>文员</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">入职日期</th><td>2013-06-01 <span class="colGray">已入职 40天</span></td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">试用日期</th><td>2013-07-01</td>
+						</tr>
+					</table>
+					<p class="alert">确认该员工试用转正式。</p>
+				</div>
+				<div class="modal-footer">
+					<a href="#" class="button">确定</a>
+					<a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
+				</div>
+			</div>
+		</div>
+	</div>
+	<!--弹出(员工离职)-->
+	<div class="modal hide fade" id="do-dismiss">
+		<div class="modal-dialog">
+			<div class="modal-content">
+				<div class="modal-header">
+					<h3>员工离职</h3>
+				</div>
+				<div class="modal-body saeaList">
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="100">工号</th><td>Z0001</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">姓名</th><td>张三</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">办事处/部门</th><td>总部</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">岗位</th><td>文员</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">入职日期</th><td>2013-06-01 <span class="colGray">已入职 40天</span></td>
+						</tr>
+					</table>
+					<p class="alert alert-erro">确认该员工离职。</p>
+				</div>
+				<div class="modal-footer">
+					<a href="#" class="button">确定</a>
+					<a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
+				</div>
+			</div>
+		</div>
+	</div>
+	<!--弹出(员工再入职)-->
+	<div class="modal hide fade" id="do-return">
+		<div class="modal-dialog">
+			<div class="modal-content">
+				<div class="modal-header">
+					<h3>员工再入职</h3>
+				</div>
+				<div class="modal-body saeaList">
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="100">工号</th><td>Z0001</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">姓名</th><td>张三</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">办事处/部门</th><td>总部</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">岗位</th><td>文员</td>
+						</tr>
+						<tr>
+							<th class="taC" width="100">离职日期</th><td>2013-06-01 <span class="colGray">已离职 40天</span></td>
+						</tr>
+					</table>
+					<p class="alert">确认该员工再入职。</p>
+				</div>
+				<div class="modal-footer">
+					<a href="#" class="button">确定</a>
+					<a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
+				</div>
+			</div>
+		</div>
+	</div>
+	<!--弹出(设置主权限)-->
+	<div class="modal hide fade" id="authority">
+		<div class="modal-dialog">
+			<div class="modal-content">
+				<div class="modal-header">
+					<h3>设置主权限</h3>
+				</div>
+				<div class="modal-body saeaList">
+					<label class="checkbox inline"><input type="checkbox"> 信息中心</label>
+					<label class="checkbox inline"><input type="checkbox"> 通讯录</label>
+					<label class="checkbox inline"><input type="checkbox"> 在线锁库</label>
+					<label class="checkbox inline"><input type="checkbox"> 报销单</label>
+					<label class="checkbox inline"><input type="checkbox"> 发票申请</label>
+					<label class="checkbox inline"><input type="checkbox"> 人资管理 </label>
+				</div>
+				<div class="modal-footer">
+					<a href="#" class="button">确定</a>
+					<a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
+				</div>
+			</div>
+		</div>
+	</div>
+	<!--弹出(设置主权限)-->
+	<div class="modal hide fade" id="province">
+		<div class="modal-dialog">
+			<div class="modal-content">
+				<div class="modal-header">
+					<h3>设置通讯录 权限</h3>
+				</div>
+				<div class="modal-body saeaList">
+					<label class="checkbox inline"><input type="checkbox"> 广东省</label>
+					<label class="checkbox inline"><input type="checkbox"> 广西自治区</label>
+					<label class="checkbox inline"><input type="checkbox"> 湖南省</label>
+					<label class="checkbox inline"><input type="checkbox"> 湖北省</label>
+				</div>
+				<div class="modal-footer">
+					<a href="#" class="button">确定</a>
+					<a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
+				</div>
+			</div>
+		</div>
+	</div>
+<script type="text/javascript">autoFlashHeight();</script>
+</body>

+ 16 - 0
protected/view/humanResource/hrMenu.html

@@ -0,0 +1,16 @@
+<ul>
+						<li class="staffTitle">人资管理</li>
+						<li><a href="staff-home.html">首页</a></li>
+						<li><a href="staff-organization.html">组织</a></li>
+						<li><a href="/hrEmployee" <!-- if {{hrMemu}}=="hrEmployeeInfo" --> class="selected" <!-- endif --> >员工</a></li>
+						<li><a href="staff-payroll.html">工资</a></li>
+						<li><a href="staff-insurance.html">社保公积金</a></li>
+						<li><a href="staff-attendance.html">考勤</a></li>
+						<li><a href="staff-commission.html">提成</a></li>
+						<li><a href="staff-affixation.html">附加收支项</a></li>
+						<li class="topLine"><a href="staff-set-payroll.html">工资设置</a></li>
+						<li><a href="staff-set-insurance.html">社保设置</a></li>
+						<li><a href="staff-input-set-welfare.html">福利设置</a></li>
+						<li><a href="staff-srt-commission.html">提成设置</a></li>
+						<li><a href="staff-set-approval.html">审批流程设置</a></li>
+					</ul>

+ 196 - 0
protected/view/humanResource/settingEmployeeInfo.html

@@ -0,0 +1,196 @@
+<!-- include '../header' -->
+<body>
+	<div class="mainLayout">
+		<div class="mainMenu">
+			<div class="menuItem">
+				<a href="#" class="mLogo">CLD</a>
+				<ul>
+					<!-- include '../menu' -->
+				</ul>
+			</div>
+		</div>
+		<div class="warpContent">
+			<div class="subMenu fL">
+				<div class="menuItem">
+					<!-- include 'settingMenu' -->
+				</div>
+			</div>
+			
+			
+			<div class="adminContent autoHeight">
+				<div class="subNav">
+		    	<ul class="navTabs">
+					  <li class="active"><a href="#">基本信息</a></li>
+					  <li><a href="#">证件信息</a></li>
+					  <li><a href="#">财务信息</a></li>
+					</ul>
+				</div>
+				<!--基本信息-->
+				<div class="saeaList" style="width:900px">
+					<table class="table table-bordered table-condensed">
+						<tbody>
+						<tr>
+							<th class="taC" width="150">工号</th><td width="260">Z0001</td>
+							<th class="taC" width="150">姓名</th><td><input type="text" value="张三" disabled></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">办事处/部门</th><td><select disabled><option>总部</option><option>总部-研究中心</option><option>广东办</option></select></td>
+							<th class="taC" width="150">岗位</th><td><input type="text" value="程序员" disabled></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">入职日期</th><td><input type="date" disabled></td>
+							<th class="taC" width="150">手机</th><td><input type="text" value="1234567890"></td>
+						</tr>
+						<tr>
+							<th class="taC">QQ</th><td><input type="text" value="12345678"></td>
+							<th class="taC">微信</th><td><input type="text" value="12345678"></td>
+						</tr>
+						<tr>
+							<th class="taC">电话</th><td><input type="text" value="12345678"></td>
+							<th class="taC">邮箱</th><td><input type="text" value="12345678"></td>
+						</tr>
+						</tbody>
+					</table>
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="150">性别</th><td width="260"><label class="radio inline"><input type="radio">男</label> <label class="radio inline"><input type="radio">女</label></td>
+							<th class="taC" width="150">出生日期</th><td><input type="date"></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">最高学历</th><td><select><option>初中</option><option>高中</option><option>中专</option><option>大专</option><option>本科</option><option>硕士</option></select></td>
+							<th class="taC" width="150">婚姻状况</th><td><select><option>已婚</option><option>未婚</option></select></td>
+						</tr>
+					</table>
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="150">现居住地</th><td colspan="3"><input type="text" style="width:500px"></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">籍贯</th><td width="260"><input type="text" data-placement="bottom" data-toggle="ctooltip" data-original-title="例:广东省珠海市" /></td>
+							<th class="taC" width="150">紧急联系人</th><td><input data-placement="bottom" data-toggle="ctooltip" data-original-title="例:张三(老婆)15003850888" type="text"></td>
+						</tr>
+					</table>
+					<div class="control-group">
+						<div class="controls">
+							<a href="#resignation" data-toggle="modal" class="button fR">离职申请</a>
+							<button type="submit" class="button">确认修改</button>
+						</div>
+					</div>
+				</div>
+				
+				<!--证件信息-->
+				<div class="saeaList" style="width:900px">
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="150">身份证号码</th><td colspan="3"><input type="text" value="440476528372638192"></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">正面(国徽)</th><td width="260"><input type="file"></td>
+							<td colspan="2">
+								<p>
+									正面(国徽) <a href="#" target="_blank">查看</a>
+								</p>
+							</td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">反面(照片)</th><td width="260"><input type="file"></td>
+							<td colspan="2">
+								<p>
+									正面(照片) <a href="#" target="_blank">查看</a>
+								</p>
+							</td>
+						</tr>
+					</table>
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="150">毕业证书</th><td width="260"><input type="file"></td>
+							<td colspan="2">
+								<p>
+									毕业证书1 <a href="#" target="_blank">查看</a> <a href="#" data-toggle="modal" role="button" title="删除职称证书1">删除</a>
+								</p>
+							</td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">学位证书</th><td width="260"><input type="file"></td>
+							<td colspan="2">
+								<p>
+									学位证书1 <a href="#" target="_blank">查看</a> <a href="#" data-toggle="modal" role="button" title="删除职称证书1">删除</a>
+								</p>
+							</td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">职称证书</th><td width="260"><input type="file"></td>
+							<td colspan="2">
+								<p>
+									职称证书1 <a href="#" target="_blank">查看</a> <a href="#" data-toggle="modal" role="button" title="删除职称证书1">删除</a>
+								</p>
+								<p>
+									职称证书2 <a href="#" target="_blank">查看</a> <a href="#" data-toggle="modal" role="button" title="删除职称证书1">删除</a>
+								</p>
+							</td>
+						</tr>
+					</table>
+					<div class="control-group">
+						<div class="controls">
+							<button type="submit" class="button">确认修改</button>
+						</div>
+					</div>
+				</div>
+				
+				<!--财务信息-->
+				<div class="saeaList" style="width:900px">
+					<table class="table table-bordered table-condensed">
+						<tr>
+								<th colspan="4" class="taC">报销收款帐号</th>
+						</tr>
+						<tr>
+							<th class="taC" width="150">汇款人户名</th><td width="260"><input type="text"></td>
+							<th class="taC" width="150">汇款银行</th><td><select><option>其他</option><option>公司广发</option></select></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">汇款开户银行名称</th><td width="260"><input type="text"></td>
+							<th class="taC" width="150">汇款帐号</th><td><input type="text"></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">联行号</th><td colspan="3"><input type="text"></td>
+						</tr>
+					</table>
+					<table class="table table-bordered table-condensed">
+						<tr>
+								<th colspan="4" class="taC">工资卡</th>
+						</tr>
+						<tr>
+							<th class="taC" width="150">银行卡号</th><td width="260"><input type="text"></td>
+							<th class="taC" width="150">开户行</th><td><input type="text"><p class="colGray">请详细至具体支行</p></td>
+						</tr>
+					</table>
+					<div class="control-group">
+						<div class="controls">
+				 			<button type="submit" class="button">确认修改</button>
+						</div>
+					</div>
+				</div>
+
+			</div>
+		</div>
+	</div>
+	<!--弹出离职申请-->
+	<div class="modal hide fade" id="resignation">
+		<div class="modal-dialog">
+			<div class="modal-content">
+				<div class="modal-header">
+					<h3>申请离职</h3>
+				</div>
+				<div class="modal-body saeaList">
+						<textarea style="width:560px" placeholder="简要填写离职原因"></textarea>
+						<p class="alert alert-">感谢您的付出与努力。</p>
+				</div>
+				<div class="modal-footer">
+					<a href="#" class="button">确定提交</a>
+					<a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
+				</div>
+			</div>
+		</div>
+	</div>
+<script type="text/javascript">autoFlashHeight();</script>
+</body>

+ 196 - 0
protected/view/setting/settingEmployeeInfo.html

@@ -0,0 +1,196 @@
+<!-- include '../header' -->
+<body>
+	<div class="mainLayout">
+		<div class="mainMenu">
+			<div class="menuItem">
+				<a href="#" class="mLogo">CLD</a>
+				<ul>
+					<!-- include '../menu' -->
+				</ul>
+			</div>
+		</div>
+		<div class="warpContent">
+			<div class="subMenu fL">
+				<div class="menuItem">
+					<!-- include 'settingMenu' -->
+				</div>
+			</div>
+			
+			
+			<div class="adminContent autoHeight">
+				<div class="subNav">
+		    	<ul class="navTabs">
+					  <li class="active"><a href="#">基本信息</a></li>
+					  <li><a href="#">证件信息</a></li>
+					  <li><a href="#">财务信息</a></li>
+					</ul>
+				</div>
+				<!--基本信息-->
+				<div class="saeaList" style="width:900px">
+					<table class="table table-bordered table-condensed">
+						<tbody>
+						<tr>
+							<th class="taC" width="150">工号</th><td width="260">Z0001</td>
+							<th class="taC" width="150">姓名</th><td><input type="text" value="张三" disabled></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">办事处/部门</th><td><select disabled><option>总部</option><option>总部-研究中心</option><option>广东办</option></select></td>
+							<th class="taC" width="150">岗位</th><td><input type="text" value="程序员" disabled></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">入职日期</th><td><input type="date" disabled></td>
+							<th class="taC" width="150">手机</th><td><input type="text" value="1234567890"></td>
+						</tr>
+						<tr>
+							<th class="taC">QQ</th><td><input type="text" value="12345678"></td>
+							<th class="taC">微信</th><td><input type="text" value="12345678"></td>
+						</tr>
+						<tr>
+							<th class="taC">电话</th><td><input type="text" value="12345678"></td>
+							<th class="taC">邮箱</th><td><input type="text" value="12345678"></td>
+						</tr>
+						</tbody>
+					</table>
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="150">性别</th><td width="260"><label class="radio inline"><input type="radio">男</label> <label class="radio inline"><input type="radio">女</label></td>
+							<th class="taC" width="150">出生日期</th><td><input type="date"></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">最高学历</th><td><select><option>初中</option><option>高中</option><option>中专</option><option>大专</option><option>本科</option><option>硕士</option></select></td>
+							<th class="taC" width="150">婚姻状况</th><td><select><option>已婚</option><option>未婚</option></select></td>
+						</tr>
+					</table>
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="150">现居住地</th><td colspan="3"><input type="text" style="width:500px"></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">籍贯</th><td width="260"><input type="text" data-placement="bottom" data-toggle="ctooltip" data-original-title="例:广东省珠海市" /></td>
+							<th class="taC" width="150">紧急联系人</th><td><input data-placement="bottom" data-toggle="ctooltip" data-original-title="例:张三(老婆)15003850888" type="text"></td>
+						</tr>
+					</table>
+					<div class="control-group">
+						<div class="controls">
+							<a href="#resignation" data-toggle="modal" class="button fR">离职申请</a>
+							<button type="submit" class="button">确认修改</button>
+						</div>
+					</div>
+				</div>
+				
+				<!--证件信息-->
+				<div class="saeaList" style="width:900px">
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="150">身份证号码</th><td colspan="3"><input type="text" value="440476528372638192"></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">正面(国徽)</th><td width="260"><input type="file"></td>
+							<td colspan="2">
+								<p>
+									正面(国徽) <a href="#" target="_blank">查看</a>
+								</p>
+							</td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">反面(照片)</th><td width="260"><input type="file"></td>
+							<td colspan="2">
+								<p>
+									正面(照片) <a href="#" target="_blank">查看</a>
+								</p>
+							</td>
+						</tr>
+					</table>
+					<table class="table table-bordered table-condensed">
+						<tr>
+							<th class="taC" width="150">毕业证书</th><td width="260"><input type="file"></td>
+							<td colspan="2">
+								<p>
+									毕业证书1 <a href="#" target="_blank">查看</a> <a href="#" data-toggle="modal" role="button" title="删除职称证书1">删除</a>
+								</p>
+							</td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">学位证书</th><td width="260"><input type="file"></td>
+							<td colspan="2">
+								<p>
+									学位证书1 <a href="#" target="_blank">查看</a> <a href="#" data-toggle="modal" role="button" title="删除职称证书1">删除</a>
+								</p>
+							</td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">职称证书</th><td width="260"><input type="file"></td>
+							<td colspan="2">
+								<p>
+									职称证书1 <a href="#" target="_blank">查看</a> <a href="#" data-toggle="modal" role="button" title="删除职称证书1">删除</a>
+								</p>
+								<p>
+									职称证书2 <a href="#" target="_blank">查看</a> <a href="#" data-toggle="modal" role="button" title="删除职称证书1">删除</a>
+								</p>
+							</td>
+						</tr>
+					</table>
+					<div class="control-group">
+						<div class="controls">
+							<button type="submit" class="button">确认修改</button>
+						</div>
+					</div>
+				</div>
+				
+				<!--财务信息-->
+				<div class="saeaList" style="width:900px">
+					<table class="table table-bordered table-condensed">
+						<tr>
+								<th colspan="4" class="taC">报销收款帐号</th>
+						</tr>
+						<tr>
+							<th class="taC" width="150">汇款人户名</th><td width="260"><input type="text"></td>
+							<th class="taC" width="150">汇款银行</th><td><select><option>其他</option><option>公司广发</option></select></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">汇款开户银行名称</th><td width="260"><input type="text"></td>
+							<th class="taC" width="150">汇款帐号</th><td><input type="text"></td>
+						</tr>
+						<tr>
+							<th class="taC" width="150">联行号</th><td colspan="3"><input type="text"></td>
+						</tr>
+					</table>
+					<table class="table table-bordered table-condensed">
+						<tr>
+								<th colspan="4" class="taC">工资卡</th>
+						</tr>
+						<tr>
+							<th class="taC" width="150">银行卡号</th><td width="260"><input type="text"></td>
+							<th class="taC" width="150">开户行</th><td><input type="text"><p class="colGray">请详细至具体支行</p></td>
+						</tr>
+					</table>
+					<div class="control-group">
+						<div class="controls">
+				 			<button type="submit" class="button">确认修改</button>
+						</div>
+					</div>
+				</div>
+
+			</div>
+		</div>
+	</div>
+	<!--弹出离职申请-->
+	<div class="modal hide fade" id="resignation">
+		<div class="modal-dialog">
+			<div class="modal-content">
+				<div class="modal-header">
+					<h3>申请离职</h3>
+				</div>
+				<div class="modal-body saeaList">
+						<textarea style="width:560px" placeholder="简要填写离职原因"></textarea>
+						<p class="alert alert-">感谢您的付出与努力。</p>
+				</div>
+				<div class="modal-footer">
+					<a href="#" class="button">确定提交</a>
+					<a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">关闭</a>
+				</div>
+			</div>
+		</div>
+	</div>
+<script type="text/javascript">autoFlashHeight();</script>
+</body>

+ 7 - 0
protected/view/setting/settingMenu.html

@@ -0,0 +1,7 @@
+<ul>
+						<li><a href="admin-myinfo-borard.html">员工首页</a></li>
+						
+						<li><a href="/settingEmployeeInfo" <!-- if {{hrMemu}}=="settingEmployeeInfo" --> class="selected" <!-- endif --> >员工信息</a></li>
+						<li><a href="admin-myinfo-wechat.html">微信通知</a></li>
+						<li><a href="admin-myinfo-pw.html" target="">修改密码</a></li>
+					</ul>