shop--7.店铺编辑和列表--店铺管理 前端

shopmanagement.html

  

shopmanegement.js

$(function(){
   var shopId = getQueryString('shopId');
   var shopInfoUrl = '/shopadmin/getshopmanagementinfo?shopId=' + shopId;
    $.getJSON(shopInfoUrl, function(data){
        if(data.redirect){
            window.location.href=data.url;
        } else{
            if(data.shopId != undefined && data.shopId != null){
                shopId = data.shopId;
            }
            //如果有shopId时,点击shopInfo是修改店铺信息,要不然就是注册(默认)
            $('#shopInfo').attr('href', '/shopadmin/shopoperation?shopId=' + shopId);
        }
    });
});

  

 

 

shopmanegement.css

.mb {
    margin-bottom: .5rem;
}

  

 

转载于:https://www.cnblogs.com/SkyeAngel/p/8903674.html

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