diff --git a/public/static/admin.js b/public/static/admin.js
index a3955ff2c..7ecada1e5 100644
--- a/public/static/admin.js
+++ b/public/static/admin.js
@@ -814,13 +814,13 @@ $(function () {
'
' +
'
' +
'
' +
- '
' +
+ '
' +
'
'
});
(function loadprocess(code, that) {
that = this, this.$box = $('[data-queue-load=' + code + ']');
if (doAjax === false || that.$box.length < 1) return false;
- this.$area = that.$box.find('textarea'), this.$title = that.$box.find('[data-message-title]');
+ this.$code = that.$box.find('code'), this.$title = that.$box.find('[data-message-title]');
this.$percent = that.$box.find('.layui-progress div'), this.runCache = function (code, index, value) {
this.ckey = code + '_' + index, this.ctype = 'admin-queue-script';
return value !== undefined ? layui.data(this.ctype, {key: this.ckey, value: value}) : layui.data(this.ctype)[this.ckey] || 0;
@@ -855,7 +855,7 @@ $(function () {
that.runCache(code, this.lineIndex, 1), location.href = this.line.message;
}
}
- that.$area.val(that.lines.join("\n")), that.$area.animate({scrollTop: that.$area[0].scrollHeight + 'px'}, 200);
+ that.$code.html(that.lines.join("
")), that.$code.animate({scrollTop: that.$code[0].scrollHeight + 'px'}, 200);
that.$percent.attr('lay-percent', (parseFloat(ret.data.progress || '0.00').toFixed(2)) + '%'), layui.element.render();
if (ret.data.status > 0) that.setState(parseInt(ret.data.status), ret.data.message);
else return that.setState(4, '获取任务详情失败!'), false;