博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
shop--10.商品--商品管理(前端)
阅读量:5236 次
发布时间:2019-06-14

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

productmanagement.html

 

            
商品管理

商品管理

商品名称
优先级
操作

 

 

 

productmanagement.css

 

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

 

 

 

productmanagement.js

 

$(function() {
var listUrl = '/o2o/shopadmin/getproductlistbyshop?pageIndex=1&pageSize=9999'; var statusUrl = '/o2o/shopadmin/changestatus'; getList(); function getList() { $.getJSON(listUrl, function(data) { if (data.success) { var productList = data.productList; var tempHtml = ''; productList.map(function(item, index) { var textOp = "下架"; var contraryStatus = 0; if (item.enableStatus == 0) { textOp = "上架"; contraryStatus = 1; } else {
contraryStatus = 0; } tempHtml += '' + '
' + '
' + item.productName + '
' + '
' + item.priority + '
' + '
' + '
编辑' + '
' + textOp + '' + '
预览' + '
' + '
'; }); $('.product-wrap').html(tempHtml); } }); } $('.product-wrap') .on( 'click', 'a', function(e) {
var target = $(e.currentTarget); if (target.hasClass('edit')) { window.location.href = '/o2o/shopadmin/productoperation?productId=' + e.currentTarget.dataset.id; } else if (target.hasClass('status')) {
changeStatus(e.currentTarget.dataset.id, e.currentTarget.dataset.status); } else if (target.hasClass('preview')) {
// TODO window.location.href = '/o2o/frontend/productdetail?productId=' + e.currentTarget.dataset.id; } }); /** * 下架操作 */ function changeStatus(id, enableStatus) {
//定义product json对象并添加productId以及状态 var product = {
}; product.productId = id; product.enableStatus = enableStatus; $.confirm('确定么?', function() {
$.ajax({ url : statusUrl, type : 'POST', data : { productStr : JSON.stringify(product), statusChange : true }, dataType : 'json', success : function(data) {
if (data.success) { $.toast("操作成功"); getList(); } else {
$.toast("操作失败"); } } }); }); } $('#new').click(function() {
window.location.href = '/o2o/shopadmin/productoperation'; });});

 

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

你可能感兴趣的文章
javascript面相对象编程,封装与继承
查看>>
Atlas命名空间Sys.Data下控件介绍——DataColumn,DataRow和DataTable
查看>>
Java中正则表达式的使用
查看>>
算法之搜索篇
查看>>
新的开始
查看>>
java Facade模式
查看>>
NYOJ 120校园网络(有向图的强连通分量)(Kosaraju算法)
查看>>
SpringAop与AspectJ
查看>>
Leetcode 226: Invert Binary Tree
查看>>
http站点转https站点教程
查看>>
解决miner.start() 返回null
查看>>
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>