feat: 优化新能源键位空值显示状态

This commit is contained in:
weishuodan 2023-11-20 20:21:18 +08:00
parent 8ea1fba5da
commit 4acd74a776
3 changed files with 5 additions and 19 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -22,11 +22,8 @@
v-else v-else
class="md-license-plate-input-item_content" class="md-license-plate-input-item_content"
> >
<div v-if="item">{{ item }}</div> <div v-if="item && item !== ' '">{{ item }}</div>
<div v-else class="emptyValue"> <div v-else class="emptyValue"></div>
<div>+</div>
<div class="emptyValue_text">新能源</div>
</div>
</div> </div>
</div> </div>
</div> </div>
@ -85,19 +82,8 @@
.emptyValue{ .emptyValue{
width: 100%; width: 100%;
height: 100%; height: 100%;
display: flex; background: url(../_style/images/new-energy.png) center no-repeat;
flex-direction: column; background-size: 49px 51px;
justify-content: center;
align-items: center;
color: #12BB42;
font-size: 36px;
line-height: 36px;
&_text{
color: #61686F;
font-size: 16px;
line-height: 16px;
margin-top: 10px;
}
} }
} }
} }

View File

@ -18,7 +18,7 @@ export default {
}, },
mounted() { mounted() {
// setTimeout(()=>{ // setTimeout(()=>{
// this.defaultValue = '23338888888' // this.defaultValue = '2333888 '
// },10000) // },10000)
}, },
methods: {}, methods: {},