This commit is contained in:
duanxiaohai 2024-08-15 14:57:15 +08:00
parent 3f41773141
commit d1228e3d11
4 changed files with 17 additions and 3 deletions

BIN
dist.zip

Binary file not shown.

View File

@ -1106,7 +1106,10 @@ onMounted(() => {
margin-right: 10px; margin-right: 10px;
margin-bottom: 20px; margin-bottom: 20px;
cursor: not-allowed; cursor: not-allowed;
p {
font-size: 16px;
font-weight: 500;
}
// &:hover { // &:hover {
// background: rgba(0, 158, 255, 0.38); // background: rgba(0, 158, 255, 0.38);
// box-shadow: inset 0px 0px 11px 0px rgba(255, 255, 255, 0.5); // box-shadow: inset 0px 0px 11px 0px rgba(255, 255, 255, 0.5);

View File

@ -1490,8 +1490,8 @@ const getTable = async (url, currentPage) => {
.then((res) => { .then((res) => {
if (res.code == 200) { if (res.code == 200) {
data.tableData = res.data; data.tableData = res.data;
console.log(data.tableData);
pagination.total = res.count; pagination.total = res.count;
console.log(data.tableData);
} }
}); });
}; };

View File

@ -120,7 +120,13 @@
<div class="tableBoxTops"> <div class="tableBoxTops">
<div class="tableBoxCenter"> <div class="tableBoxCenter">
<img src="@/assets/sy-table/sy-table3.png" /> <img src="@/assets/sy-table/sy-table3.png" />
<el-tooltip
effect="dark"
placement="top"
:content="item.name"
>
<div class="tableli">{{ item.name }}</div> <div class="tableli">{{ item.name }}</div>
</el-tooltip>
</div> </div>
<div class="tableBoxCenter1" @click="goto(item)">详情</div> <div class="tableBoxCenter1" @click="goto(item)">详情</div>
</div> </div>
@ -880,6 +886,11 @@ onMounted(() => {
color: #ffffff; color: #ffffff;
letter-spacing: 2px; letter-spacing: 2px;
font-family: titleNore; font-family: titleNore;
// width: 355px;
max-width: 355px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} }
.tableBoxCenter1 { .tableBoxCenter1 {
width: 70px; width: 70px;