...
|
...
|
@@ -1729,7 +1729,18 @@ layui.define(['soulTable', 'commonDetail', 'common', 'laytpl', 'view', 'admin', |
|
|
templet: '#powerStateTpl',
|
|
|
sort: true
|
|
|
},
|
|
|
{field: 'runState', title: '运行状态', minWidth: x_110, align: 'center', sort: true},
|
|
|
{field: 'runState', title: '运行状态', minWidth: x_110, align: 'center', sort: true,
|
|
|
// lsq 运行状态显示为中文 2022-06-28
|
|
|
templet: function (d) {
|
|
|
switch (d.runState) {
|
|
|
case 'notRunning':
|
|
|
return '未运行';
|
|
|
case 'running':
|
|
|
return '运行';
|
|
|
default:
|
|
|
return '';
|
|
|
}
|
|
|
}},
|
|
|
{field: 'ptName', title: '所属平台', minWidth: x_130, align: 'center', sort: true},
|
|
|
{field: 'resourcePool', title: '所属资源池', minWidth: x_140, align: 'center', sort: true},
|
|
|
{field: 'lastColTime', title: '最近采集时间', minWidth: x_160, align: 'center', sort: true},
|
...
|
...
|
@@ -1863,7 +1874,18 @@ layui.define(['soulTable', 'commonDetail', 'common', 'laytpl', 'view', 'admin', |
|
|
templet: '#powerStateTpl',
|
|
|
sort: true
|
|
|
},
|
|
|
{field: 'runState', title: '运行状态', minWidth: x_110, align: 'center', sort: true},
|
|
|
{field: 'runState', title: '运行状态', minWidth: x_110, align: 'center', sort: true,
|
|
|
// lsq 运行状态显示为中文 2022-06-28
|
|
|
templet: function (d) {
|
|
|
switch (d.runState) {
|
|
|
case 'notRunning':
|
|
|
return '未运行';
|
|
|
case 'running':
|
|
|
return '运行';
|
|
|
default:
|
|
|
return '';
|
|
|
}
|
|
|
}},
|
|
|
{field: 'ptName', title: '所属平台', minWidth: x_130, align: 'center', sort: true},
|
|
|
{field: 'resourcePool', title: '所属资源池', minWidth: x_140, align: 'center', sort: true},
|
|
|
{field: 'lastColTime', title: '最近采集时间', minWidth: x_160, align: 'center', sort: true},
|
...
|
...
|
@@ -4091,7 +4113,18 @@ layui.define(['soulTable', 'commonDetail', 'common', 'laytpl', 'view', 'admin', |
|
|
templet: '#powerStateTpl',
|
|
|
sort: true
|
|
|
},
|
|
|
{field: 'runState', title: '运行状态', minWidth: x_120, align: 'center', sort: true},
|
|
|
{field: 'runState', title: '运行状态', minWidth: x_120, align: 'center', sort: true,
|
|
|
// lsq 运行状态显示为中文 2022-06-28
|
|
|
templet: function (d) {
|
|
|
switch (d.runState) {
|
|
|
case 'notRunning':
|
|
|
return '未运行';
|
|
|
case 'running':
|
|
|
return '运行';
|
|
|
default:
|
|
|
return '';
|
|
|
}
|
|
|
}},
|
|
|
{field: 'ptName', title: '所属平台', minWidth: x_120, align: 'center', sort: true},
|
|
|
{field: 'resourcePool', title: '所属资源池', minWidth: x_150, align: 'center', sort: true},
|
|
|
{field: 'resRemark', title: '备注', minWidth: x_200, align: 'center'}
|
...
|
...
|
|