...
|
...
|
@@ -10,13 +10,24 @@ webpackJsonp([16],[ |
|
|
selectedNum = 0,
|
|
|
curTab = 0;
|
|
|
|
|
|
var ENUM = {
|
|
|
status: {
|
|
|
'0': '未上架',
|
|
|
'1': '已上架'
|
|
|
}
|
|
|
}
|
|
|
|
|
|
var g1 = new common.grid({
|
|
|
el: '#productTable',
|
|
|
parms: function() {
|
|
|
return {
|
|
|
categoryId: curCategoryId,
|
|
|
productSKN: common.util.__input("productSKN"),
|
|
|
productName: common.util.__input("productName")
|
|
|
productName: common.util.__input("productName"),
|
|
|
maxSortId: tabTree.selected[0] ? tabTree.selected[0].id : "",
|
|
|
middleSortId: tabTree.selected[1] ? tabTree.selected[1].id : "",
|
|
|
smallSortId: tabTree.selected[2] ? tabTree.selected[2].id : "",
|
|
|
status: common.util.__input("status-select")
|
|
|
};
|
|
|
},
|
|
|
columns: [
|
...
|
...
|
@@ -34,6 +45,10 @@ webpackJsonp([16],[ |
|
|
{display: "SKN", name: "productSKN"},
|
|
|
{display: "商品名称", name: "productName"},
|
|
|
{display: "销售价(元)", name: "salePrice"},
|
|
|
{display: "可售库存", name: "storage"},
|
|
|
{display: "上下架状态", render: function(item) {
|
|
|
return ENUM.status[item.status];
|
|
|
}},
|
|
|
{display: "分类", name: "productSort"},
|
|
|
{display: "商品分类", render: function (item) {
|
|
|
var name = item.categoryName ? item.categoryName : '未分类';
|
...
|
...
|
@@ -68,7 +83,11 @@ webpackJsonp([16],[ |
|
|
return {
|
|
|
categoryId: curCategoryId,
|
|
|
productSKN: common.util.__input("productSKN"),
|
|
|
productName: common.util.__input("productName")
|
|
|
productName: common.util.__input("productName"),
|
|
|
maxSortId: tabTree.selected[0] ? tabTree.selected[0].id : "",
|
|
|
middleSortId: tabTree.selected[1] ? tabTree.selected[1].id : "",
|
|
|
smallSortId: tabTree.selected[2] ? tabTree.selected[2].id : "",
|
|
|
status: common.util.__input("status-select")
|
|
|
};
|
|
|
},
|
|
|
columns: [
|
...
|
...
|
@@ -87,6 +106,10 @@ webpackJsonp([16],[ |
|
|
{display: "SKN", name: "productSKN"},
|
|
|
{display: "商品名称", name: "productName"},
|
|
|
{display: "销售价(元)", name: "salePrice"},
|
|
|
{display: "可售库存", name: "storage"},
|
|
|
{display: "上下架状态", render: function(item) {
|
|
|
return ENUM.status[item.status];
|
|
|
}},
|
|
|
{display: "分类", name: "productSort"},
|
|
|
{display: "商品分类", render: function (item) {
|
|
|
var name = item.categoryName ? item.categoryName : '未分类';
|
...
|
...
|
@@ -111,6 +134,9 @@ webpackJsonp([16],[ |
|
|
}
|
|
|
});
|
|
|
|
|
|
var tabTree = new common.tabTree("#sortTree");
|
|
|
tabTree.init();
|
|
|
|
|
|
var Bll = {
|
|
|
init: function () {
|
|
|
this.getParamsInUrl();
|
...
|
...
|
|