This commit is contained in:
2025-04-14 15:28:51 +08:00
parent f100427f8b
commit 371b89ee8d
93 changed files with 3757 additions and 1038 deletions

View File

@@ -29,15 +29,6 @@
</div>
</div>
</div>
<div class="layui-form layui-row">
<div class="layui-col-xs12 layui-col-sm12 layui-col-md4">
<div class="layui-form-column">
<label class="tips">用户名</label>
<input type="text" name="username" id="username" placeholder="请输入用户名" autocomplete="off"
class="layui-input">
</div>
</div>
</div>
</div>
@@ -93,7 +84,7 @@
limits: [15, 30, 45, 60, 75, 90],
cols: [[
{ field: 'email', title: '邮箱', align: 'left', width: 180, fixed: 'left' },
{ field: 'username', title: '用户名', align: 'left', width: 100 },
// { field: 'username', title: '用户名', align: 'left', width: 100 },
{ field: 'created_at', title: '创建时间', align: 'left', width: 160, templet: function (d) { return !d.created_at ? '' : util.toDateString(d.created_at) } },
{
field: 'is_success', title: '成功?', align: 'center', width: 80, templet: function (d) {
@@ -152,7 +143,6 @@
$('#timeBegin').val(formatDate(getCurrentYearStart(), 'YYYY-MM-DD HH:mm:ss'));
$('#timeEnd').val(formatDate(getCurrentMonthEnd(), 'YYYY-MM-DD HH:mm:ss'));
$('#email').val('');
$('#username').val('');
return false;
}
});
@@ -167,7 +157,6 @@
return {
timeBegin: $('#timeBegin').val(),
timeEnd: $('#timeEnd').val(),
name: $('#username').val(),
email: $('#email').val()
};
}