lock.vm
5.57 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
#set($url_save = "/customer/save.do")
#set($link=${webUtils.getLocalPath("member/list.do")})
#set($page_title="会员中心")
#set($crumbs="首页:/home,会员管理:"+$link+"")
<script language="javascript" type="text/javascript" src="$!{webUtils.getCommonAssetsPath("common/date/WdatePicker.js")}"></script>
<div class="page-content">
<div class="page-header">
##<span class="pull-right"><a href="${webUtils.getLocalPath("member/list.do")}" class="btn btn-white btn-default">返回</a></span>
<span class="pull-right"><a href="javascript:history.back();" class="btn btn-white btn-default">返回</a></span>
<h1>
会员管理
<small>
<i class="icon-double-angle-right"></i>
锁定会员
</small>
</h1>
</div>
<!-- /.page-header -->
<div class="row">
<div class="col-xs-12">
<!-- PAGE CONTENT BEGINS -->
<form class="form-horizontal" id="lockForm" role="form" method="post" action="${webUtils.getLocalPath("member/lockUser.do")}?userId=$!{userId}&accountName=$!{accountName}">
<div class="form-group">
<label class="col-sm-3 control-label no-padding-right"
for="form-field-1"> 锁定时间:
</label>
<div class="col-sm-9">
<div >
<label>
<input name="day"
type="radio"
class="ace" value="-1"
defaultItem="true"
checked="checked">
<span class="lbl"> 永久</span>
</label>
<label>
<input name="day"
type="radio"
class="ace"
value="1" >
<span class="lbl"> 一天</span>
</label>
<label>
<input name="day"
type="radio"
class="ace"
value="3" >
<span class="lbl"> 三天</span>
</label>
<label>
<input name="day" type="radio" class="ace" value="0" >
<span class="lbl"> 自定义</span>
</label>
<label>
<input type="text" name="date" id="customDay"
class="form-control hide"
onclick="WdatePicker({minDate:'%y-%M-{%d+1}'})"
value="9999-12-31"/>
</label>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label no-padding-right"
for="form-field-6"> 锁定原因: </label>
<div class="col-xs-12 col-sm-4">
<span class="block input-icon input-icon-right">
<textarea class="form-control limited" name="reason"
data-bv-stringlength-message="超出了最大范围!"
data-bv-message="必须填写!"
required
data-bv-stringlength
data-bv-stringlength-max="250">$!{model.remark}</textarea>
</span>
</div>
</div>
<div class="clearfix form-actions">
<div class="col-md-offset-3 col-md-9">
<button class="btn btn-info" type="submit">
<i class="icon-ok bigger-110"></i>
提交
</button>
<a class="btn btn-info" href="javascript:history.back()">
<i class="icon-reply bigger-110"></i>
返回
</a>
</div>
</div>
</form>
</div>
</div>
</div>
<link rel="stylesheet" href="$!{webUtils.getAssetsPath("/css/validator/bootstrapValidator.min.css")}" />
<script type="text/javascript" src="$!{webUtils.getAssetsPath("/js/validator/bootstrapValidator.min.js")}"></script>
<script type="text/javascript" src="$!{webUtils.getLocalPath("assets/js/ajaxResult.js")}"></script>
<script>
$(function (){
$('input[name="day"]').change(function (){
var val = parseInt($(this).val());
if(val == 0){
$("#customDay").removeClass("hide");
$("#customDay").val("");
} else {
$("#customDay").addClass("hide");
var date = null;
if(val == -1){
date = "9999-12-31";
} else {
var curr = new Date();
curr.setDate(curr.getDate() + val);
date = curr.getFullYear() + "-" + (curr.getMonth() + 1) + "-" + curr.getDate();
}
$("#customDay").val(date);
}
});
$('#lockForm').bootstrapValidator({submitHandler: function(validator, form, submitButton) {
var type = parseInt($('input[name="day"]:checked').val());
if(type == 0){
var val = $("#customDay").val();
if($.trim(val) == ""){
alert("请选择日期!");
return ;
}
}
$(form).unbind("submit");
$("#lockForm").ajaxSubmit(function (){
//history.back();
//history.go(-1);
location.href = document.referrer;
});
//$(form).submit();
}});
})
</script>