This commit is contained in:
yanran200730
2022-11-03 16:18:45 +08:00
parent 4cf8f9a4f6
commit 60fdec8005
2 changed files with 25 additions and 9 deletions

View File

@@ -17,11 +17,17 @@
</div> </div>
<div class="info-item"> <div class="info-item">
<h2>进场打卡</h2> <h2>进场打卡</h2>
<span>{{ info.intoBegintime }} {{ info.intoEndtime }}</span> <div class="right-time">
<p>{{ info.intoBegintime }} </p>
<p>{{ info.intoEndtime }}</p>
</div>
</div> </div>
<div class="info-item"> <div class="info-item">
<h2>离场打卡</h2> <h2>离场打卡</h2>
<span>{{ info.exitBegintime }} {{ info.exitEndtime }}</span> <div class="right-time">
<p>{{ info.exitBegintime }} </p>
<p>{{ info.exitEndtime }}</p>
</div>
</div> </div>
</div> </div>
</div> </div>
@@ -334,13 +340,15 @@ import { mapActions, mapState } from 'vuex'
font-size: 28px; font-size: 28px;
} }
span { span, p {
flex: 1; flex: 1;
color: #333333; color: #333333;
font-size: 28px; font-size: 28px;
text-align: justify; text-align: justify;
} }
p {}
.omit { .omit {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;

View File

@@ -29,11 +29,17 @@
<div class="bottom"> <div class="bottom">
<div class="item"> <div class="item">
<h3>进场时间</h3> <h3>进场时间</h3>
<span>{{ item.intoBegintime }} {{ item.intoEndtime }}</span> <div class="right">
<p>{{ item.intoBegintime }} </p>
<p>{{ item.intoEndtime }}</p>
</div>
</div> </div>
<div class="item"> <div class="item">
<h3>离场时间</h3> <h3>离场时间</h3>
<span>{{ item.exitBegintime }} {{ item.exitEndtime }}</span> <div class="right">
<p>{{ item.exitBegintime }} </p>
<p>{{ item.exitEndtime }}</p>
</div>
</div> </div>
</div> </div>
</div> </div>
@@ -251,11 +257,13 @@
color: #999999; color: #999999;
} }
span { div {
flex: 1; flex: 1;
text-align: justify;
font-size: 28px; p {
color: #333333; font-size: 28px;
color: #333333;
}
} }
} }
} }