Compare commits

..

No commits in common. '6776715762839e87d93c10fb81594a026ab71501' and '3c45c4280fbc8d312d3c8603dbbf16128556c11f' have entirely different histories.

@ -190,23 +190,6 @@ html {
left: 60px;
background-color: unset;
box-shadow: unset;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#go-back .tab-button.active {
background: #fff !important;
color: #000 !important;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
font-weight: bold;
font-size: 18px;
}
#go-back > img {
display: block;
width: 28px;
height: 28px;
padding: 4px;
cursor: pointer;
}
.tab-button {

@ -82,16 +82,6 @@
padding: 0 15px 10px; /* 调整子项内容间距 */
font-size: 12px;
color: #999;
display: flex;
justify-content: space-between;
align-items: center;
}
.list-item-date > span:nth-child(2) {
background: #667eea;
color: #fff;
padding: 2px 5px;
border-radius: 5px;
}
.add-btn {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

@ -72,11 +72,7 @@
<!-- 画布容器 -->
<div id="canvas-panel">
<div id="go-back">
<img
src="./image/back.png"
alt=""
/>
<!-- <button class="tab-button active"><</button> -->
<button class="tab-button active"><</button>
</div>
<div id="canvas-tabs">
<button

@ -59,7 +59,6 @@ var userLangConfig = {
edit: '编辑',
apply: '应用',
add: '新建模版',
apply_text: '使用中',
},
},
en_US: {
@ -126,7 +125,6 @@ var userLangConfig = {
edit: 'edit',
apply: 'apply',
add: 'add template',
apply_text: 'using',
},
},
};

@ -581,12 +581,8 @@
hidePropsPanel();
});
$('#go-back img').on('click', function () {
const { confirm_del, tips } = userLangConfig[locale].base;
layer.confirm(confirm_del, { icon: 3, title: tips }, function (index) {
layer.close(index);
window.history.back();
});
$('#go-back .tab-button').on('click', function () {
window.history.back();
});
};

@ -36,7 +36,6 @@
</div>
<div class="list-item-date">
<span>${userLangConfig[locale].list.update_time}${item.createTime}</span>
${item.type == 1 ? '<span>' + userLangConfig[locale].list.apply_text + '</span>' : ''}
</div>
</div>
`;

Loading…
Cancel
Save