This commit is contained in:
scout 2024-05-31 14:18:17 +08:00
parent d3032d9201
commit 01dd6a27d1
2 changed files with 4 additions and 6 deletions

View File

@ -106,14 +106,14 @@ watch(
<style scoped lang="scss"> <style scoped lang="scss">
.card { .card {
width: 270px; width: 270px;
height: 374px; height: 420px;
background-image: linear-gradient( background-image: linear-gradient(
163deg, 163deg,
#61d2ef 0%, #61d2ef 0%,
#5f33f3 50%, #5f33f3 50%,
#e44ea8 100% #e44ea8 100%
); );
border-radius: 20px; border-radius: 22px;
transition: all 0.3s; transition: all 0.3s;
} }
@ -121,17 +121,16 @@ watch(
cursor: pointer; cursor: pointer;
width: 270px; width: 270px;
padding: 10px; padding: 10px;
padding-bottom: 15px;
display: flex; display: flex;
justify-content: center; justify-content: center;
flex-direction: column; flex-direction: column;
height: 374px; height: 420px;
position: absolute; position: absolute;
background-color: #19191a; background-color: #19191a;
border-radius: 20px; border-radius: 20px;
transition: all 0.2s; transition: all 0.2s;
img { img {
height: 280px; height: 300px;
border-radius: 10px; border-radius: 10px;
} }
.info-box { .info-box {

View File

@ -646,7 +646,6 @@ const selectedModel = (model) => {
}; };
// //
const handleChange = (file, List) => { const handleChange = (file, List) => {
showModal.value = true;
let resData = JSON.parse(file.event.currentTarget.response); let resData = JSON.parse(file.event.currentTarget.response);
if (resData.status === 0) { if (resData.status === 0) {
processSuccess("上传成功"); processSuccess("上传成功");