修改验证编号重复的问题 布局首页
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user