| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div class="header" :style="{backgroundImage: 'url(' + bgImage + ')' }" >
- {{ title }}
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- props: {
- bgImage: {
- type: String,
- default: ''
- },
- title: {
- type: String,
- default: ''
- }
- },
- created() {
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "~static/common/style.sass";
- .header {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 885px;
- font-size:64px;
- font-family:PingFangSC-Medium,PingFang SC;
- font-weight:500;
- color:#ffffff;
- }
- </style>
|