You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
<template>
|
|
|
|
|
|
<div class="check-page">
|
|
|
|
|
|
<div class="title-info">
|
|
|
|
|
|
<span class="explain">颜色说明:</span>
|
|
|
|
|
|
<span class="info-text">
|
|
|
|
|
|
<a-tag color="#d81e06" style="width:30px;height:20px"></a-tag>
|
|
|
|
|
|
盘点错误
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span class="info-text">
|
|
|
|
|
|
<a-tag color="#1afa29" style="width:30px;height:20px"></a-tag>
|
|
|
|
|
|
盘点正确
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span class="info-text">
|
|
|
|
|
|
<a-tag color="#bfbfbf" style="width:30px;height:20px"></a-tag>
|
|
|
|
|
|
未盘点
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.check-page{
|
|
|
|
|
|
.title-info{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: start;
|
|
|
|
|
|
.explain{
|
|
|
|
|
|
font-weight:600;
|
|
|
|
|
|
}
|
|
|
|
|
|
.info-text{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|