修复bug和更改会员界面

This commit is contained in:
yanran200730
2024-10-30 22:01:46 +08:00
parent e920251718
commit 56ee90ed30
6 changed files with 70 additions and 88 deletions

View File

@@ -531,6 +531,8 @@
this.getList()
}
this.btnLoading = false
}).catch(() => {
this.btnLoading = false
})
},

View File

@@ -4,6 +4,12 @@
slot="title"
title="模板管理"
isShowBottomBorder>
<template #rightBtn>
<div class="tips" slot="rightBtn" :class="[$store.state.labelInfo.isExpires ? 'active' : '']">
<p>有效期{{ $store.state.labelInfo.expireTime }}</p>
<p>剩余SKU数{{ $store.state.labelInfo.skuUsed }}/{{ $store.state.labelInfo.skuTotal }}</p>
</div>
</template>
</ai-title>
<template slot="content">
<ai-search-bar>
@@ -151,5 +157,24 @@
.search-item {
margin-bottom: 0;
}
.tips {
display: flex;
align-items: center;
color: green;
&.active {
color: red;
}
p {
font-size: 15px;
font-weight: 600;
&:first-child {
margin-right: 20px;
}
}
}
}
</style>