新增衣服设置优先级,相同衣服id导致优先级相同问题

This commit is contained in:
X1627315083
2023-12-21 17:26:49 +08:00
parent b06ea39f03
commit 70e2fe094b
16 changed files with 99 additions and 60 deletions

View File

@@ -337,19 +337,19 @@ export default defineComponent({
let isTest = getCookie('isTest')
// console.log(getCookie("token"));
if(JSON.parse(isTest)){
Https.axiosGet(Https.httpUrls.trialUserLogout,).then((rv) => {
await Https.axiosGet(Https.httpUrls.trialUserLogout,).then((rv) => {
Https.axiosPost(Https.httpUrls.accountLogout, data).then((rv) => {
this.$router.replace("/login");
WriteCookie("token");
});
})
}else{
Https.axiosPost(Https.httpUrls.accountLogout, data).then((rv) => {
await Https.axiosPost(Https.httpUrls.accountLogout, data).then((rv) => {
this.$router.replace("/login");
WriteCookie("token");
});
}
window.location.reload()
},

View File

@@ -313,6 +313,8 @@ export default defineComponent({
color: rgba(0,0,0,.65);
z-index: 2;
align-items: center;
width: 35rem;
justify-content: space-between;
.collection_progress{
width: 8rem;
height: 8rem;
@@ -326,7 +328,7 @@ export default defineComponent({
}
}
.collection_title_text{
margin-right: 4rem;
// margin-right: 4rem;
}
.collection_title_text_intro{
font-size: var(--aida-fsize1-4);