Authored by liuyue

网销 层级样式修改

... ... @@ -180,7 +180,7 @@ var g = new common.grid({
}, {
display: '售价',
render: function(item) {
var vip = item.isVIP ? ENUM.isVIP[item.isVIP] : '',
var vip = ENUM.isVIP[item.isVIP] ? ENUM.isVIP[item.isVIP] : '',
retailPrice = item.retailPrice ? item.retailPrice : '',
salesPrice = item.salesPrice ? item.salesPrice : '';
return '<p><strong>吊牌价:</strong>' + retailPrice + '</p>' +
... ... @@ -196,13 +196,13 @@ var g = new common.grid({
render: function(item) {
var html = '';
if (item.ageLevel) {
if (ENUM.ageLevel[item.ageLevel]) {
html += ENUM.ageLevel[item.ageLevel];
if (item.gender) {
html += '/';
}
}
if (item.gender) {
if (ENUM.gender[item.gender]) {
html += ENUM.gender[item.gender]
}
return html;
... ...
... ... @@ -45,7 +45,12 @@ GOLABDATA.on("LYaddInfo", function() {
}
});
return JSON.stringify(arr);
if (arr.length > 0) {
return JSON.stringify(arr);
} else {
return '';
}
}
option.debug = true;
});
... ... @@ -70,6 +75,7 @@ $.ajax({
data.makeCrafts = productExtBo.makeCrafts;
data.salesPhrase = productExtBo.salesPhrase;
data.isHostsell = productExtBo.isHostsell;
$.each(data, function(key, value) {
if (value) {
data[key] = value;
... ...
... ... @@ -97,7 +97,7 @@ var g = new common.grid({
}, {
display: "发表时间",
render: function(item) {
return common.util.__dateFormat(new Date(item.createTime), "yyyy-MM-dd hh:mm:ss");
return common.util.__dateFormat(new Date(item.createTime * 1000), "yyyy-MM-dd hh:mm:ss");
}
}, {
display: "操作",
... ...
... ... @@ -27,7 +27,7 @@ a:focus {
min-height: 60px;
position: fixed;
width: 100%;
z-index: 99999;
z-index: 1000;
}
.headerwrapper:after {
... ...
... ... @@ -66,8 +66,8 @@ input[type=date], input[type=time], input[type=datetime-local], input[type=month
}
.poseditimg{
position: relative;
width: 700px;
height: 600px;
width: 100%;
height: auto;
img{
display: block;
width: 100%;
... ... @@ -96,6 +96,10 @@ input[type=date], input[type=time], input[type=datetime-local], input[type=month
top: 20%;
z-index: 1000;
ul {
padding: 0;
}
li {
width: 150px;
line-height: 40px;
... ...