list.vm
6.26 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#set($page_title="预制变量列表")
#set($crumbs="首页:/home,预制变量列表")
<div class="row">
<div class="col-xs-12">
#if($!{rst})
<div class="alert alert-block #if($!{rst.success})alert-success#else alert-danger#end">
<button type="button" class="close" data-dismiss="alert">
<i class="ace-icon fa fa-times"></i>
</button>
<p>
#if($!{rst.success})操作成功#else $!{rst.msg}#end
</p>
</div>
#end
<div class="table-header">
预制变量
</div>
<div class="table-responsive">
<div id="sample-table-2_wrapper" class="dataTables_wrapper" role="grid">
<div class="row">
<div class="col-sm-6" style="width:100%">
<div id="sample-table-2_length" class="dataTables_length">
<form action="${webUtils.getLocalPath("sysConfig/list.do")}" id="form" method="post"
class="form-horizontal">
<input type="hidden" name="currPage" value=""/>
<input type="hidden" name="param[customerType]"
value="$!{model.query.param.customerType}"/>
<div class="row">
<div class="col-xs-4">
<div class="form-group">
<label class="col-xs-3 control-label text-right">变量ID: </label>
<div class="col-xs-9">
<input type="text" name="param[id]"
class="form-control"
data-bv-stringlength-message="超出了最大范围!"
data-bv-stringlength
data-bv-stringlength-max="50"
value="$!{model.query.param.id}"/>
</div>
</div>
</div>
<div class="col-xs-4">
<div class="form-group">
<label class="col-xs-3 control-label text-right">变量编码: </label>
<div class="col-xs-9">
<input type="text" name="param[code]"
class="form-control"
data-bv-stringlength-message="超出了最大范围!"
data-bv-stringlength
data-bv-stringlength-max="50"
value="$!{model.query.param.code}"/>
</div>
</div>
</div>
<div class="col-xs-4">
<div class="form-group">
<label class="col-xs-3 control-label text-right">变量名称: </label>
<div class="col-xs-9">
<input type="text" name="param[name]"
class="form-control"
data-bv-stringlength-message="超出了最大范围!"
data-bv-stringlength
data-bv-stringlength-max="50"
value="$!{model.query.param.name}"/>
</div>
</div>
</div>
</div>
<div class="clearfix">
<span class="pull-right">
<input type="submit" value="查询结果">
<input type="button" value="清空条件"
onclick="cleanForm('form');">
</span>
</div>
</form>
</div>
</div>
</div>
<table id="sample-table-2"
class="table table-striped table-bordered table-hover dataTable"
aria-describedby="sample-table-2_info">
<thead>
<tr role="row">
<th width="10%">变量ID</th>
<th width="20%">变量编码</th>
<th width="25%">变量名称</th>
<th width="15%">变量值</th>
<th width="15%">变量描述</th>
<th><i class="icon-time bigger-110 hidden-480"></i>操作</th>
</tr>
</thead>
<tbody role="alert" aria-live="polite" aria-relevant="all">
#foreach($obj in $!{model.list})
<tr>
<td>
$!{obj.id}
</td>
<td>
#if($obj.configCode.length() > 30)
$!{obj.configCode.substring(0,30)}
#else
$!{obj.configCode}
#end
</td>
<td>
$!{obj.configName}
</td>
<td>
<div style="width: 260px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">
$!{obj.value}
</div>
</td>
<td>
$!{obj.remark}
</td>
<td>
#if($!{toEditFlag})
<a href="${webUtils.getLocalPath("sysConfig/toEdit.do")}?id=${obj.id}">编辑</a>
#end
</td>
</tr>
#end
</tbody>
</table>
<div class="row">
<div class="col-sm-6">
#if($!{toSaveFlag})
<a href="${webUtils.getLocalPath("sysConfig/toSave.do")}" class="btn btn-success btn-sm">添加变量</a>
#end
</div>
<div class="col-sm-6">
<div class="dataTables_paginate paging_bootstrap">
<div class="pull-right">
#page($!{model.totalPage},$!{model.currPage})
</div>
<span class="pull-right" style="line-height: 33px;">
#set($tmpPage = $model.currPage + 1)
查询出$!{model.totalSize}条数据,共$!{model.totalPage}页,当前第$!{tmpPage}页
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
function cleanForm(id) {
var form = $("#" + id);
form.find("input[type=text],select").each(function () {
var obj = $(this);
obj.val("");
});
form.find("input[type=radio],input[type=checkbox]").each(function () {
$(this).attr("checked", false);
})
}
</script>
<script src="$!{webUtils.getAssetsPath("/js/diligrp.form.js")}"></script>