browse.oa.html.hook.php 588 B

1234567891011121314151617
  1. <?php js::set('type', $type)?>
  2. <?php js::set('orderBy', $orderBy)?>
  3. <?php js::set('lang.confirmDelete', $lang->confirmDelete);?>
  4. <?php js::set('lang.deleteing', $lang->deleteing);?>
  5. <script>
  6. $(function()
  7. {
  8. $('#<?php echo $type?>').addClass('active');
  9. $('.reviewPass').attr('data-toggle', 'ajax');
  10. $("input[name^='makeupIDList']").remove();
  11. $('.checkbox-inline, .radio-inline').removeClass('checkbox-inline');
  12. var link = createLink('makeup', 'export', "mode=all&orderBy=" + orderBy + "&type=" + type);
  13. $('#menuActions .btn-link').attr('href', link);
  14. })
  15. </script>