product.productBatch.Edit.js
1.32 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
webpackJsonp([141],[
/* 0 */
/***/ function(module, exports, __webpack_require__) {
var $ = __webpack_require__(1), common = __webpack_require__(2);
var e = new common.edit('#editor-group');
e.on("validate", function () {
var minCount = $("#minCount").val();
if (!/^[1-9]\d*$/.test(minCount) || minCount < 2) {
return "起购件数格式不正确";
}
var discount = $("#discount").val();
if (!/^1|0\.[0-9]{0,2}$/.test(discount) || discount > 1.0 || discount <= 0.0) {
return "折扣格式不正确";
}
});
e.init();
// submit
$('#add-btn').click(function(option) {
e.submit($('#add-form').attr('action'), function(option) {
var data = option.data;
option.beforeSend = function() {
$('#add-btn').addClass('disabled');
};
option.success = function(res) {
if (res.code == "200") {
e.$tip('提交成功', function() {
location.href = "/product/batch/index";
}, 'growl-success');
} else {
$('#add-btn').removeClass('disabled');
e.$tip(res.message);
}
return false;
}
option.error = function(res) {
e.$tip("提交失败");
};
});
});
/***/ }
]);