Authored by leo

Update: 模板列表增加发布标识

... ... @@ -100,6 +100,10 @@
[[if item.status == 0 || item.status == 3]]
<a href="javascript:;"><img src="/static/assets/images/decorator/del-icon.png" alt="X" class="template-del-icon" title="删除模板" data-name="[[item.templateName]]"></a>
[[/if]]
<!-- 发布状态 -->
[[if item.status == 2]]
<img src="/static/assets/images/decorator/published-template-icon.png" alt="" class="published-template-icon" title="已发布">
[[/if]]
<div class="create-time">
[[if _index == index]]
<img src="/static/assets/images/decorator/selected-time-logo.png" alt="#">
... ...
... ... @@ -232,6 +232,15 @@
height: 20px;
}
.decorator-template .published-template-icon {
position: absolute;
margin-top: -113px;
margin-left: 10px;
z-index: 21;
width: 32px;
height: 32px;
}
/* 装修主体 */
.decorator-right {
position: absolute;
... ...