Authored by ZhongW

取消宽度设定

... ... @@ -368,7 +368,7 @@ var g = new common.grid({
},
{
display: '图片',
width:20,
name: 'product_pic_url',
render: function (item) {
if (item.product_pic_url) {
... ... @@ -380,7 +380,7 @@ var g = new common.grid({
}},
{display: '商品信息',
width:300,
render: function(item) {
var html = '<p>SKN:'+item.product_skn +'</p><p>名称:' + item.product_name + '</p><p>品牌:' + item.brand_name + '</p>' +
'<div>类目:'+ item.max_sort_name;
... ... @@ -393,7 +393,7 @@ var g = new common.grid({
return html;
}},
{display: '供应商/店铺',
width:160,
render: function(item) {
var html = '';
if (item.supplier_name) {
... ... @@ -404,7 +404,7 @@ var g = new common.grid({
return html;
}},
{display: '日期信息',
width:180,
render: function(item) {
var html = '<p>首次上架时间:';
if(item.firstShelveTime) html += item.firstShelveTime +'</p>';
... ...