diff --git a/app/admin/view/queue/index.html b/app/admin/view/queue/index.html
index ffa355ae0..a7a5dac36 100644
--- a/app/admin/view/queue/index.html
+++ b/app/admin/view/queue/index.html
@@ -81,7 +81,7 @@
计划时间:{$vo.exec_time|format_datetime}
{if in_array($vo.status,['3','4'])}
- 执行时间:{$vo.enter_time|format_datetime}( 耗时 {:round($vo.outer_time-$vo.enter_time,4)} 秒 )
+ 执行时间:{$vo.enter_time|format_datetime}( 耗时 {:sprintf("%.4f",$vo.outer_time-$vo.enter_time)} 秒 )
{else}
创建时间:{$vo.create_at|format_datetime}
{/if}
|