You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
1.9 KiB
83 lines
1.9 KiB
<template>
|
|
<div class="audit_container">
|
|
<div class="header_wrap">
|
|
<p>操作人</p>
|
|
<p>操作内容</p>
|
|
<p>操作时间</p>
|
|
</div>
|
|
<div class="content_wrap">
|
|
<div class="line">
|
|
<div class="username">Admin</div>
|
|
<div class="oper">修改注射泵速率</div>
|
|
<div class="time">2023-06-29 13:59</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup></script>
|
|
|
|
<style lang="scss" scoped>
|
|
.audit_container {
|
|
margin-bottom: 19px;
|
|
height: 580px;
|
|
box-sizing: border-box;
|
|
background: #ffffff;
|
|
border-radius: 16px;
|
|
.header_wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 80.29px;
|
|
background: #f6f6f6;
|
|
border-radius: 16px 16px 0px 0px;
|
|
padding: 0 89.43px;
|
|
box-sizing: border-box;
|
|
font-family: Source Han Sans CN;
|
|
font-size: 18px;
|
|
font-weight: normal;
|
|
line-height: normal;
|
|
letter-spacing: 0.07em;
|
|
color: #999999;
|
|
}
|
|
.content_wrap {
|
|
height: 499.71px;
|
|
overflow: scroll;
|
|
.line {
|
|
padding: 23px;
|
|
padding-left: 40px;
|
|
font-family: Source Han Sans CN;
|
|
font-size: 18px;
|
|
font-weight: normal;
|
|
line-height: normal;
|
|
letter-spacing: 0.07em;
|
|
color: #191919;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid #f6f6f6;
|
|
.username {
|
|
width: 160px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
text-align: center;
|
|
}
|
|
.oper {
|
|
width: 550px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
text-align: center;
|
|
}
|
|
.time {
|
|
width: 200px;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|