日期:2014-05-18 浏览次数:20838 次
function AjaxGetData( index, size) {
$.ajax({
url: "${pageContext.request.contextPath}/showAllProduct.do",
type: "Get",
data: "pagenum=" + index + "&pagesize=" + size,
dataType: "json",
success: function (json) {
var html = "";
html += "<table>";
html += "<thead>";
html += "<tr><td>商品编号</td><td>商品名</td><td>商品规格</td><td>计量单位</td><td>商品类别</td><td>产地</td><td>建议采购价格</td><td>建议销售价格</td><td>操作</td></tr>";
html += "</thead>";
html += "<tbody>";
for(position in json){
html += "<tr>";
html += "<td>"+json[position].productID+"</td>";
html += "<td>"+json[position].name+"</td>";
html += "<td>"+json[position].model+"</td>";
html += "<td>"+json[position].baseunit+"</td>";
html += "<td>"+json[position].type.type+"</td>";
html += "<td>"+json[position].productAddress+"</td>";
html += "<td>"+json[position].suggestPrice+"</td>";
html += "