Authored by mali

密码校验

... ... @@ -542,7 +542,7 @@ public static void main(String[] args) {
}
int n = productMapper.updateStatusByPrimaryKey(bo.getId(), bo.getStatus());
if (n == 1) {
return new ApiResponse<>(400, "操作成功");
return new ApiResponse<>(200, "操作成功");
}
return new ApiResponse<>(400, "操作失败!");
}
... ...
... ... @@ -148,7 +148,7 @@
editRow(id);
}
});
// 关闭品
// 关闭品
$(this).myDatagrid("getPanel").find("a[role='closeProductName']").linkbutton({
iconCls: "icon-more",
onClick: function () {
... ... @@ -156,7 +156,7 @@
}
});
// 开启品
// 开启品
$(this).myDatagrid("getPanel").find("a[role='openProductName']").linkbutton({
iconCls: "icon-more",
onClick: function () {
... ... @@ -253,11 +253,11 @@
var message = "";
var msg = "";
if (status == 0) {
message = "确认要开启品牌吗?";
msg = "开启品牌成功!";
message = "确认要开启品类吗?";
msg = "开启品类成功!";
} else {
message = "确认要关闭品牌吗?";
msg = "关闭品牌成功!";
message = "确认要关闭品类吗?";
msg = "关闭品类成功!";
}
window.top.$.messager.confirm("确认", message, function (flag) {
if (flag) {
... ...