fix: BUG修改

This commit is contained in:
kun 2023-05-29 20:55:24 +08:00
parent eee0f82504
commit 33ce3a4c48
9 changed files with 18 additions and 6 deletions

View File

@ -35,7 +35,7 @@ import Avatar from "./components/Avatar.vue";
justify-content: center; justify-content: center;
position: relative; position: relative;
// margin: 0 30px 0 0; // margin: 0 30px 0 0;
width: 16%; width: 300px;
color: #fff; color: #fff;
font-size: 16px; font-size: 16px;
.header-icon { .header-icon {

View File

@ -107,6 +107,9 @@
font-family: "siyuan_Medium"; font-family: "siyuan_Medium";
font-size: 14px; font-size: 14px;
color: #00378f; color: #00378f;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
} }
.img_div { .img_div {
overflow: auto; overflow: auto;

View File

@ -75,8 +75,12 @@
<div class="page_text flx-justify-column"> <div class="page_text flx-justify-column">
<div class="img_title">{{ item.typeName }}</div> <div class="img_title">{{ item.typeName }}</div>
<div style="display: flex; justify-content: space-between"> <div style="display: flex; justify-content: space-between">
<div style="font-size: 12px">位置{{ item.deviceName }}</div> <div style="font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis">
<div style="font-size: 12px">报警时间{{ item.reportTime }}</div> 位置{{ item.deviceName }}
</div>
<div style="font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis">
报警时间{{ item.reportTime }}
</div>
</div> </div>
</div> </div>
</div> </div>

View File

@ -118,6 +118,7 @@
border-radius: 8px; border-radius: 8px;
box-shadow: 0 4px 4px 0 rgb(0 55 143 / 20%); box-shadow: 0 4px 4px 0 rgb(0 55 143 / 20%);
opacity: 0.9; opacity: 0.9;
overflow-y: scroll;
// background-color: rgba(255 255 255 / 80%) !important; // background-color: rgba(255 255 255 / 80%) !important;
} }

View File

@ -228,6 +228,7 @@
box-shadow: 0 4px 4px 0 rgb(0 55 143 / 20%); box-shadow: 0 4px 4px 0 rgb(0 55 143 / 20%);
opacity: 0.9; opacity: 0.9;
width: 290px; width: 290px;
overflow-y: scroll;
// background-color: rgba(255 255 255 / 80%) !important; // background-color: rgba(255 255 255 / 80%) !important;
} }
.mapTopData { .mapTopData {

View File

@ -144,7 +144,7 @@ const columns: ColumnProps[] = [
{ prop: "title", label: "通知标题", search: { el: "input" } }, { prop: "title", label: "通知标题", search: { el: "input" } },
{ prop: "content", label: "通知内容", search: { el: "input" }, type: "html" }, { prop: "content", label: "通知内容", search: { el: "input" }, type: "html" },
{ prop: "createTime", label: "发布时间" }, { prop: "createTime", label: "发布时间" },
{ prop: "operation", label: "操作", fixed: "right" } { prop: "operation", label: "操作", fixed: "right", width: 260 }
]; ];
// dataCallback list && total && pageNum && pageSize // dataCallback list && total && pageNum && pageSize

View File

@ -141,7 +141,7 @@ const columns: ColumnProps[] = [
return scoped.row.isRead === 1 ? "已读" : "未读"; return scoped.row.isRead === 1 ? "已读" : "未读";
} }
}, },
{ prop: "operation", label: "操作", fixed: "right" } { prop: "operation", label: "操作", fixed: "right", width: 260 }
]; ];
// dataCallback list && total && pageNum && pageSize // dataCallback list && total && pageNum && pageSize

View File

@ -80,7 +80,7 @@ const columns: ColumnProps[] = [
}, },
{ prop: "content", label: "文件内容", search: { el: "input" }, type: "html" }, { prop: "content", label: "文件内容", search: { el: "input" }, type: "html" },
{ prop: "createTime", label: "发布时间" }, { prop: "createTime", label: "发布时间" },
{ prop: "operation", label: "操作", fixed: "right", width: 240 } { prop: "operation", label: "操作", fixed: "right", width: 260 }
]; ];
// dataCallback list && total && pageNum && pageSize // dataCallback list && total && pageNum && pageSize

View File

@ -78,6 +78,9 @@
font-family: "siyuan_Medium"; font-family: "siyuan_Medium";
font-size: 14px; font-size: 14px;
color: #00378f; color: #00378f;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
} }
.img_diatitle { .img_diatitle {
font-family: "siyuan_Medium"; font-family: "siyuan_Medium";