26635
This commit is contained in:
@@ -21,22 +21,21 @@
|
|||||||
|
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<div class="title">异常情况记录</div>
|
<div class="title">异常情况记录</div>
|
||||||
<div class="error-list">
|
<div class="error-list" v-if="data.length">
|
||||||
<div v-if="data.length">
|
<div class="itemes" v-for="(item, i) in data" :key="i">
|
||||||
<div class="itemes" v-for="(item, i) in data" :key="i">
|
<p>{{ item.content }}</p>
|
||||||
<p>{{ item.content }}</p>
|
<div>
|
||||||
<div>
|
<span>{{ item.createTime }}</span>
|
||||||
<span>{{ item.createTime }}</span>
|
<span class="names">{{ item.createUserName }}</span>
|
||||||
<span class="names">{{ item.createUserName }}</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<AiEmpty description="暂无数据" class="emptyWrap" v-else></AiEmpty>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<AiEmpty description="暂无数据" class="emptyWrap" v-else></AiEmpty>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bg-line"></div>
|
<!-- <div class="bg-line"></div> -->
|
||||||
|
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<div class="add" @click="show = true">新增记录</div>
|
<div class="add" @click="show = true">新增记录</div>
|
||||||
<div class="confirm" @click="cancel">解除异常</div>
|
<div class="confirm" @click="cancel">解除异常</div>
|
||||||
@@ -222,23 +221,26 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.info {
|
.info {
|
||||||
padding: 0 32px 32px;
|
|
||||||
background-color: #fff;
|
|
||||||
.title {
|
.title {
|
||||||
|
padding: 0 32px;
|
||||||
font-size: 38px;
|
font-size: 38px;
|
||||||
font-family: PingFangSC-Semibold, PingFang SC;
|
font-family: PingFangSC-Semibold, PingFang SC;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #333;
|
color: #333;
|
||||||
line-height: 116px;
|
line-height: 116px;
|
||||||
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
.error-list {
|
.error-list {
|
||||||
|
background-color: #fff !important;
|
||||||
|
padding-bottom: 24px;
|
||||||
.itemes {
|
.itemes {
|
||||||
width: 100%;
|
margin: 0 32px;
|
||||||
background: #f4f7fe;
|
background: #f4f7fe;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
padding: 24px 24px 18px 24px;
|
padding: 24px 24px 18px 24px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
font-family: PingFangSC-Regular, PingFang SC;
|
font-family: PingFangSC-Regular, PingFang SC;
|
||||||
|
|||||||
Reference in New Issue
Block a user