\n \n \n\n \n \n \n \n \n\n \n Застосувати\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SanctionsForm.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SanctionsForm.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./SanctionsForm.vue?vue&type=template&id=20b25f1a\"\nimport script from \"./SanctionsForm.vue?vue&type=script&lang=js\"\nexport * from \"./SanctionsForm.vue?vue&type=script&lang=js\"\nimport style0 from \"./SanctionsForm.vue?vue&type=style&index=0&id=20b25f1a&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n \n \n \n Створити завдання\n \n \n \n \n \n \n \n
\n Чекає виконання -\n перевірка ще не розпочалась.\n
\n
\n В обробці -\n виконується перевірка.\n
\n
\n Завершено - перевірку\n завершено, потребує додаткових дій.\n
\n \n \n
\n Виконано - перевірку\n виконано.\n
\n
\n Помилка - виникла\n невідома помилка, повідомте службу підтримки.\n
\n \n \n \n \n \n 0\">\n \n \n
\n {{ task.type.name }}\n
\n
\n \n {{ task.status.name }}\n \n
\n
\n {{ task.causer.email }}\n
\n
\n {{ task.started | setStartTimeMoment }}\n
\n
\n \n \n Перегянути\n \n
\n \n \n \n 0\">\n \n \n \n\n \n \n \n \n \n Немає завдань \n \n \n 0 &&\n task &&\n task.type.value === 'public-persons'\n \"\n :task=\"task\"\n />\n 0 && task && task.type.value === 'sanctions'\n \"\n :task=\"task\"\n />\n \n \n\n\n\n\n\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TasksList.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TasksList.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./TasksList.vue?vue&type=template&id=3a42ebc7\"\nimport script from \"./TasksList.vue?vue&type=script&lang=js\"\nexport * from \"./TasksList.vue?vue&type=script&lang=js\"\nimport style0 from \"./TasksList.vue?vue&type=style&index=0&id=3a42ebc7&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","/**\n * Returns a function, that, as long as it continues to be invoked, will not\n * be triggered. The function will be called after it stops being called for\n * N milliseconds. If `immediate` is passed, trigger the function on the\n * leading edge, instead of the trailing. The function also has a property 'clear' \n * that is a function which will clear the timer to prevent previously scheduled executions. \n *\n * @source underscore.js\n * @see http://unscriptable.com/2009/03/20/debouncing-javascript-methods/\n * @param {Function} function to wrap\n * @param {Number} timeout in ms (`100`)\n * @param {Boolean} whether to execute at the beginning (`false`)\n * @api public\n */\nfunction debounce(func, wait, immediate){\n var timeout, args, context, timestamp, result;\n if (null == wait) wait = 100;\n\n function later() {\n var last = Date.now() - timestamp;\n\n if (last < wait && last >= 0) {\n timeout = setTimeout(later, wait - last);\n } else {\n timeout = null;\n if (!immediate) {\n result = func.apply(context, args);\n context = args = null;\n }\n }\n };\n\n var debounced = function(){\n context = this;\n args = arguments;\n timestamp = Date.now();\n var callNow = immediate && !timeout;\n if (!timeout) timeout = setTimeout(later, wait);\n if (callNow) {\n result = func.apply(context, args);\n context = args = null;\n }\n\n return result;\n };\n\n debounced.clear = function() {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n };\n \n debounced.flush = function() {\n if (timeout) {\n result = func.apply(context, args);\n context = args = null;\n \n clearTimeout(timeout);\n timeout = null;\n }\n };\n\n return debounced;\n};\n\n// Adds compatibility for ES modules\ndebounce.debounce = debounce;\n\nmodule.exports = debounce;\n","export * from \"-!../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--9-oneOf-1-0!../../../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src/index.js??ref--9-oneOf-1-2!../../../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SanctionsForm.vue?vue&type=style&index=0&id=20b25f1a&prod&lang=scss\""],"sourceRoot":""}