严智鑫
2025-11-13 945bc394f40d8af1072a53da9a94f24207124e6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>    
    <c:set var="ctx" value="${pageContext.request.contextPath}"/>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
<link href="${ctx}/static/bootstrap/2.3.2/css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<script src="${ctx}/static/jquery/jquery-1.9.1.min.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript" src="${ctx}/static/util2.js"></script>
<title>填写理由</title>
<script type="text/javascript">
    function checkReson(){
        var reson = document.getElementById('reson').value.replace(/\s/gi,'');
        if(reson == "" || reson == null){
            $.MsgBox.Alert("WARNING", "理由不能为空!");
            return false;
        }else{
            window.location.href = "${ctx }/cutmanage/exceptionendtask?reson="+reson+"&prodLine=1";
        }
        
    }
 
</script>
</head>
<body>
<div class="content-wrapper">
    <!-- Content Header (Page header) -->
    <div>
        <section class="content-header">
              <h1>
            填写理由
                <small></small>
              </h1>
          <ol class="breadcrumb">
            <li><a href="${ctx }/cutmanage/gettask"><i class="fa fa-reply"></i>任务列表</a></li>
            <li class="active">填写理由</li>
          </ol>
        </section>
    </div>
    <div>
    <!-- Main content -->
    <section class="content container-fluid">
<div style="margin-left: 20px;margin-top: 20px;">
    <h4>请填写当前中断任务的理由</h4>
</div>
<hr>
<div style="margin-left: 100px;">
    <a href="${ctx }/cutmanage/tasklist">返回</a>
</div>
<hr>
<table align="center" style="margin-top: 150px;">
    <tr>
        <td>
            <font size="4">理由:</font>
        </td>
        <td>    
            <input type="text" id="reson" name="reson" placeholder="please input reson" style="width: 500px;"/>
        </td>
    </tr>
    <tr> 
        <td></td>
        <td>
            <input type="button" value="提交" onclick="checkReson()"/>
        </td>
    </tr>
</table>
</section>
    </div>
    <!-- /.content -->
  </div>
</body>
</html>