海南旅游SAAS
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.

28 lines
730 B

  1. const workordertimer = setInterval(function () {
  2. $.ajax({
  3. url: '/'+window.location.pathname.split('/')[1]+'/workorder_notice',
  4. type: 'POST',
  5. data: {},
  6. dataType: 'text',
  7. success: function (res) {
  8. if (res == true) {
  9. Dcat.info("你有新的工单信息 <a href='/"+window.location.pathname.split('/')[1]+"/workorder_item' target='_blank'>[前往查看]</a>", '新消息提醒', {
  10. closeButton: true,
  11. escapeHtml: false,
  12. timeOut: 10000,
  13. extendedTimeOut: 5000,
  14. onHidden: function () {
  15. if (window.location.pathname == '/'+window.location.pathname.split('/')[1]+'/workorder_item') {
  16. location.reload()
  17. }
  18. }
  19. })
  20. }
  21. },
  22. error: function (error) {
  23. }
  24. });
  25. }, 5000);