Authored by 马力

套餐列表页面的修改

... ... @@ -39,7 +39,7 @@
<div class="form-group">
<label class="col-sm-2 control-label">套餐名称:</label>
<div class="col-sm-3">
<input type="text" id="bundleName" class="form-control" required maxlength="50" value="<% if data%><% data.bundleName %><%/if%>">
<input type="text" id="bundleName" class="form-control" required maxlength="32" value="<% if data%><% data.bundleName %><%/if%>">
</div>
</div>
<div class="form-group">
... ...
... ... @@ -30,6 +30,8 @@ e.on("validate", function () {
}
}
/*var lio = skns.lastIndexOf(",");
if (lio == -1) {
... ... @@ -59,8 +61,20 @@ if($("#id").val()){
$('#add-btn').click(function(option) {
var bundleName = $("#bundleName").val();
if (bundleName == '') {
common.util.__tip('套餐名称必填', 'warning');
return false;
}
var startTime = toSeconds($("#beginTimeStr").val());
var endTime = toSeconds($("#endTimeStr").val());
if (!startTime || !endTime || startTime == '' || endTime == '') {
common.util.__tip('套餐有效时间必填', 'warning');
return false;
}
var shopId = $("#shopId").val();
var id = $("#id").val();
... ... @@ -96,7 +110,9 @@ $('#add-btn').click(function(option) {
common.util.__tip(data.message, 'success');
history.go(-1)
}else{
common.util.__tip(data.message, 'warning');
var msg = data.message;
msg = msg.substring(1, msg.length - 1);
common.util.__tip(msg.replace(/,/g, '<br/>').replace(/=/g, ' : '), 'warning');
}
},
error: function (rs) {
... ...