This commit is contained in:
bb_pan 2026-01-30 16:41:24 +08:00
parent 4fc796886a
commit d8296ab418
2 changed files with 22 additions and 3 deletions

View File

@ -92,7 +92,7 @@
v-if="canEdit && !scope.row.bmFileInfos.length > 0"
:file-list="scope.row.bmFileInfos"
>
<el-button type="primary" style="color: #2CBAB2;">上传附件</el-button>
<el-button type="text" style="color: #2CBAB2;">上传附件</el-button>
</el-upload>
<el-button v-if="scope.row.bmFileInfos && scope.row.bmFileInfos.length > 0" type="text" style="color: #2CBAB2;"
@click="picturePreview(scope.row)"

View File

@ -1,5 +1,5 @@
<template>
<div class="app-container">
<div class="app-container" v-loading="tableLoading">
<!-- 图表卡片纯div布局保留核心ref和样式类 -->
<div class="chart-card">
<div class="tabs">
@ -21,7 +21,7 @@
导出数据
</el-button>
</div>
<el-table :data="tableData" border stripe :fit="true" class="stats-table" v-loading="tableLoading">
<el-table :data="tableData" border stripe :fit="true" class="stats-table">
<el-table-column label="序号" type="index" width="60" align="center" />
<el-table-column label="公司名称" prop="deptName" min-width="150" align="center" />
<el-table-column label="线路设备配置率" prop="lineNum" min-width="120" align="center">
@ -396,6 +396,25 @@ export default {
display: flex;
flex-direction: column;
gap: 16px;
::v-deep.el-loading-mask{
background-color:#E5EEF5;
}
::v-deep.el-loading-spinner{
position: absolute;
top: 40%;
left: 44%;
width: 12%;
height: 15%;
border-radius: 10px;
background-image: url('../../../public/lodingCar.gif');
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
}
::v-deep.el-loading-spinner>svg{
display: none;
}
}
.chart-card {