zhongshujie
3 天以前 1695fcd442fe2cefb6d3b63869ad8a72ebd5210a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<template>
    <div class="chapter" num="1">
        <!-- 封面 -->
        <!-- <div class="page-box mt-30" page="1" style="min-height: auto">
            <div v-if="showPageList.indexOf(1) > -1">
                <img class="img-0" alt="" src="../../assets/images/fengmian.jpg" />
            </div>
        </div> -->
    </div>
</template>
 
<script>
export default {
    name: "pageHeader",
    props: {
        showPageList: {
            type: Array,
        },
    },
    data() {
        return {
        };
    },
};
</script>
 
<style lang="less" scoped>
.box {
    max-width: 400px;
    margin: 0 auto;
}
 
.preface {
    height: 224px;
    background: linear-gradient(to right, #8fc58c, #fff);
}
 
.preface-text {
    font-size: 26px !important;
    color: #000 !important;
}
 
.mt-100 {
    margin-top: 100px !important;
}
</style>