Commit bbd7d252 by 黑潮

fix: 调整

parent e00bc2c7
......@@ -112,7 +112,7 @@ export default {
{
label: '时效',
prop: 'effectType',
minWidth: '160',
minWidth: '180',
align: 'left',
formatter(row) {
if (row.effectType == 0) {
......@@ -124,7 +124,10 @@ export default {
} else if (row.effectType == 2) {
/** '单次执行类型(1:立即执行; 0:定时执行)' **/
if (row.execType == 0) {
return `<span class="vertical-middle">单次(</span><i class="el-icon-time fz16 vertical-middle" style="margin-right:2px"></i><span class="vertical-middle">${formatDateTimeByType(row.execTime, 'yyyy-MM-dd HH:mm:ss')})</span>`;
return `<div>单次</div>
<span>
(<i class="el-icon-time fz16 vertical-middle" style="margin-right:2px"></i><span class="vertical-middle">${formatDateTimeByType(row.execTime, 'yyyy-MM-dd HH:mm:ss')}</span>)
</span>`;
} else {
return '单次(立即执行)';
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment