mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
12 lines
349 B
JavaScript
12 lines
349 B
JavaScript
layui.use(['jquery', 'helper'], function () {
|
|
|
|
var $ = layui.jquery;
|
|
var helper = layui.helper;
|
|
|
|
var $userList = $('#user-list');
|
|
var $activeUserList = $('#active-user-list');
|
|
|
|
helper.ajaxLoadHtml($userList.data('url'), $userList.attr('id'));
|
|
helper.ajaxLoadHtml($activeUserList.data('url'), $activeUserList.attr('id'));
|
|
|
|
}); |