...
|
...
|
@@ -37,6 +37,9 @@ var ENUM = { |
|
|
}
|
|
|
};
|
|
|
|
|
|
var tabTree=new common.tabTree("#sortTree");
|
|
|
tabTree.init();
|
|
|
|
|
|
var t = new common.tab({
|
|
|
el: "#basicTab",
|
|
|
click: function() {
|
...
|
...
|
@@ -103,9 +106,9 @@ var g = new common.grid({ |
|
|
isScreen: common.util.__input("isScreen"),
|
|
|
isMeasure: common.util.__input("isMeasure"),
|
|
|
gender: common.util.__input("gender"),
|
|
|
maxSortId: common.util.__input("maxSortId"),
|
|
|
middleSortId: common.util.__input("middleSortId"),
|
|
|
smallSortId: common.util.__input("smallSortId"),
|
|
|
maxSortId: tabTree.selected[0]?tabTree.selected[0].id:"",
|
|
|
middleSortId: tabTree.selected[1]?tabTree.selected[1].id:"",
|
|
|
smallSortId: tabTree.selected[2]?tabTree.selected[2].id:"",
|
|
|
isOutLets: common.util.__input("isOutLets"),
|
|
|
productStatus: common.util.__input("productStatus"),
|
|
|
size: common.util.__input("size"),
|
...
|
...
|
|