...
|
...
|
@@ -327,12 +327,17 @@ var g = new common.grid({ |
|
|
return html;
|
|
|
}},
|
|
|
{display: '申请信息', render: function(item) {
|
|
|
var html = '<p>申请销售价:'+'<br>'+ 0 +'</p>';
|
|
|
html += '<p>申请销售价生效时间:'+'<br>'+ 0 +'</p>';
|
|
|
var html = '<p>申请销售价:'+'<br>'+ item.expectSalesPrice +'</p>';
|
|
|
html += '<p>申请销售价生效时间:'+'<br>'+ item.expectSalesPriceDate +'</p>';
|
|
|
return html;
|
|
|
}},
|
|
|
{display: '状态', render: function(item) {
|
|
|
return TABENUM.statusStr[item.checkState];
|
|
|
{display: '状态', render: function(item) {
|
|
|
|
|
|
var html = '<p>'+TABENUM.statusStr[item.checkState]+'</p>';
|
|
|
if(item.dealComment!="undefined"){
|
|
|
html += '<p><font color="red">'+item.dealComment +'</font></p>';
|
|
|
}
|
|
|
return html;
|
|
|
}},
|
|
|
{display: '违规类型', render: function(item) {
|
|
|
return item.illegalType;
|
...
|
...
|
|