This commit is contained in:
bb_pan 2026-01-30 16:23:30 +08:00
parent a93e385a16
commit 08c7304617
3 changed files with 15 additions and 2 deletions

View File

@ -295,7 +295,7 @@ export default {
} }
await submitRetireApplyTaskAPI(submitData) await submitRetireApplyTaskAPI(submitData)
this.$message.success('申请提交成功') this.$message.success('申请提交成功')
this.$router.push('/business/EquipmentRetireApply/equipment/retire-apply') this.$router.push('/all/business/EquipmentRetireApply/equipment/retire-apply')
} catch (error) { } catch (error) {
console.log('🚀 ~ error:', error) console.log('🚀 ~ error:', error)
} }

View File

@ -146,5 +146,6 @@ export default {
.table-sty ::v-deep .el-table__cell { .table-sty ::v-deep .el-table__cell {
padding: 7px 0; padding: 7px 0;
border: 0.5px solid #333;
} }
</style> </style>

View File

@ -39,7 +39,14 @@
<span class="link" @click="handleCellClick(scope.row.deptId, 1)">{{ scope.row.substationNum }}</span> <span class="link" @click="handleCellClick(scope.row.deptId, 1)">{{ scope.row.substationNum }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="总配置率" prop="num" min-width="100" align="center" /> <el-table-column label="总配置率" prop="num" min-width="100" sortable align="center">
<template #header>
<span class="custom-sort-header">
总配置率
<i class="el-icon-sort" style="color: #2cbab2;" />
</span>
</template>
</el-table-column>
</el-table> </el-table>
</div> </div>
@ -446,4 +453,9 @@ export default {
} }
} }
} }
/* 干掉原来的三角形 */
::v-deep .el-table .sort-caret {
border: none !important;
}
</style> </style>