卡口登记

This commit is contained in:
shijingjing
2022-09-23 18:03:52 +08:00
parent 761f404ac1
commit 6bc0e587b4
4 changed files with 63 additions and 79 deletions

View File

@@ -13,7 +13,7 @@
v-for="(item, index) in list" :key="index">
<div class="item-top">
<h2>{{ item.name }}</h2>
<span v-if="item.status === '0'">有异常情况</span>
<span>{{ item.phone }}</span>
</div>
<p>{{ item.idNumber.replace(/^(\d{6})\d{8}(.{4}$)/g, `$1${Array(9).join('*')}$2`) }}</p>
<div class="item-info">
@@ -171,7 +171,6 @@ export default {
.item-top {
display: flex;
align-items: center;
justify-content: space-between;
height: 50px;
h2 {
@@ -182,7 +181,8 @@ export default {
span {
font-size: 28px;
color: #FF4466;
color: #999999;
margin-left: 16px;
}
}