修改验证编号重复的问题 布局首页

This commit is contained in:
qq787203167
2022-05-24 11:30:14 +08:00
parent 4d57340423
commit 2c673eb9ad
18 changed files with 144 additions and 1 deletions
@@ -0,0 +1,85 @@
<template>
<div class="documentDynamics-box">
<div class="header-text">
<div class="header-text-left">{{this.$t('documentDynamics')}}</div>
<div class="header-text-right">{{$t('more')}}</div>
</div>
<div class="documentDynamics-box-content">
<div class="documentDynamics-text">
<div class="yuan"></div>
<div class="text">文档库中新增了新的标准 GB 7258 机动车文件</div>
<img src="../../../assets/new.png" alt="">
</div>
</div>
</div>
</template>
<script>
export default {
name: 'documentDynamics'
}
</script>
<style scoped lang="less">
.documentDynamics-box {
width: 100%;
.header-text {
width: 100%;
display: flex;
justify-content: space-between;
.header-text-left {
font-size: 20px;
font-weight: 400;
color: #040B29;
}
.header-text-right {
font-size: 14px;
font-weight: 400;
color: #9B9DA9;
margin-top: 6px;
}
}
.documentDynamics-box-content {
width: 100%;
display: flex;
justify-content: space-between;
.documentDynamics-text {
height: 51px;
display: flex;
width: calc(50% - 20px);
border-bottom: 1px solid #CED0D8;
align-items: center;
.yuan {
width: 6px;
display: inline-block;
height: 6px;
background: #040B29;
opacity: 0.8;
border-radius: 50%;
margin-top: 2px;
}
.text {
display: inline-block;
font-size: 16px;
font-weight: 400;
color: #040B29;
margin-left: 8px;
}
img {
width: 38px;
height: 20px;
margin-top: 3px;
margin-left: 3px;
}
}
}
}
</style>