|
|
@@ -25,7 +25,7 @@
|
|
|
<template
|
|
|
v-for="(item, index) in reportTarget.reportContents"
|
|
|
v-if="reportTarget.reportContents && reportTarget.reportContents.length > 0">
|
|
|
- <div class="text">{{ filterText(index) }}</div>
|
|
|
+ <div :class="['text', 'text' + index]">{{ filterText(index) }}</div>
|
|
|
<div class="content">{{ item.dayContent }}</div>
|
|
|
</template>
|
|
|
<div class="text">今日拜访照片</div>
|
|
|
@@ -180,8 +180,9 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
overflow: hidden;
|
|
|
- // position: fixed;
|
|
|
- // z-index: -1;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ z-index: 111;
|
|
|
|
|
|
.share-content {
|
|
|
background: url('../assets/shareBack.png') no-repeat center center;
|
|
|
@@ -190,7 +191,7 @@ export default {
|
|
|
width: 100%;
|
|
|
// height: 100%;
|
|
|
padding: vw(30);
|
|
|
- position: fixed;
|
|
|
+ position: absolute;
|
|
|
// z-index: -1;
|
|
|
padding-bottom: vw(190);
|
|
|
top: 0;
|
|
|
@@ -240,9 +241,11 @@ export default {
|
|
|
|
|
|
.summaryDay {
|
|
|
background: url('../assets/summaryDay.png') no-repeat;
|
|
|
- background-size: 100% 100%;
|
|
|
+ background-size: 100%;
|
|
|
padding: vw(24);
|
|
|
position: relative;
|
|
|
+ margin-top: vw(55);
|
|
|
+ border-radius: 0 0 vw(35) vw(35);
|
|
|
.text {
|
|
|
background: url('../assets/textBack.png') no-repeat;
|
|
|
width: 100%;
|
|
|
@@ -252,10 +255,14 @@ export default {
|
|
|
font-size: vw(36);
|
|
|
text-align: center;
|
|
|
line-height: vw(94);
|
|
|
- margin-top: vw(152);
|
|
|
- margin-bottom: vw(45);
|
|
|
+ // margin-top: vw(152);
|
|
|
+ // margin-bottom: vw(45);
|
|
|
+ margin: vw(35) 0;
|
|
|
font-weight: bold;
|
|
|
}
|
|
|
+ .text0 {
|
|
|
+ margin-top: vw(152);
|
|
|
+ }
|
|
|
|
|
|
.content {
|
|
|
font-size: vw(28);
|