|
@@ -605,6 +605,14 @@
|
|
|
//}
|
|
//}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ var data = freegift.brandList;
|
|
|
|
|
+ let brandList = [];
|
|
|
|
|
+ $.each(data, function(idx, item) {
|
|
|
|
|
+ let brandEnm = item.brandEnm;
|
|
|
|
|
+ item.brandEnm = brandEnm.replaceXSS();
|
|
|
|
|
+ brandList.push(item);
|
|
|
|
|
+ });
|
|
|
|
|
+
|
|
|
var data = freegift.applyGoodsList;
|
|
var data = freegift.applyGoodsList;
|
|
|
let applyGoodsList = [];
|
|
let applyGoodsList = [];
|
|
|
$.each(data, function(idx, item) {
|
|
$.each(data, function(idx, item) {
|
|
@@ -637,7 +645,7 @@
|
|
|
});
|
|
});
|
|
|
gridOptionsFGExtmallList.api.setRowData(freegift.extmallList);
|
|
gridOptionsFGExtmallList.api.setRowData(freegift.extmallList);
|
|
|
gridOptionsFGCompanyList.api.setRowData(freegift.supplyCompList);
|
|
gridOptionsFGCompanyList.api.setRowData(freegift.supplyCompList);
|
|
|
- gridOptionsFGBrandList.api.setRowData(freegift.brandList);
|
|
|
|
|
|
|
+ gridOptionsFGBrandList.api.setRowData(brandList);
|
|
|
gridOptionsFGApplyGoodsList.api.setRowData(applyGoodsList);
|
|
gridOptionsFGApplyGoodsList.api.setRowData(applyGoodsList);
|
|
|
gridOptionsFGExceptGoodsList.api.setRowData(exceptGoodsList);
|
|
gridOptionsFGExceptGoodsList.api.setRowData(exceptGoodsList);
|
|
|
gridOptionsFreeGoods1List.api.setRowData(freeGoods1);
|
|
gridOptionsFreeGoods1List.api.setRowData(freeGoods1);
|