首页 > 开发 > PHP > 正文

php+ajax发起流程和审核流程(以请假为例)

2024-05-04 22:47:09
字体:
来源:转载
供稿:网友

上一篇随笔中已经提到如何新建流程,那么现在我们就来看一下如何发起一个流程和审核流程~~~

先说一下思路:

(1)登录用session获取到用户的id

 (2) 用户发起一个流程

         注意:需要写申请事由

(3)处于节点的审核人去依次审核

          注意:每审核通过一个,对应towhere字段要加1; 审核到最后时,对应的isok字段要变为1(此处1表示结束,0表示未结束)

共用到三张表:

第一步:先做一个简单的登录页面,用session获取用户名:

denglu.php页面

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <form method="post" action="denglu-cl.php">  用户名:<input type="text" name="uid" /><br />  密码:<input type="password" name="pwd" /><br />  <input type="submit" value="登录" /> </form> </body></html> 

  denglu-cl.php页面

<?phpsession_start();require "../DB.class.php";$db = new DB();$uid = $_POST["uid"];$pwd = $_POST["pwd"];$sql = "select pwd from users where uid='{$uid}'";$mm = $db->strquery($sql);if($pwd==$mm && !empty($pwd)){ $_SESSION["uid"]=$uid; header("location:liucheng.php");}else{ echo "密码或登录名输入错误";}?> 

  效果图:

第二步:做个简单的注页面:liucheng.php

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style>  #body{  height: 200px;  width: 300px;  background-color: gainsboro;  margin: 200px auto;  text-align: center;  vertical-align: middle;  line-height: 30px;  } </style> </head> <body> <div id="body"> <h2>主页面</h2> <div>  <a href="faqi.php" rel="external nofollow" >发起流程</a><br />  <a href='shenhe.php'>审核流程</a> </div> </div> </body></html> 

 效果图:

第三步:发起流程页面faqi.php

(1)先将所有流程用下拉列表显示

(2)发起流程事由需要由登录用户填写

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title>  <style>  #body{  height: 250px;  width: 300px;  background-color: gainsboro;  margin: 200px auto;  text-align: left;  vertical-align: middle;  line-height: 30px;  padding-left: 30px;  } </style> </head> <body> <div id="body">  <form method="post" action="faqi-cl.php">  <h2>发起流程页面</h2>  <select id="lc">  <?php   require "../DB.class.php";   $db = new DB();   $sql = "select * from liucheng";   $arr = $db->query($sql);   foreach($arr as $v)   {   echo "<option value='{$v[0]}'>{$v[1]}</option>";    }     ?>  </select><br />  发起流程事由:  <textarea class="nr"> </textarea><br />  <input type="button" value="确定发起" />   </form> </div> </body></html>             
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表