shop--7.店铺编辑和列表--店铺列表展示 前端

 shoplist.html




    
    
    商店列表
    
    
    
    
    
    
    


商店列表

你好, 增加店铺

商店名称
状态
操作

  

 

在其中需要嵌入的shoplist.js用来进行店铺信息查询与显示

$(function(){
    getlist();
    function getlist(e){
        $.ajax({
            url:'/shopadmin/getshoplist',
            type:'get',
            dataType:"json",
            success:function(data){
                if(data.success){
                    handleList(data.shopList);
                    handleUser(data.user);
                }
            }
        });

        //显示用户名
        function handleUser(data){
            $('#user-name').text(data.name);
        }

        //显示传回来的用户名下的店铺列表
        function handleList(data){
            var html = '';
            data.map(function(item, index){
                html += '
' + item.shopName +'
'+ shopStatus(item.status) +'
' + goShop(item.status, item.shopId) + '
'; }); $('.shop-wrap').html(html); } function shopStatus(data){ if(data == 0){ return '审核中'; } else if(data == -1){ return '店铺非法'; } else if(data == 1){ return '审核通过'; } } //进入店铺管理页面,一个超链接 function goShop(status, id){ if(status == 1){ return '进入'; } else{ return ''; } } } });

  

 

还有shoplist.css

.row-shop {
    border: 1px solid #999;
    padding: .5rem;
    border-bottom: none;
}
.row-shop:last-child {
    border-bottom: 1px solid #999;
}
.shop-name {
    white-space: nowrap;
    overflow-x: scroll;
}
.shop-wrap a {

}

  

路由

//进行店铺列表显示的转发
    @RequestMapping("/shoplist")
    public String shoplist(){
        //返回显示店铺注册的页面
        return "shop/shoplist";
    }

  

 

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

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