能源管理初版

This commit is contained in:
砂糖
2025-09-28 14:38:41 +08:00
parent 16776ffdc8
commit ef8ba712df
25 changed files with 2472 additions and 32 deletions

View File

@@ -191,7 +191,9 @@ export default {
if (parent && parent.children) {
return parent.children.find(child => child.path === childPath)
}
return null
return {
meta: {}
}
},
handleAppClick(parentMenu, childMenu) {

View File

@@ -6,7 +6,7 @@
<KLPTable v-loading="loading" :data="ownProcessList">
<el-table-column label="流程编号" align="center" prop="procInsId" :show-overflow-tooltip="true" />
<el-table-column label="流程名称" align="center" prop="procDefName" :show-overflow-tooltip="true" />
<el-table-column label="流程类别" align="center" prop="category" :formatter="categoryFormat" />
<el-table-column label="流程类别" align="center" prop="category" />
<el-table-column label="流程版本" align="center" width="80px">
<template slot-scope="scope">
<el-tag size="medium">v{{ scope.row.procDefVersion }}</el-tag>