liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
 
<!DOCTYPE HTML>
<html>
  <head>
    <title>新增检查项</title>
  <style>
    .subjectTable{
          border:0 !important;
      }
      .subjectTable td{
          border:0 !important;
      }
  </style>
  </head>
  <body>
      <div class="pageContent" id="pageContent">
      <form id="subjectForm" valid="true" >
        <input type="hidden" id="scsuId" name="scsuId" >
        <input type="hidden" id="scsuRequied" name="scsuRequied" >
        <table 
            class="table table-bordered  table-condensed dataTables-example subjectTable no-footer">
            <tbody>
                
                <tr>
                    <td class="width-20 "><label class="pull-right">检查项分类:</label></td>
                    <td class="width-80">
                        <select class="form-control validate[required] input-s"   id="scsuSccaId" name="scsuSccaId" 
                        selectcode="SUBJECTCATEGORY" init="auto" keyFieldId="sccaId"></select>
                    </td>
                </tr>
 
                <tr>
                    <td ><label class="pull-right">检查项目:</label></td>
                    <td>
                        <input class="form-control validate[required]" rows="1" maxlength="200" id="scsuName"
                                    name="scsuName" ></input>
                    </td>
                    
                </tr>
 
                <tr>
                    <td ><label class="pull-right">检查内容:</label>
                    </td>
                    <td><textarea class="form-control validate[required]" rows="10" maxlength="200" 
                                    id="scsuContent" name="scsuContent"></textarea>
                    </td>
                    
                </tr>
                <tr>
                    <td ><label class="pull-right">检查方法:</label>
                    </td>
                    <td>
                        <textarea class="form-control validate[required]" rows="3" maxlength="255""
                                    id="scsuMethod" name="scsuMethod"></textarea>
                    </td>
                </tr>
                <tr>
                    <td ><label class="pull-right">检查要求:</label>
                    </td>
                    <td><input type="checkbox" value="文本" />文本 <input
                                type="checkbox" value="图片" />图片 <input type="checkbox"
                                value="视频" />视频
                    </td>
                </tr>
                <tr>
                    <td ><label class="pull-right">检查项评分:</label>
                    </td>
                    <td>
                        <input type="text"  placeholder='可输入分值0-5' class="form-control integer"  id="scsuScore" name="scsuScore">
                    </td>
                </tr>
                <tr>
                    <td ><label class="pull-right">检查项权重:</label>
                    </td>
                    <td>
                        <select  class="form-control input-s" id="scsuProportion" name="scsuProportion">
                            <option value="">请选择</option>
                            <option value="0.01">1%</option>
                            <option value="0.05">5%</option>
                            <option value="0.08">8%</option>
                            <option value="0.10">10%</option>
                            <option value="0.15">15%</option>
                        </select>
                    </td>
                </tr>
            </tbody>
        </table>
        <nav  id="dialog_bottom" class="navbar navbar-default navbar-fixed-bottom">
            <a id='saveBtn' clickFlag="true" class="btn  btn-success"> 确  定</a>
            <a id='cancelBtn' class="btn btn-danger form-bottom-but" > 关  闭</a>
        </nav>
 
        <div class="clear"></div>
    </form>        
    </div>
  </body>
</html>