baserule.Sizelibrary.js
1.84 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
webpackJsonp([11],[
/* 0 */
/***/ function(module, exports, __webpack_require__) {
// 尺码管理
var $ = __webpack_require__(1);
common = __webpack_require__(2);
var g = new common.grid({
el: '#size-list',
parms: function () {
return {
sizeName: common.util.__input('sizeName')
};
},
columns: [
{display: "编号", name: "id"},
{display: "尺码名", name: "sizeName"},
{
display: "操作", name: "", render: function (item) {
return '<a class="btn btn-xs btn-info add2" data-index="' + item.__index + '">编辑</a>';
}
}
]
});
g.init("/erpproduct/sizeattribute/sizeList");
$('#size-list').on('click', '.add2', function () {
var item = g.rows[$(this).data("index")];
// 修改尺码
common.dialog.confirm("修改尺码",
common.util.__template($("#template").html(), {id: item.id, input: item.sizeName})
, function () {
common.util.__ajax({
url: '/erpproduct/size/updateSize',
data: (function () {
var input = $('#input').val();
if (input === '' || $.trim(input) === '') return "尺码名不能为空";
return {
id: item.id,
sizeName: input
};
})()
}, function () {
g.reload();
});
});
});
// 添加尺码
$('#add').on('click', function () {
common.dialog.confirm("添加尺码",
common.util.__template($("#template").html(), {id: "", input: ""})
, function () {
common.util.__ajax({
url: '/erpproduct/size/addSize',
data: (function () {
var input = $('#input').val();
if (input === '' || $.trim(input) === '') return "尺码名不能为空";
return {
sizeName: input
};
})()
}, function () {
g.reload();
});
});
});
$("#filter-btn").on("click",function(){
g.reload(1);
})
/***/ }
]);