This commit is contained in:
parent
4fc796886a
commit
d8296ab418
|
|
@ -92,7 +92,7 @@
|
||||||
v-if="canEdit && !scope.row.bmFileInfos.length > 0"
|
v-if="canEdit && !scope.row.bmFileInfos.length > 0"
|
||||||
:file-list="scope.row.bmFileInfos"
|
: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-upload>
|
||||||
<el-button v-if="scope.row.bmFileInfos && scope.row.bmFileInfos.length > 0" type="text" style="color: #2CBAB2;"
|
<el-button v-if="scope.row.bmFileInfos && scope.row.bmFileInfos.length > 0" type="text" style="color: #2CBAB2;"
|
||||||
@click="picturePreview(scope.row)"
|
@click="picturePreview(scope.row)"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container" v-loading="tableLoading">
|
||||||
<!-- 图表卡片:纯div布局,保留核心ref和样式类 -->
|
<!-- 图表卡片:纯div布局,保留核心ref和样式类 -->
|
||||||
<div class="chart-card">
|
<div class="chart-card">
|
||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
导出数据
|
导出数据
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</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="序号" type="index" width="60" align="center" />
|
||||||
<el-table-column label="公司名称" prop="deptName" min-width="150" align="center" />
|
<el-table-column label="公司名称" prop="deptName" min-width="150" align="center" />
|
||||||
<el-table-column label="线路设备配置率" prop="lineNum" min-width="120" align="center">
|
<el-table-column label="线路设备配置率" prop="lineNum" min-width="120" align="center">
|
||||||
|
|
@ -396,6 +396,25 @@ export default {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 16px;
|
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 {
|
.chart-card {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue