CateSize.js
5.66 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/**
* 品类关联尺码列表
*/
'use strict';
var $ = require('jquery'),
common = require('../../common/common');
var sortmenu = require('../../common/sortmenu');
/**
* 初始化排序目录
*/
sortmenu.init(function () {
g.init('/erpproduct/sortsize/ajax/index');
});
/**
* 表格
*/
var g = new common.grid({
el: "#basicTable",
parms: function () {
return {
sortId: window.sortid ? window.sortid : ""
};
},
columns: [
//分类ID 分类名称 尺码ID 尺码名 排序 操作
{display: "分类ID", name: "sortId"},
{display: "分类名称", name: "sortName"},
{display: "尺码ID", name: "sizeId"},
{display: "尺码名", name: "sizeName"},
{display: "排序", name: "orderBy"},
{
display: "操作", render: function (item) {
var htmlArr = [];
// 子类目不能删除父类目所创建的属性
if (window.sortid == item.sortId) {
htmlArr.push('<a data-index="' + item.__index + '" href="javascript:void(0)" class="btn btn-success btn-xs delbtn">删除</a>')
htmlArr.push('<a data-index="' + item.__index + '" href="javascript:void(0)" class="btn btn-primary btn-xs editBtn">修改</a>')
}
return htmlArr.join("");
}
}
]
});
/**
* 验证
*/
var edit = new common.edit2(".modal-body");
/**
* 通用
*/
var Bll = {
module: null,
sorts: [],
orderBys: [],
getOrderBy: function () {
common.util.__ajax({
url: '/erpproduct/sortsize/ajax/index',
data: {
"sortId": window.sortid ? window.sortid : ""
}
}, function (res) {
Bll.orderBys = [];
if (res.data && res.data.list) {
var list = res.data.list;
list.forEach(function (x) {
if (x.orderBy != 0) {
Bll.orderBys.push(x.orderBy);
}
})
}
}, true);
},
dropDown: function () {
common.util.__ajax({
url: '/erpproduct/sortsize/ajax/automatic',
data: {
"sortId": window.sortid ? window.sortid : ""
}
}, function (res) {
$("#sort-content").html(common.util.__template2($("#search-sort").html(), res));
new common.dropDown({el: "#choose-sort"});
Bll.sorts = res.data;
}, true);
},
//弹框
toast: function (hint, module, url) {
Bll.module = module;
Bll.getOrderBy();
if (Bll.module.__state == 'add') {
Bll.dropDown();
}
var d = new common.dialog({
title: hint + "尺码",
content: common.util.__template2($("#template").html(), Bll.module),
width: '30%',
button: [
{
value: "保存",
callback: function () {
var flag = true;
if (Bll.orderBys.length > 0) {
for (var i = 0; i < Bll.orderBys.length; i++) {
if (Bll.orderBys[i] == Bll.module.orderBy) {
flag = false;
common.util.__tip("排序值不可重复", "warning");
}
}
}
if (edit.validate() && flag) {
common.util.__ajax({
url: url,
data: Bll.module
}, function () {
g.reload();
d.close();
});
}
return false;
},
css: "btn-primary"
},
{
"value": "取消",
"css": "btn-info"
}
]
});
edit.init();
}
};
/**
* 监听输入框变化
*/
$(document).on("change", ".observe", function () {
var $this = $(this);
var name = $this.data("field");
Bll.module = common.util.__buildobj(name, '.', Bll.module, function (obj, name1) {
obj[name1] = $this.val();
});
});
/**
* 添加
*/
$(document).on("click", "#btn-add", function () {
var item = {
__state: "add",
name: "尺码",
sortName: window.sortname,
sortId: window.sortid,
sizeName: "",
sizeId: "",
orderBy: 0
};
Bll.toast("新增", item, '/erpproduct/sortsize/ajax/add');
});
/**
* 修改
*/
$(document).on("click", ".editBtn", function () {
var item = g.rows[$(this).data("index")];
item = $.extend(true, {}, item);
item.__state = "update";
item.name = "尺码";
Bll.toast("修改", item, "/product/updateSortSize");
});
/**
* 删除
*/
$(document).on("click", ".delbtn", function () {
var item = g.rows[$(this).data("index")];
common.dialog.confirm("温馨提示", "你确定要删除吗?", function () {
common.util.__ajax({
url: '/erpproduct/sortsize/ajax/delete',
data: {sortId: item.sortId, sizeId: item.sizeId}
}, function () {
g.reload();
});
});
});
/**
* 监控下拉选择变化
*/
$(document).on("change", "#choose-sort", function () {
var sizeId = $(this).val();
Bll.module.sizeId = sizeId;
for (var i = 0; i < Bll.sorts.length; i++) {
if (Bll.sorts[i].id == sizeId) {
Bll.module.sizeName = Bll.sorts[i].text;
}
}
});