Authored by weiqingting

bug修改提交

... ... @@ -44,6 +44,7 @@ function batchExport(el, type) {
},
onComplete: function(response) {
console.log(response);
$("#message").html('');
if (loadModal) {
loadModal.close();
}
... ... @@ -53,11 +54,10 @@ function batchExport(el, type) {
return;
}
if(response.data&&response.data.failFileReason.length){
$("#message").html(response.data.failFileReason.join('/n'));
$("#message").html(response.data.failFileReason.join('<br/>'));
return false;
}
common.util.__tip(response.message, 'warning');
}
}
}
... ...
... ... @@ -97,6 +97,7 @@
<button class="btn btn-primary apply-success">通过</button>
<button class="btn btn-primary apply-back">驳回</button>
[[/if]]
<button onclick="history.go(-1);" type="button" class="btn btn-primary btn-info">返回</button>
</div>
</form>
</div>
... ... @@ -111,7 +112,7 @@
<thead>
<tr>
<th>SKC</th>
<th>SKN</th>
<th>SKU</th>
<th>销售价</th>
<th>款型编码</th>
<th>条码</th>
... ... @@ -128,7 +129,7 @@
<span>[[item.factoryGoodsName||""]]</span>
</th>
<th>
<span>[[item.productSkn]]</span>
<span>[[_item.productSku]]</span>
<span>[[_item.sizeName]]</span>
</th>
<th>[[_item.salePrice]]</th>
... ...