记得上下班打卡 | git大法好,push需谨慎

Commit 467f9676 authored by 胡佳晨's avatar 胡佳晨

Merge remote-tracking branch 'origin/dev_goblin' into dev_goblin

parents 6cb6c0bf b70ac307
......@@ -104,6 +104,9 @@
.iptOrSelect {
flex: 1;
}
#activeTags {
display: none;
}
</style>
</head>
<body>
......@@ -136,6 +139,9 @@
<button type="button" class="btn btn-warning" style="margin-right: 12px;" onclick="addItem(0)">添加banner</button>
<span id="tall">(最多允许添加10张图,宽度为764像素,高度为1018像素)</span>
</div>
<div id="activeTags" class="tags">
<span id="tall">(请上传宽度为382像素的图片!)</span>
</div>
</div>
<div id="bannerList" class="banner_list">
......@@ -186,10 +192,11 @@
if (type == 2) {
$("#tall").html('');
$("#tags").hide();
$("#showMiddleBanner").show();
$("#activeTags").show();
} else {
type = 1
$("#tags").show();
$("#activeTags").hide();
}
let data = {
type
......
......@@ -767,6 +767,7 @@ create table goblin_shopping_cart
number int default 0 comment '数量',
marketing_id varchar(64) default '' comment '默认的营销id[活动id]',
del_tag int default 0 comment '删除标记[0-未删除|1-已删除]',
type varchar(200) default '' comment 'type前端传的',
created_at datetime,
updated_at datetime,
comment text,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment