diff --git a/app/admin/model/SystemQueue.php b/app/admin/model/SystemQueue.php
index 02c0242d5..3c016da26 100644
--- a/app/admin/model/SystemQueue.php
+++ b/app/admin/model/SystemQueue.php
@@ -41,9 +41,9 @@ class SystemQueue extends Model
public function getOuterTimeAttr($value, array $data): string
{
if ($value > 0 && $value > $data['enter_time']) {
- return sprintf("%.4f", $data['outer_time'] - $data['enter_time']) . ' 秒';
+ return '' . sprintf("%.4f", $data['outer_time'] - $data['enter_time']) . ' 秒';
} else {
- return '-';
+ return '-';
}
}
diff --git a/app/admin/view/queue/index.html b/app/admin/view/queue/index.html
index 4dac1da44..1f678c9ee 100644
--- a/app/admin/view/queue/index.html
+++ b/app/admin/view/queue/index.html
@@ -71,12 +71,21 @@
{field: 'code', title: '任务编号', width: 140, sort: true},
{field: 'title', title: '任务名称', minWidth: 160},
{field: 'command', title: '任务指令', minWidth: 160},
- {field: 'exec_time', title: '计划时间', minWidth: 170},
+ {
+ field: 'exec_time', title: '计划时间', minWidth: 250, templet: function (d) {
+ d.exec_time = d.exec_time || 0, d.loops_time = d.loops_time || 0;
+ if (d.loops_time > 0) {
+ return d.exec_time + ' ( 每 ' + d.loops_time + ' 秒 ) ';
+ } else {
+ return d.exec_time + ' ( 单次任务 ) ';
+ }
+ }
+ },
{
field: 'enter_time', title: '开始时间', minWidth: 180, templet: function (d) {
d.enter_time = d.enter_time || '', d.outer_time = d.outer_time || '0.0000';
if (d.enter_time.length > 12) {
- return d.enter_time.substr(12) + ('( 耗时 ' + d.outer_time + ' )');
+ return d.enter_time.substr(12) + ' ( 耗时 ' + d.outer_time + ' )';
} else {
return '未执行'
}
diff --git a/public/static/admin.js b/public/static/admin.js
index 0655524d0..bbdbcde29 100644
--- a/public/static/admin.js
+++ b/public/static/admin.js
@@ -560,7 +560,7 @@ $(function () {
/*! 全局文件上传入口 */
$.fn.uploadFile = function (callable) {
if (this.data('inited')) return false;
- var that = this, mult = 'one|btn'.indexOf(this.data('file') || 'one') > -1 ? 0 : 1;
+ var that = this, mult = '|one|btn|'.indexOf(this.data('file') || 'one') ? 0 : 1;
this.data('inited', true).data('multiple', mult), require(['upload'], function (apply) {
apply.call(this, that, callable);
});