Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
913 B
32 lines
913 B
export function initAdminUserListSearchForm() { |
|
const searchForm = window.config.pageData.adminUserListSearchForm; |
|
if (!searchForm) return; |
|
|
|
const $form = $('#user-list-search-form'); |
|
if (!$form.length) return; |
|
|
|
$form.find(`button[name=sort][value=${searchForm.SortType}]`).addClass('active'); |
|
|
|
if (searchForm.StatusFilterMap) { |
|
for (const [k, v] of Object.entries(searchForm.StatusFilterMap)) { |
|
if (!v) continue; |
|
$form.find(`input[name="status_filter[${k}]"][value=${v}]`).prop('checked', true); |
|
} |
|
} |
|
|
|
$form.find(`input[type=radio]`).click(() => { |
|
$form.submit(); |
|
return false; |
|
}); |
|
|
|
$form.find('.j-reset-status-filter').click(() => { |
|
$form.find(`input[type=radio]`).each((_, e) => { |
|
const $e = $(e); |
|
if ($e.attr('name').startsWith('status_filter[')) { |
|
$e.prop('checked', false); |
|
} |
|
}); |
|
$form.submit(); |
|
return false; |
|
}); |
|
}
|
|
|