|
|
@ -18,9 +18,9 @@ |
|
|
|
:key="item?.id" |
|
|
|
> |
|
|
|
<div class="username">{{ item?.uid }}</div> |
|
|
|
<div class="oper">{{ item?.behaviorZH }}</div> |
|
|
|
<div class="oper">{{ `${item?.behaviorZH}${item?.behaviorinfo}` }}</div> |
|
|
|
<div class="time"> |
|
|
|
{{ moment(item?.date).format('YYYY-MM-DD HH:mm:ss') }} |
|
|
|
{{ item?.date }} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<svg |
|
|
@ -79,6 +79,7 @@ onMounted(() => { |
|
|
|
<style lang="scss" scoped> |
|
|
|
.audit_container { |
|
|
|
margin-bottom: 19px; |
|
|
|
overflow: hidden; |
|
|
|
height: 580px; |
|
|
|
box-sizing: border-box; |
|
|
|
background: #ffffff; |
|
|
@ -123,14 +124,14 @@ onMounted(() => { |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
.oper { |
|
|
|
width: 550px; |
|
|
|
width: 600px; |
|
|
|
overflow: hidden; |
|
|
|
white-space: nowrap; |
|
|
|
text-overflow: ellipsis; |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
.time { |
|
|
|
width: 200px; |
|
|
|
width: 230px; |
|
|
|
overflow: hidden; |
|
|
|
text-align: center; |
|
|
|
white-space: nowrap; |
|
|
|