This commit is contained in:
parent
3f41773141
commit
d1228e3d11
|
@ -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);
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue