博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
shop--8.店铺列表展示--前端开发
阅读量:5324 次
发布时间:2019-06-14

本文共 2352 字,大约阅读时间需要 7 分钟。

shoplist.html

    
商店列表

商店列表

你好, 增加店铺

商店名称
状态
操作

 

shoplist.js

 

$(function(){    //获取店铺信息 渲染出来就可以了    getlist();    function getlist(e){        $.ajax({            url:'/o2o/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.enableStatus) +'
' + goShop(item.enableStatus, 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 { }

 

 

同时处理一下路由

 

1     @RequestMapping(value = "/shoplist")2     public String shopList() {3         return "shop/shoplist";4     }

 

转载于:https://www.cnblogs.com/windbag7/p/9390043.html

你可能感兴趣的文章
Linux帮助文档
查看>>
Oracle的方案(Schema)和用户(User)的区别
查看>>
STM32中assert_param的使用
查看>>
判断一个字符串出现次数最多的字符,并返回这个字符和次数
查看>>
ZOJ 3432 Find the Lost Sock (水题)
查看>>
Oozie 安装及 examples app 的使用
查看>>
springboot过滤器配置
查看>>
Char03 Ansible 组件介绍
查看>>
ngingx安装错误 ./configure: error: the HTTP rewrite module requires the PCRE library.
查看>>
C#综合揭秘——深入分析委托与事件
查看>>
[Gamma阶段]第四次Scrum Meeting
查看>>
Requirement-Driven Linux Shell Programming
查看>>
Javascript--闭包
查看>>
子组件触发父组件的方法
查看>>
(转)CocosCreator零基础制作游戏《极限跳跃》五、制作游戏主场景背景滚动
查看>>
在线读取office 文件(Word excel 等)
查看>>
DataTable转成字符串复制到txt文本
查看>>
【转】NSBundle的使用,注意mainBundle和Custom Bundle的区别
查看>>
ES6初步学习
查看>>
413. Arithmetic Slices(LeetCode)
查看>>