...
|
...
|
@@ -761,8 +761,7 @@ |
|
|
success:function(res){
|
|
|
console.log(res);
|
|
|
var goods_html = "";
|
|
|
$(res.data.data).each(function (key1, vo) {
|
|
|
console.log(vo);
|
|
|
$(res.data).each(function (key1, vo) {
|
|
|
var property = "";
|
|
|
$(vo.property).each(function (key2, p) {
|
|
|
property += "<span class=\"myLable\">"+p+"</span>";
|
...
|
...
|
@@ -783,7 +782,6 @@ |
|
|
" </tr>";
|
|
|
goods_html += str.replace("GOODS_ID",vo.id).replace("STORE_ID",vo.store_id).replace("PROVINCE_ID",province_id);
|
|
|
});
|
|
|
console.log(goods_html);
|
|
|
$('.goods_dom').html(goods_html);
|
|
|
$('#resultsNum').html(res.data.total+"件");
|
|
|
//初始化分页
|
...
|
...
|
|