根据条形码获取商品信息

根据条形码获取商品信息

function getGoodsInfoByCode(code){
                commonAjax.commAJAX({
                    //根据条形码的查询
                    url: "/goodsmanager/getGoddsListBygoodsBarcode?page=1&limit=10",
                    //订单号 条形码
                    method:'get',
                    data:{'goodsBarcode':code},
                    ajaxFunc:function(res){
                        if(res.meta.code==0){
                            console.log('获取数据显示',res);
                            // layer.msg(data.meta.msg,{icon:1,time:1000});
                            // dataCompareByGoodsInfo(res);
                            var data=res.data.data.list[0];
                            dataCompareByGoodsInfoAccordingToRow(data);
                        }else{
                            // layer.msg("查询失败");
                            layui.layer.msg('无此商品!',{icon:5,time:1000});
                        }
                        // tables.reload();
                    },
                    error:function(data){
                        layer.msg("网络错误,请稍后再试");
                    }
                });
            }

你可能感兴趣的:(layui,JavaScript,前端)