add.html
6.75 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!-- 片段标题 START -->
<div class="page-head">
<div class="page-title">
<h1>Add</h1>
</div>
</div>
<!-- 片段标题 END -->
<!-- 线路版本信息导航栏组件 START -->
<ul class="page-breadcrumb breadcrumb">
<li><a href="/pages/home.html" data-pjax>Home page</a> <i class="fa fa-circle"></i></li>
<li><span class="active">Basic information</span> <i class="fa fa-circle"></i></li>
<li><a href="/pages/base/lineversions/list.html" data-pjax>Route Version</a> <i class="fa fa-circle"></i></li>
<li><span class="active">Add</span></li>
</ul>
<!-- 线路版本信息导航栏组件 END -->
<!-- 信息容器组件 START -->
<div class="portlet light bordered">
<!-- 信息容器组件标题 START -->
<div class="portlet-title">
<div class="caption">
<i class="icon-equalizer font-red-sunglo"></i>
<span class="caption-subject font-red-sunglo bold uppercase">Add</span>
</div>
</div>
<!-- 信息容器组件标题 END -->
<!-- 表单容器组件 START -->
<div class="portlet-body form" id="lineEditForm">
<!-- START FORM -->
<form action="/lineVersions" class="form-horizontal" id="lineVersions_add_form" >
<!-- 错误提示信息组件 START -->
<div class="alert alert-danger display-hide">
<button class="close" data-close="alert"></button>
Your input is incorrect, please check the input items below
</div>
<!-- 错误提示信息组件 END -->
<!-- 表单内容 START -->
<div class="form-body">
<input type="hidden" name="lineId" id="lineIdInput" />
<input type="hidden" name="lineCode" id="lineCodeInput" />
<!-- 表单分组组件 form-group START -->
<div class="form-group">
<label class="control-label col-md-5">
<span class="required"> * </span>Line版本名称 :
</label>
<div class="col-md-4">
<input name="name" class="form-control" style="width:100%" id="nameInput" placeholder="请填写更换版本原因,方便排班人员操作!" />
</div>
</div>
<!-- 表单分组组件 form-group END -->
<!-- 表单分组组件 form-group START -->
<div class="form-group">
<label class="control-label col-md-5">
<span class="required"> * </span>Line name :
</label>
<div class="col-md-4">
<select name="line" class="form-control" style="width:100%" id="lineSelect"></select>
</div>
</div>
<!-- 表单分组组件 form-group END -->
<!-- 表单分组组件 form-group START -->
<div class="form-group">
<label class="control-label col-md-5">
<span class="required"> * </span>Introduction date :
</label>
<div class="col-md-4">
<input type="text" class="form-control" name="startDate" id="startDateInput" />
</div>
</div>
<!-- 表单分组组件 form-group END -->
<!-- 表单分组组件 form-group START -->
<div class="form-group">
<label class="control-label col-md-5">
<span class="required"> * </span>Terminal date :
</label>
<div class="col-md-4">
<input type="text" class="form-control" name="endDate" id="endDateInput" />
</div>
</div>
<!-- 表单分组组件 form-group END -->
<!-- 表单分组组件 form-group START -->
<div class="form-group">
<label class="control-label col-md-5">
<span class="required"> * </span>Line版本 :
</label>
<div class="col-md-4">
<input type="text" class="form-control" name="versions" id="versionsInput" placeholder="线路版本" />
</div>
</div>
<div class="form-group">
<label class="control-label col-md-5">
使用历史副本 :
</label>
<div class="col-md-4">
<select name="hisVersions" class="form-control" style="width:100%" id="hisVersionsInput"></select>
</div>
</div>
<!-- 表单分组组件 form-group END -->
<!-- <div class="form-group">
<label class="control-label col-md-5">
<span class="required"> * </span>Line版本状态 :
</label>
<div class="col-md-4">
<select name="status" class="form-control" id="statusInput">
<option value="">Select</option>
<option value="1">当前版本</option>
<option value="2">待更新版本</option>
<option value="0">历史版本</option>
</select>
</div>
</div> -->
<!-- 表单分组组件 form-group START -->
<div class="form-group">
<label class="control-label col-md-5"> Description : </label>
<div class="col-md-4">
<textarea class="form-control" rows="3" name="remark" id="remarkTextarea" placeholder="Description"></textarea>
</div>
</div>
<!-- 表单分组组件 form-group END -->
</div>
<!-- 表单按钮组件 START -->
<div class="form-actions">
<div class="row">
<div class="col-md-offset-5 col-md-7">
<button type="submit" class="btn green" id="submintBtn"><i class="fa fa-check"></i> Submit</button>
<a type="button" class="btn default" href="list.html" data-pjax><i class="fa fa-times"></i> Cancel</a>
</div>
</div>
</div>
<!-- 表单按钮组件 END -->
</form>
<!-- END FORM-->
</div>
<!-- 表单组件 END -->
</div>
<!-- 信息容器组件 END -->
<!-- 线路版本信息添加片段JS模块 -->
<script src="/pages/base/lineversions/js/lineversions-add-from.js"></script>