feat:新建项目

This commit is contained in:
李晓鸽
2022-09-21 15:45:33 +08:00
commit fc64aa3787
34 changed files with 20309 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<template>
<div class="titleHead">
<div class="text">{{ text }}</div>
</div>
</template>
<script>
export default {
name: "TitleHead",
props: {
text: String,
},
};
</script>
<style scoped lang="scss">
.titleHead {
width: 100%;
height: 80px;
background-image: url("../assets/image/titleBg.png");
background-size: 100% 100%;
background-repeat: no-repeat;
.text {
font-size: 15px;
font-weight: 600;
color: #ffffff;
line-height: 12px;
padding-top: 33px;
margin-left: 11px;
}
}
</style>