first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
<template lang="pug">
.header
.logo
img(class="logo_icon" src="/img/icon/gw_img_logo.png")
img(class="logo_text" src="/img/icon/logo_text_icon.png")
.open 打开
</template>
<script>
export default {
data() {
return {
}
},
created() {
},
methods: {
async getTvList() {
}
}
}
</script>
<style scoped lang="stylus">
.header
width: 100%;
height: 1.333rem;
background-color: #000000;
opacity: 0.7;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 0.533rem 0 0.32rem;
box-sizing: border-box;
position fixed
left 0
top 0
.logo
display: flex;
align-items: center;
.logo_icon
width: 0.867rem;
height: 0.867rem;
.logo_text
margin-left 0.253rem
width: 1.76rem;
height: 0.613rem;
.open
width: 2rem;
height: 0.693rem;
background-color: #d0302c;
font-family: PingFangSC-Medium;
line-height: 0.693rem;
font-size 16px
text-align center
border-radius 0.2rem
color: #ffffff;
</style>