Compare commits

..

No commits in common. "a6404f964db361b94a6210da6d41b21f54bbd7a4" and "d0c321c33dd2a2a0c1524c6bda9e7c15c3a12a06" have entirely different histories.

5 changed files with 4 additions and 45 deletions

View File

@ -409,31 +409,12 @@ textarea {
position: relative;
width: 373px;
height: 78px;
display: flex;
align-items: center;
padding: 10px;
}
.index .header .header-left .logo-img {
position: relative;
z-index: 2;
margin-right: 10px;
}
.index .header .header-left .logo-bg {
.index .header .header-left > img {
width: 373px;
height: 99px;
cursor: pointer;
position: absolute;
left: 0;
top: 0;
z-index: 1;
}
.index .header .header-left .logo-title {
position: relative;
z-index: 2;
font-size: 35px;
}
.index .header .header-center {

View File

@ -423,26 +423,11 @@ textarea{
position: relative;
width: 373px;
height: 78px;
display: flex;
align-items: center;
padding: 10px;
.logo-img{
position: relative;
z-index: 2;
margin-right: 10px;
}
.logo-bg {
>img {
width: 373px;
height: 99px;
cursor: pointer;
position: absolute;
left: 0;
top: 0;
z-index: 1;
}
.logo-title{
position: relative;z-index: 2;
font-size: 35px;
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -2,11 +2,7 @@
<div class="index">
<div class="header">
<div class="header-left">
<img class="logo-img" src="../assets/image/logo-img.png" alt="">
<img class="logo-bg" src="../assets/image/logo.png" alt="">
<div class="logo-title" v-if="mainData">
{{mainData.projectName}}
</div>
<img src="../assets/image/logo.png" alt="">
</div>
<div class="header-center">
@ -150,7 +146,6 @@ export default {
limitUserId: [],
statusData: [],
roleId:2,
mainData:null,
}
},
watch: {
@ -235,8 +230,6 @@ export default {
] },
]
}
this.mainData=res.data.data.project
}
})
},