zentaopms/extension/max/makeup/ext/view/browse.oa.html.hook.php
2023-05-16 10:50:42 +08:00

18 lines
588 B
PHP

<?php js::set('type', $type)?>
<?php js::set('orderBy', $orderBy)?>
<?php js::set('lang.confirmDelete', $lang->confirmDelete);?>
<?php js::set('lang.deleteing', $lang->deleteing);?>
<script>
$(function()
{
$('#<?php echo $type?>').addClass('active');
$('.reviewPass').attr('data-toggle', 'ajax');
$("input[name^='makeupIDList']").remove();
$('.checkbox-inline, .radio-inline').removeClass('checkbox-inline');
var link = createLink('makeup', 'export', "mode=all&orderBy=" + orderBy + "&type=" + type);
$('#menuActions .btn-link').attr('href', link);
})
</script>