Authored by liuyue

代销变价供应商店铺

... ... @@ -74,7 +74,22 @@ var g = new common.grid({
}
}, {
display: '供应商/店铺',
name: 'supplier_name'
name: 'supplier_name',
render: function(item) {
var html = '';
if (item.supplier_name) {
html += item.supplier_name;
if (item.shop_name) {
html += '/';
}
}
if (item.shop_name) {
html += item.shop_name;
}
return html;
}
}, {
display: '性别',
name: 'gender',
... ...
exports.domain = require('../config/common.js').domain;
//exports.domain = 'http://172.16.6.227:8083/yohobuy-platform-web'; //马力
//exports.domain = 'http://172.16.6.227:8088/platform'; //马力
//exports.domain = 'http://172.16.6.236:8080/platform'; //钱军
//exports.domain = 'http://172.16.6.162:8088/platform'; //李建
... ...