159 lines
3.4 KiB
Vue
159 lines
3.4 KiB
Vue
<script setup>
|
||
import { Request, Storage } from "../libs/utils"
|
||
import ModalTransition from "./ModalTransition.vue"
|
||
import { globalStore } from "../globalstore.js";
|
||
import { ElMessage } from 'element-plus';
|
||
|
||
defineProps({
|
||
show: false
|
||
})
|
||
|
||
const emit = defineEmits(['update:show']);
|
||
|
||
const cancelBtn = () => {
|
||
emit('update:show', false);
|
||
}
|
||
|
||
const confirmBtn = () => {
|
||
fetch(`https://huodong2.lzlj.com/api/faceFamily/face/publish/${globalStore.mergeId}`, {
|
||
method: 'POST',
|
||
headers: {
|
||
'Content-Type': 'application/json',
|
||
Accept: "application/json",
|
||
'Authorization': `Bearer ${Storage.get("userinfos").api_token}`
|
||
},
|
||
body: {}
|
||
})
|
||
.then(async response => {
|
||
const data = await response.json()
|
||
if (response.status == 200 || response.status == 201) {
|
||
if (data.message === '您已经有一张发布的照片,不能再次发布') {
|
||
weui.alert('您已经有一张发布的照片,不能再次发布')
|
||
return
|
||
}
|
||
ElMessage.success('打榜成功!');
|
||
console.log('Success:', data);
|
||
return { success: true, data };
|
||
} else {
|
||
ElMessage.error(data.message);
|
||
}
|
||
})
|
||
.catch((error) => {
|
||
ElMessage.error('打榜失败!');
|
||
return { success: false, error };
|
||
});
|
||
emit('update:show', false);
|
||
}
|
||
|
||
</script>
|
||
|
||
<template>
|
||
<ModalTransition class="popup" :show="show">
|
||
<div class="home-bg">
|
||
<div class="popup-bg">
|
||
<div class="scene-item item-1">
|
||
<img src="../assets/images/confirm.webp" @click="confirmBtn" alt="确认">
|
||
</div>
|
||
<p class="message">温馨提示:每位用户只能选择一张合影参与打榜,一经确认,在打榜期间将无法更换。</p>
|
||
<div class="scene-item item-2">
|
||
<img src="../assets/images/cancel.webp" @click="cancelBtn" alt="取消">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</ModalTransition>
|
||
</template>
|
||
|
||
<style scoped>
|
||
.home-bg {
|
||
position: absolute;
|
||
top: 60vw;
|
||
left: 12vw;
|
||
}
|
||
.message {
|
||
width: 60vw;
|
||
position: absolute;
|
||
top: 42%;
|
||
color: #774107;
|
||
}
|
||
.popup-bg {
|
||
width: 77vw;
|
||
height: 60vw;
|
||
background-image: url('../assets/images/popup.webp');
|
||
background-size: 100%;
|
||
background-repeat: no-repeat;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
position: relative;
|
||
}
|
||
.scene-item {
|
||
position: absolute;
|
||
cursor: pointer;
|
||
transition: all 0.4s ease;
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
border: 3px solid transparent;
|
||
animation: float 4s ease-in-out infinite;
|
||
}
|
||
|
||
.scene-item:hover {
|
||
transform: scale(1.05);
|
||
}
|
||
.btn-login {
|
||
text-align: center;
|
||
border-radius: 1vw;
|
||
background-color: #70b2e2;
|
||
margin-top: 4vw;
|
||
padding: 3vw;
|
||
color: #fff;
|
||
position: relative;
|
||
}
|
||
.item-1 {
|
||
top: 50vw;
|
||
width: 40vw;
|
||
right: 0;
|
||
}
|
||
.item-2 {
|
||
top: 50vw;
|
||
width: 40vw;
|
||
left: 0;
|
||
}
|
||
.scene-item img {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
display: block;
|
||
}
|
||
|
||
.btn-login.disable {
|
||
opacity: .6;
|
||
}
|
||
|
||
.btn-login.subloading {
|
||
opacity: .6;
|
||
}
|
||
|
||
.btn-login.subloading::before {
|
||
content: "";
|
||
position: absolute;
|
||
border: .5vw solid #fff;
|
||
border-color: rgba(255, 255, 255, .8) transparent transparent transparent;
|
||
border-radius: 50%;
|
||
width: 3vw;
|
||
height: 3vw;
|
||
top: 30%;
|
||
left: calc(50% - 14vw);
|
||
animation: loginloading 1s linear infinite;
|
||
}
|
||
|
||
@keyframes loginloading {
|
||
0% {
|
||
transform: rotate(0deg);
|
||
}
|
||
|
||
100% {
|
||
transform: rotate(360deg);
|
||
}
|
||
}
|
||
</style> |