\r\n\r\n\r\n","import mod from \"-!../../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../../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!./KieuHoSoFrom.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../../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!./KieuHoSoFrom.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./KieuHoSoFrom.vue?vue&type=template&id=4692efc3&\"\nimport script from \"./KieuHoSoFrom.vue?vue&type=script&lang=js&\"\nexport * from \"./KieuHoSoFrom.vue?vue&type=script&lang=js&\"\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","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!./ThuTucHanhChinhForm.vue?vue&type=style&index=0&id=375756ea&prod&scped=true&lang=scss&\"","/** Used to match `RegExp` flags from their coerced string values. */\nvar reFlags = /\\w*$/;\n\n/**\n * Creates a clone of `regexp`.\n *\n * @private\n * @param {Object} regexp The regexp to clone.\n * @returns {Object} Returns the cloned regexp.\n */\nfunction cloneRegExp(regexp) {\n var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));\n result.lastIndex = regexp.lastIndex;\n return result;\n}\n\nmodule.exports = cloneRegExp;\n","var createBaseFor = require('./_createBaseFor');\n\n/**\n * The base implementation of `baseForOwn` which iterates over `object`\n * properties returned by `keysFunc` and invokes `iteratee` for each property.\n * Iteratee functions may exit iteration early by explicitly returning `false`.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @returns {Object} Returns `object`.\n */\nvar baseFor = createBaseFor();\n\nmodule.exports = baseFor;\n","var isObject = require('./isObject');\n\n/** Built-in value references. */\nvar objectCreate = Object.create;\n\n/**\n * The base implementation of `_.create` without support for assigning\n * properties to the created object.\n *\n * @private\n * @param {Object} proto The object to inherit from.\n * @returns {Object} Returns the new object.\n */\nvar baseCreate = (function() {\n function object() {}\n return function(proto) {\n if (!isObject(proto)) {\n return {};\n }\n if (objectCreate) {\n return objectCreate(proto);\n }\n object.prototype = proto;\n var result = new object;\n object.prototype = undefined;\n return result;\n };\n}());\n\nmodule.exports = baseCreate;\n","/**\n * A specialized version of `_.forEach` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns `array`.\n */\nfunction arrayEach(array, iteratee) {\n var index = -1,\n length = array == null ? 0 : array.length;\n\n while (++index < length) {\n if (iteratee(array[index], index, array) === false) {\n break;\n }\n }\n return array;\n}\n\nmodule.exports = arrayEach;\n","var defineProperty = require('./_defineProperty');\n\n/**\n * The base implementation of `assignValue` and `assignMergeValue` without\n * value checks.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction baseAssignValue(object, key, value) {\n if (key == '__proto__' && defineProperty) {\n defineProperty(object, key, {\n 'configurable': true,\n 'enumerable': true,\n 'value': value,\n 'writable': true\n });\n } else {\n object[key] = value;\n }\n}\n\nmodule.exports = baseAssignValue;\n","var assignValue = require('./_assignValue'),\n baseAssignValue = require('./_baseAssignValue');\n\n/**\n * Copies properties of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy properties from.\n * @param {Array} props The property identifiers to copy.\n * @param {Object} [object={}] The object to copy properties to.\n * @param {Function} [customizer] The function to customize copied values.\n * @returns {Object} Returns `object`.\n */\nfunction copyObject(source, props, object, customizer) {\n var isNew = !object;\n object || (object = {});\n\n var index = -1,\n length = props.length;\n\n while (++index < length) {\n var key = props[index];\n\n var newValue = customizer\n ? customizer(object[key], source[key], key, object, source)\n : undefined;\n\n if (newValue === undefined) {\n newValue = source[key];\n }\n if (isNew) {\n baseAssignValue(object, key, newValue);\n } else {\n assignValue(object, key, newValue);\n }\n }\n return object;\n}\n\nmodule.exports = copyObject;\n","var arrayFilter = require('./_arrayFilter'),\n baseFilter = require('./_baseFilter'),\n baseIteratee = require('./_baseIteratee'),\n isArray = require('./isArray');\n\n/**\n * Iterates over elements of `collection`, returning an array of all elements\n * `predicate` returns truthy for. The predicate is invoked with three\n * arguments: (value, index|key, collection).\n *\n * **Note:** Unlike `_.remove`, this method returns a new array.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Collection\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} [predicate=_.identity] The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n * @see _.reject\n * @example\n *\n * var users = [\n * { 'user': 'barney', 'age': 36, 'active': true },\n * { 'user': 'fred', 'age': 40, 'active': false }\n * ];\n *\n * _.filter(users, function(o) { return !o.active; });\n * // => objects for ['fred']\n *\n * // The `_.matches` iteratee shorthand.\n * _.filter(users, { 'age': 36, 'active': true });\n * // => objects for ['barney']\n *\n * // The `_.matchesProperty` iteratee shorthand.\n * _.filter(users, ['active', false]);\n * // => objects for ['fred']\n *\n * // The `_.property` iteratee shorthand.\n * _.filter(users, 'active');\n * // => objects for ['barney']\n *\n * // Combining several predicates using `_.overEvery` or `_.overSome`.\n * _.filter(users, _.overSome([{ 'age': 36 }, ['age', 40]]));\n * // => objects for ['fred', 'barney']\n */\nfunction filter(collection, predicate) {\n var func = isArray(collection) ? arrayFilter : baseFilter;\n return func(collection, baseIteratee(predicate, 3));\n}\n\nmodule.exports = filter;\n","var isArrayLike = require('./isArrayLike');\n\n/**\n * Creates a `baseEach` or `baseEachRight` function.\n *\n * @private\n * @param {Function} eachFunc The function to iterate over a collection.\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\nfunction createBaseEach(eachFunc, fromRight) {\n return function(collection, iteratee) {\n if (collection == null) {\n return collection;\n }\n if (!isArrayLike(collection)) {\n return eachFunc(collection, iteratee);\n }\n var length = collection.length,\n index = fromRight ? length : -1,\n iterable = Object(collection);\n\n while ((fromRight ? index-- : ++index < length)) {\n if (iteratee(iterable[index], index, iterable) === false) {\n break;\n }\n }\n return collection;\n };\n}\n\nmodule.exports = createBaseEach;\n","var arrayLikeKeys = require('./_arrayLikeKeys'),\n baseKeysIn = require('./_baseKeysIn'),\n isArrayLike = require('./isArrayLike');\n\n/**\n * Creates an array of the own and inherited enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keysIn(new Foo);\n * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n */\nfunction keysIn(object) {\n return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\n}\n\nmodule.exports = keysIn;\n","/**\n * Creates a base function for methods like `_.forIn` and `_.forOwn`.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\nfunction createBaseFor(fromRight) {\n return function(object, iteratee, keysFunc) {\n var index = -1,\n iterable = Object(object),\n props = keysFunc(object),\n length = props.length;\n\n while (length--) {\n var key = props[fromRight ? length : ++index];\n if (iteratee(iterable[key], key, iterable) === false) {\n break;\n }\n }\n return object;\n };\n}\n\nmodule.exports = createBaseFor;\n","function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\n// v-b-visible\n// Private visibility check directive\n// Based on IntersectionObserver\n//\n// Usage:\n// v-b-visibility..=\"\"\n//\n// Value:\n// : method to be called when visibility state changes, receives one arg:\n// true: element is visible\n// false: element is not visible\n// null: IntersectionObserver not supported\n//\n// Modifiers:\n// : a positive decimal value of pixels away from viewport edge\n// before being considered \"visible\". default is 0\n// : keyword 'once', meaning when the element becomes visible and\n// callback is called observation/notification will stop.\n//\n// When used in a render function:\n// export default {\n// directives: { 'b-visible': VBVisible },\n// render(h) {\n// h(\n// 'div',\n// {\n// directives: [\n// { name: 'b-visible', value=this.callback, modifiers: { '123':true, 'once':true } }\n// ]\n// }\n// )\n// }\nimport { RX_DIGITS } from '../../constants/regex';\nimport { requestAF } from '../../utils/dom';\nimport { isFunction } from '../../utils/inspect';\nimport { looseEqual } from '../../utils/loose-equal';\nimport { clone, keys } from '../../utils/object';\nimport { nextTick } from '../../vue';\nvar OBSERVER_PROP_NAME = '__bv__visibility_observer';\n\nvar VisibilityObserver = /*#__PURE__*/function () {\n function VisibilityObserver(el, options) {\n _classCallCheck(this, VisibilityObserver);\n\n this.el = el;\n this.callback = options.callback;\n this.margin = options.margin || 0;\n this.once = options.once || false;\n this.observer = null;\n this.visible = undefined;\n this.doneOnce = false; // Create the observer instance (if possible)\n\n this.createObserver();\n }\n\n _createClass(VisibilityObserver, [{\n key: \"createObserver\",\n value: function createObserver() {\n var _this = this;\n\n // Remove any previous observer\n if (this.observer) {\n /* istanbul ignore next */\n this.stop();\n } // Should only be called once and `callback` prop should be a function\n\n\n if (this.doneOnce || !isFunction(this.callback)) {\n /* istanbul ignore next */\n return;\n } // Create the observer instance\n\n\n try {\n // Future: Possibly add in other modifiers for left/right/top/bottom\n // offsets, root element reference, and thresholds\n this.observer = new IntersectionObserver(this.handler.bind(this), {\n // `null` = 'viewport'\n root: null,\n // Pixels away from view port to consider \"visible\"\n rootMargin: this.margin,\n // Intersection ratio of el and root (as a value from 0 to 1)\n threshold: 0\n });\n } catch (_unused) {\n // No IntersectionObserver support, so just stop trying to observe\n this.doneOnce = true;\n this.observer = undefined;\n this.callback(null);\n return;\n } // Start observing in a `$nextTick()` (to allow DOM to complete rendering)\n\n /* istanbul ignore next: IntersectionObserver not supported in JSDOM */\n\n\n nextTick(function () {\n requestAF(function () {\n // Placed in an `if` just in case we were destroyed before\n // this `requestAnimationFrame` runs\n if (_this.observer) {\n _this.observer.observe(_this.el);\n }\n });\n });\n }\n /* istanbul ignore next */\n\n }, {\n key: \"handler\",\n value: function handler(entries) {\n var entry = entries ? entries[0] : {};\n var isIntersecting = Boolean(entry.isIntersecting || entry.intersectionRatio > 0.0);\n\n if (isIntersecting !== this.visible) {\n this.visible = isIntersecting;\n this.callback(isIntersecting);\n\n if (this.once && this.visible) {\n this.doneOnce = true;\n this.stop();\n }\n }\n }\n }, {\n key: \"stop\",\n value: function stop() {\n /* istanbul ignore next */\n this.observer && this.observer.disconnect();\n this.observer = null;\n }\n }]);\n\n return VisibilityObserver;\n}();\n\nvar destroy = function destroy(el) {\n var observer = el[OBSERVER_PROP_NAME];\n\n if (observer && observer.stop) {\n observer.stop();\n }\n\n delete el[OBSERVER_PROP_NAME];\n};\n\nvar bind = function bind(el, _ref) {\n var value = _ref.value,\n modifiers = _ref.modifiers;\n // `value` is the callback function\n var options = {\n margin: '0px',\n once: false,\n callback: value\n }; // Parse modifiers\n\n keys(modifiers).forEach(function (mod) {\n /* istanbul ignore else: Until is switched to use this directive */\n if (RX_DIGITS.test(mod)) {\n options.margin = \"\".concat(mod, \"px\");\n } else if (mod.toLowerCase() === 'once') {\n options.once = true;\n }\n }); // Destroy any previous observer\n\n destroy(el); // Create new observer\n\n el[OBSERVER_PROP_NAME] = new VisibilityObserver(el, options); // Store the current modifiers on the object (cloned)\n\n el[OBSERVER_PROP_NAME]._prevModifiers = clone(modifiers);\n}; // When the directive options may have been updated (or element)\n\n\nvar componentUpdated = function componentUpdated(el, _ref2, vnode) {\n var value = _ref2.value,\n oldValue = _ref2.oldValue,\n modifiers = _ref2.modifiers;\n // Compare value/oldValue and modifiers to see if anything has changed\n // and if so, destroy old observer and create new observer\n\n /* istanbul ignore next */\n modifiers = clone(modifiers);\n /* istanbul ignore next */\n\n if (el && (value !== oldValue || !el[OBSERVER_PROP_NAME] || !looseEqual(modifiers, el[OBSERVER_PROP_NAME]._prevModifiers))) {\n // Re-bind on element\n bind(el, {\n value: value,\n modifiers: modifiers\n }, vnode);\n }\n}; // When directive un-binds from element\n\n\nvar unbind = function unbind(el) {\n // Remove the observer\n destroy(el);\n}; // Export the directive\n\n\nexport var VBVisible = {\n bind: bind,\n componentUpdated: componentUpdated,\n unbind: unbind\n};","function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nimport { extend } from '../../vue';\nimport { NAME_FORM_TEXTAREA } from '../../constants/components';\nimport { PROP_TYPE_BOOLEAN, PROP_TYPE_NUMBER_STRING, PROP_TYPE_STRING } from '../../constants/props';\nimport { getCS, getStyle, isVisible, requestAF, setStyle } from '../../utils/dom';\nimport { isNull } from '../../utils/inspect';\nimport { mathCeil, mathMax, mathMin } from '../../utils/math';\nimport { toInteger, toFloat } from '../../utils/number';\nimport { sortKeys } from '../../utils/object';\nimport { makeProp, makePropsConfigurable } from '../../utils/props';\nimport { formControlMixin, props as formControlProps } from '../../mixins/form-control';\nimport { formSelectionMixin } from '../../mixins/form-selection';\nimport { formSizeMixin, props as formSizeProps } from '../../mixins/form-size';\nimport { formStateMixin, props as formStateProps } from '../../mixins/form-state';\nimport { formTextMixin, props as formTextProps } from '../../mixins/form-text';\nimport { formValidityMixin } from '../../mixins/form-validity';\nimport { idMixin, props as idProps } from '../../mixins/id';\nimport { listenOnRootMixin } from '../../mixins/listen-on-root';\nimport { listenersMixin } from '../../mixins/listeners';\nimport { VBVisible } from '../../directives/visible/visible'; // --- Props ---\n\nexport var props = makePropsConfigurable(sortKeys(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, idProps), formControlProps), formSizeProps), formStateProps), formTextProps), {}, {\n maxRows: makeProp(PROP_TYPE_NUMBER_STRING),\n // When in auto resize mode, disable shrinking to content height\n noAutoShrink: makeProp(PROP_TYPE_BOOLEAN, false),\n // Disable the resize handle of textarea\n noResize: makeProp(PROP_TYPE_BOOLEAN, false),\n rows: makeProp(PROP_TYPE_NUMBER_STRING, 2),\n // 'soft', 'hard' or 'off'\n // Browser default is 'soft'\n wrap: makeProp(PROP_TYPE_STRING, 'soft')\n})), NAME_FORM_TEXTAREA); // --- Main component ---\n// @vue/component\n\nexport var BFormTextarea = /*#__PURE__*/extend({\n name: NAME_FORM_TEXTAREA,\n directives: {\n 'b-visible': VBVisible\n },\n // Mixin order is important!\n mixins: [listenersMixin, idMixin, listenOnRootMixin, formControlMixin, formSizeMixin, formStateMixin, formTextMixin, formSelectionMixin, formValidityMixin],\n props: props,\n data: function data() {\n return {\n heightInPx: null\n };\n },\n computed: {\n type: function type() {\n return null;\n },\n computedStyle: function computedStyle() {\n var styles = {\n // Setting `noResize` to true will disable the ability for the user to\n // manually resize the textarea. We also disable when in auto height mode\n resize: !this.computedRows || this.noResize ? 'none' : null\n };\n\n if (!this.computedRows) {\n // Conditionally set the computed CSS height when auto rows/height is enabled\n // We avoid setting the style to `null`, which can override user manual resize handle\n styles.height = this.heightInPx; // We always add a vertical scrollbar to the textarea when auto-height is\n // enabled so that the computed height calculation returns a stable value\n\n styles.overflowY = 'scroll';\n }\n\n return styles;\n },\n computedMinRows: function computedMinRows() {\n // Ensure rows is at least 2 and positive (2 is the native textarea value)\n // A value of 1 can cause issues in some browsers, and most browsers\n // only support 2 as the smallest value\n return mathMax(toInteger(this.rows, 2), 2);\n },\n computedMaxRows: function computedMaxRows() {\n return mathMax(this.computedMinRows, toInteger(this.maxRows, 0));\n },\n computedRows: function computedRows() {\n // This is used to set the attribute 'rows' on the textarea\n // If auto-height is enabled, then we return `null` as we use CSS to control height\n return this.computedMinRows === this.computedMaxRows ? this.computedMinRows : null;\n },\n computedAttrs: function computedAttrs() {\n var disabled = this.disabled,\n required = this.required;\n return {\n id: this.safeId(),\n name: this.name || null,\n form: this.form || null,\n disabled: disabled,\n placeholder: this.placeholder || null,\n required: required,\n autocomplete: this.autocomplete || null,\n readonly: this.readonly || this.plaintext,\n rows: this.computedRows,\n wrap: this.wrap || null,\n 'aria-required': this.required ? 'true' : null,\n 'aria-invalid': this.computedAriaInvalid\n };\n },\n computedListeners: function computedListeners() {\n return _objectSpread(_objectSpread({}, this.bvListeners), {}, {\n input: this.onInput,\n change: this.onChange,\n blur: this.onBlur\n });\n }\n },\n watch: {\n localValue: function localValue() {\n this.setHeight();\n }\n },\n mounted: function mounted() {\n this.setHeight();\n },\n methods: {\n // Called by intersection observer directive\n\n /* istanbul ignore next */\n visibleCallback: function visibleCallback(visible) {\n if (visible) {\n // We use a `$nextTick()` here just to make sure any\n // transitions or portalling have completed\n this.$nextTick(this.setHeight);\n }\n },\n setHeight: function setHeight() {\n var _this = this;\n\n this.$nextTick(function () {\n requestAF(function () {\n _this.heightInPx = _this.computeHeight();\n });\n });\n },\n\n /* istanbul ignore next: can't test getComputedStyle in JSDOM */\n computeHeight: function computeHeight() {\n if (this.$isServer || !isNull(this.computedRows)) {\n return null;\n }\n\n var el = this.$el; // Element must be visible (not hidden) and in document\n // Must be checked after above checks\n\n if (!isVisible(el)) {\n return null;\n } // Get current computed styles\n\n\n var computedStyle = getCS(el); // Height of one line of text in px\n\n var lineHeight = toFloat(computedStyle.lineHeight, 1); // Calculate height of border and padding\n\n var border = toFloat(computedStyle.borderTopWidth, 0) + toFloat(computedStyle.borderBottomWidth, 0);\n var padding = toFloat(computedStyle.paddingTop, 0) + toFloat(computedStyle.paddingBottom, 0); // Calculate offset\n\n var offset = border + padding; // Minimum height for min rows (which must be 2 rows or greater for cross-browser support)\n\n var minHeight = lineHeight * this.computedMinRows + offset; // Get the current style height (with `px` units)\n\n var oldHeight = getStyle(el, 'height') || computedStyle.height; // Probe scrollHeight by temporarily changing the height to `auto`\n\n setStyle(el, 'height', 'auto');\n var scrollHeight = el.scrollHeight; // Place the original old height back on the element, just in case `computedProp`\n // returns the same value as before\n\n setStyle(el, 'height', oldHeight); // Calculate content height in 'rows' (scrollHeight includes padding but not border)\n\n var contentRows = mathMax((scrollHeight - padding) / lineHeight, 2); // Calculate number of rows to display (limited within min/max rows)\n\n var rows = mathMin(mathMax(contentRows, this.computedMinRows), this.computedMaxRows); // Calculate the required height of the textarea including border and padding (in pixels)\n\n var height = mathMax(mathCeil(rows * lineHeight + offset), minHeight); // Computed height remains the larger of `oldHeight` and new `height`,\n // when height is in `sticky` mode (prop `no-auto-shrink` is true)\n\n if (this.noAutoShrink && toFloat(oldHeight, 0) > height) {\n return oldHeight;\n } // Return the new computed CSS height in px units\n\n\n return \"\".concat(height, \"px\");\n }\n },\n render: function render(h) {\n return h('textarea', {\n class: this.computedClass,\n style: this.computedStyle,\n directives: [{\n name: 'b-visible',\n value: this.visibleCallback,\n // If textarea is within 640px of viewport, consider it visible\n modifiers: {\n '640': true\n }\n }],\n attrs: this.computedAttrs,\n domProps: {\n value: this.localValue\n },\n on: this.computedListeners,\n ref: 'input'\n });\n }\n});","var baseEach = require('./_baseEach');\n\n/**\n * The base implementation of `_.filter` without support for iteratee shorthands.\n *\n * @private\n * @param {Array|Object} collection The collection to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n */\nfunction baseFilter(collection, predicate) {\n var result = [];\n baseEach(collection, function(value, index, collection) {\n if (predicate(value, index, collection)) {\n result.push(value);\n }\n });\n return result;\n}\n\nmodule.exports = baseFilter;\n","var arrayPush = require('./_arrayPush'),\n getPrototype = require('./_getPrototype'),\n getSymbols = require('./_getSymbols'),\n stubArray = require('./stubArray');\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n/**\n * Creates an array of the own and inherited enumerable symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of symbols.\n */\nvar getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) {\n var result = [];\n while (object) {\n arrayPush(result, getSymbols(object));\n object = getPrototype(object);\n }\n return result;\n};\n\nmodule.exports = getSymbolsIn;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('div',{staticClass:\"custom-grid-xl-container\"},[_c('b-form-group',{staticClass:\"required grap-3\",attrs:{\"id\":\"input-group-1\",\"label\":\"Mã thủ tục hành chính\",\"label-for\":\"input-1\"}},[_c('validation-provider',{key:\"maThuTucHanhChinh\",attrs:{\"rules\":{ required: true },\"name\":\"maThuTucHanhChinh\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('b-form-input',{ref:\"maThuTucHanhChinh\",attrs:{\"id\":\"input-1\",\"type\":\"text\",\"placeholder\":\"Nhập mã thủ tục hành chính\",\"required\":\"\",\"autofocus\":_vm.dataForm.id ? false : true},model:{value:(_vm.dataForm.maTTHC),callback:function ($$v) {_vm.$set(_vm.dataForm, \"maTTHC\", $$v)},expression:\"dataForm.maTTHC\"}}),_c('div',{staticClass:\"label-noti-validate\"},[_vm._v(\" \"+_vm._s(errors[0])+\" \")]),_c('div',{staticClass:\"label-noti-validate\"},[_vm._v(\" \"+_vm._s(_vm.errorTrungMa)+\" \")])]}}])})],1),_c('b-form-group',{staticClass:\"grap-3\",attrs:{\"id\":\"input-group-1\",\"label\":\"Số quyết định\",\"label-for\":\"input-1\"}},[_c('b-form-input',{ref:\"soQuyetDinh\",attrs:{\"id\":\"input-1\",\"type\":\"text\",\"placeholder\":\"Nhập số quyết định\",\"required\":\"\"},model:{value:(_vm.dataForm.soQuyetDinh),callback:function ($$v) {_vm.$set(_vm.dataForm, \"soQuyetDinh\", $$v)},expression:\"dataForm.soQuyetDinh\"}})],1),_c('b-form-group',{staticClass:\"required grap-6\",attrs:{\"id\":\"input-group-1\",\"label\":\"Tên thủ tục hành chính\",\"label-for\":\"input-1\"}},[_c('validation-provider',{key:\"tenThuTucHanhChinh\",attrs:{\"rules\":{ required: true },\"name\":\"tenThuTucHanhChinh\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('b-form-input',{ref:\"tenThuTucHanhChinh\",attrs:{\"id\":\"input-1\",\"type\":\"text\",\"placeholder\":\"Nhập tên thủ tục hành chính\",\"required\":\"\"},model:{value:(_vm.dataForm.tenTTHC),callback:function ($$v) {_vm.$set(_vm.dataForm, \"tenTTHC\", $$v)},expression:\"dataForm.tenTTHC\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}])})],1),_c('b-form-group',{staticClass:\"required grap-6\",attrs:{\"id\":\"input-group-1\",\"label\":\"Lĩnh vực\",\"label-for\":\"input-1\",\"placeholder\":\"Chọn lĩnh vực\"}},[_c('validation-provider',{key:\"linhVuc\",attrs:{\"rules\":{ required: true },\"name\":\"linhVuc\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('v-select',{ref:\"linhVuc\",staticClass:\"style-chooser\",attrs:{\"placeholder\":\"Nhập lĩnh vực\",\"options\":_vm.lv,\"label\":\"name\",\"reduce\":function (se) { return se.id; },\"filter\":_vm.onFilterSelect},on:{\"input\":function($event){_vm.dataForm.linhVucId = _vm.data.linhVucId}},scopedSlots:_vm._u([{key:\"no-options\",fn:function(){return [_vm._v(\" Không có dữ liệu \")]},proxy:true}],null,true),model:{value:(_vm.data.linhVucId),callback:function ($$v) {_vm.$set(_vm.data, \"linhVucId\", $$v)},expression:\"data.linhVucId\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}])})],1),_c('b-form-group',{staticClass:\"required grap-6\",attrs:{\"id\":\"input-group-1\",\"label\":\"Cơ quan thực hiện\",\"label-for\":\"input-1\",\"placeholder\":\"Chọn cơ quan thực hiện\"}},[_c('validation-provider',{key:\"coQuanBanHanh\",attrs:{\"rules\":{ required: true },\"name\":\"coQuanBanHanh\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('treeselect',{directives:[{name:\"format-v-select\",rawName:\"v-format-v-select\"}],ref:\"coQuanBanHanh\",attrs:{\"id\":\"coQuanBanHanh\",\"options\":_vm.dvCbx,\"placeholder\":\"Chọn cơ quan thực hiện\",\"normalizer\":_vm.normalizer,\"no-options-text\":\"Không có dữ liệu\",\"no-results-text\":\"Không có dữ liệu\"},on:{\"input\":function($event){_vm.dataForm.coQuanThucHien = _vm.data.coQuanThucHien}},model:{value:(_vm.data.coQuanThucHien),callback:function ($$v) {_vm.$set(_vm.data, \"coQuanThucHien\", $$v)},expression:\"data.coQuanThucHien\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}])})],1),_c('b-form-group',{staticClass:\"grap-4\",attrs:{\"id\":\"input-group-1\",\"label\":\"Phí\",\"label-for\":\"input-1\"}},[_c('b-form-input',{attrs:{\"id\":\"phiInput\",\"type\":\"text\",\"placeholder\":\"Nhập phí\",\"required\":\"\"}})],1),_c('b-form-group',{staticClass:\"grap-4\",attrs:{\"id\":\"input-group-1\",\"label\":\"Lệ phí\",\"label-for\":\"input-1\"}},[_c('b-form-input',{attrs:{\"id\":\"lePhiInput\",\"type\":\"text\",\"placeholder\":\"Nhập lệ phí\",\"required\":\"\"}})],1),_c('b-form-group',{staticClass:\"grap-4\",attrs:{\"id\":\"input-group-1\",\"label\":\"Số bộ hồ sơ\",\"label-for\":\"input-1\"}},[_c('b-form-input',{directives:[{name:\"block-e\",rawName:\"v-block-e\"},{name:\"format-positive-integers\",rawName:\"v-format-positive-integers\"},{name:\"is-int\",rawName:\"v-is-int\"}],attrs:{\"id\":\"input-1\",\"type\":\"number\",\"placeholder\":\"Nhập số bộ hồ sơ\",\"required\":\"\"},on:{\"input\":function (e) { return _vm.dataForm.soBoHoSo < 0 ? _vm.dataForm.soBoHoSo = 0 : _vm.dataForm.soBoHoSo; }},model:{value:(_vm.dataForm.soBoHoSo),callback:function ($$v) {_vm.$set(_vm.dataForm, \"soBoHoSo\", _vm._n($$v))},expression:\"dataForm.soBoHoSo\"}})],1),_c('b-form-group',{staticClass:\"required grap-6\",attrs:{\"id\":\"input-group-1\",\"label\":\"Kiểu thủ tục hành chính\",\"label-for\":\"input-1\",\"placeholder\":\"Chọn kiểu thủ tục hành chính\"}},[_c('validation-provider',{key:\"kieuThuTucHanhChinh\",attrs:{\"rules\":{ required: true },\"name\":\"kieuThuTucHanhChinh\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('v-select',{ref:\"kieuThuTucHanhChinh\",staticClass:\"style-chooser\",attrs:{\"placeholder\":\"Chọn thủ tục hành chính\",\"options\":_vm.ktthc,\"name\":\"label\",\"reduce\":function (se) { return se.id; },\"filter\":_vm.onFilterSelect},scopedSlots:_vm._u([{key:\"no-options\",fn:function(){return [_vm._v(\" Không có dữ liệu \")]},proxy:true}],null,true),model:{value:(_vm.dataForm.kieuTTHC),callback:function ($$v) {_vm.$set(_vm.dataForm, \"kieuTTHC\", $$v)},expression:\"dataForm.kieuTTHC\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}])})],1),_c('b-form-group',{staticClass:\"required grap-6\",attrs:{\"id\":\"input-group-1\",\"label\":\"Mức độ dịch vụ công\",\"label-for\":\"input-1\",\"placeholder\":\"Chọn mức độ dịch vụ công\"}},[_c('validation-provider',{key:\"mucDoDichVuCong\",attrs:{\"rules\":{ required: true },\"name\":\"mucDoDichVuCong\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('v-select',{ref:\"mucDoDichVuCong\",staticClass:\"style-chooser\",attrs:{\"placeholder\":\"Chọn mức độ dịch vụ công\",\"options\":_vm.mucDoDichVuCong,\"name\":\"label\",\"reduce\":function (se) { return se.id; },\"filter\":_vm.onFilterSelect},scopedSlots:_vm._u([{key:\"no-options\",fn:function(){return [_vm._v(\" Không có dữ liệu \")]},proxy:true}],null,true),model:{value:(_vm.dataForm.loaiDichVuCong),callback:function ($$v) {_vm.$set(_vm.dataForm, \"loaiDichVuCong\", $$v)},expression:\"dataForm.loaiDichVuCong\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}])})],1),_c('b-form-group',{staticClass:\"required grap-6\",attrs:{\"id\":\"input-group-1\",\"label\":\"Loại dịch vụ công\",\"label-for\":\"input-1\",\"placeholder\":\"Chọn loại dịch vụ công\"}},[_c('validation-provider',{key:\"loaiDichVuCong\",attrs:{\"rules\":{ required: true },\"name\":\"loaiDichVuCong\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('v-select',{ref:\"loaiDichVuCong\",staticClass:\"style-chooser\",attrs:{\"placeholder\":\"Chọn loại dịch vụ công\",\"options\":_vm.loaiDichVuCong,\"name\":\"label\",\"reduce\":function (se) { return se.id; },\"filter\":_vm.onFilterSelect},scopedSlots:_vm._u([{key:\"no-options\",fn:function(){return [_vm._v(\" Không có dữ liệu \")]},proxy:true}],null,true),model:{value:(_vm.dataForm.loaiDichVuCong2),callback:function ($$v) {_vm.$set(_vm.dataForm, \"loaiDichVuCong2\", $$v)},expression:\"dataForm.loaiDichVuCong2\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}])})],1),_c('b-form-group',{staticClass:\"required grap-6\",attrs:{\"id\":\"input-group-1\",\"label\":\"Cấp độ thủ tục hành chính\",\"label-for\":\"input-1\",\"placeholder\":\"Chọn cấp độ thủ tục hành chính\"}},[_c('validation-provider',{key:\"capDoThuTucHanhChinh\",attrs:{\"rules\":{ required: true },\"name\":\"capDoThuTucHanhChinh\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('v-select',{ref:\"capDoThuTucHanhChinh\",staticClass:\"style-chooser\",attrs:{\"placeholder\":\"Chọn cấp độ thủ tục hành chính\",\"options\":_vm.capDoTTHC,\"name\":\"label\",\"reduce\":function (se) { return se.id; },\"filter\":_vm.onFilterSelect},scopedSlots:_vm._u([{key:\"no-options\",fn:function(){return [_vm._v(\" Không có dữ liệu \")]},proxy:true}],null,true),model:{value:(_vm.dataForm.capDoTTHC),callback:function ($$v) {_vm.$set(_vm.dataForm, \"capDoTTHC\", $$v)},expression:\"dataForm.capDoTTHC\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}])})],1),_c('b-form-group',{staticClass:\"grap-6\",attrs:{\"id\":\"input-group-1\",\"label\":\"Trạng thái\",\"label-for\":\"input-1\"}},[_c('b-form-checkbox',{staticClass:\"custom-switch\",attrs:{\"switch\":\"\"},model:{value:(_vm.dataForm.status),callback:function ($$v) {_vm.$set(_vm.dataForm, \"status\", $$v)},expression:\"dataForm.status\"}})],1)],1),_c('b-form-group',{staticClass:\"required\",attrs:{\"label\":\"Cấp độ chi tiết của thủ tục hành chính\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar ariaDescribedby = ref.ariaDescribedby;\nreturn [_c('validation-provider',{key:\"capDoChiTietThuTucHanhChinh\",attrs:{\"rules\":{ required: true },\"name\":\"Cấp độ chi tiết thủ tục hành chính\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('b-form-radio-group',{attrs:{\"id\":\"radio-group-1\",\"options\":_vm.optionsCDCTTTHC,\"aria-describedby\":ariaDescribedby,\"name\":\"radio-options\"},model:{value:(_vm.dataForm.capDoChiTietTTHC),callback:function ($$v) {_vm.$set(_vm.dataForm, \"capDoChiTietTTHC\", $$v)},expression:\"dataForm.capDoChiTietTTHC\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}],null,true)})]}}])}),_c('b-form-group',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.dataForm.capDoChiTietTTHC == 4),expression:\"dataForm.capDoChiTietTTHC == 4\"}],attrs:{\"id\":\"input-group-1\",\"label\":\"Đường dẫn chuyên ngành\",\"label-for\":\"input-1\"}},[_c('b-form-input',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.dataForm.capDoChiTietTTHC == 4),expression:\"dataForm.capDoChiTietTTHC == 4\"}],ref:\"duongDanChuyenNganh\",attrs:{\"id\":\"input-1\",\"type\":\"text\",\"placeholder\":\"Nhập đường dẫn chuyên ngành\"},model:{value:(_vm.dataForm.duongDanChuyenNganh),callback:function ($$v) {_vm.$set(_vm.dataForm, \"duongDanChuyenNganh\", $$v)},expression:\"dataForm.duongDanChuyenNganh\"}})],1),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('div',{staticClass:\"grid-custom\"},[_c('span',{staticClass:\"d-flex\"},[_vm._v(\" Triển khai tiếp nhận qua bưu điện \"),_c('b-form-checkbox',{staticClass:\"ml-1\",model:{value:(_vm.dataForm.tiepNhanQuaBuuDien),callback:function ($$v) {_vm.$set(_vm.dataForm, \"tiepNhanQuaBuuDien\", $$v)},expression:\"dataForm.tiepNhanQuaBuuDien\"}})],1),_c('span',{staticClass:\"d-flex\"},[_vm._v(\" Triển khai trả kết quả qua bưu điện \"),_c('b-form-checkbox',{staticClass:\"ml-1\",model:{value:(_vm.dataForm.traKetQuaQuaBuuDien),callback:function ($$v) {_vm.$set(_vm.dataForm, \"traKetQuaQuaBuuDien\", $$v)},expression:\"dataForm.traKetQuaQuaBuuDien\"}})],1)])]),_c('b-form-group',{staticClass:\"required\",attrs:{\"label\":\"Mẫu hồ sơ\"}},[_c('vue-good-table',{attrs:{\"columns\":_vm.columns,\"rows\":_vm.dataForm.dsMauHoSo},scopedSlots:_vm._u([{key:\"table-row\",fn:function(props){return [(props.column.field == 'tenMauHoSo')?_c('span',[_c('validation-provider',{key:props.index,attrs:{\"rules\":{ required: true },\"name\":(\"hoSo_\" + (props.index))},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('b-form-input',{ref:(\"hoSo_\" + (props.index)),attrs:{\"id\":\"input-1\",\"type\":\"text\",\"placeholder\":\"Nhập tên hồ sơ\",\"disabled\":_vm.dataForm.dsMauHoSo[props.index].isDefault},model:{value:(_vm.dataForm.dsMauHoSo[props.index].tenMauHoSo),callback:function ($$v) {_vm.$set(_vm.dataForm.dsMauHoSo[props.index], \"tenMauHoSo\", $$v)},expression:\"dataForm.dsMauHoSo[props.index].tenMauHoSo\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}],null,true)})],1):(props.column.field == 'actions')?_c('span',[_c('div',{staticClass:\"d-flex justify-content-center\"},[(props.index + 1 == _vm.dataForm.dsMauHoSo.length)?_c('plus-square-icon',{directives:[{name:\"b-tooltip\",rawName:\"v-b-tooltip.hover.v-secondary\",modifiers:{\"hover\":true,\"v-secondary\":true}}],staticClass:\"custom-class cursor-pointer mr-1\",attrs:{\"title\":\"Thêm\",\"size\":\"16\"},on:{\"click\":function (e) { return _vm.dataForm.dsMauHoSo.push({ tenMauHoSo: null, isDefault: false, allowDelete: true, }); }}}):_vm._e(),(_vm.dataForm.dsMauHoSo.length > 1 && !_vm.dataForm.dsMauHoSo[props.index].isDefault && _vm.dataForm.dsMauHoSo[props.index].allowDelete)?_c('trash-2-icon',{directives:[{name:\"b-tooltip\",rawName:\"v-b-tooltip.hover.v-secondary\",modifiers:{\"hover\":true,\"v-secondary\":true}}],staticClass:\"custom-class cursor-pointer\",attrs:{\"title\":\"Xoá\",\"size\":\"16\"},on:{\"click\":function($event){return _vm.deleteHoSo(props.index)}}}):_vm._e()],1)]):(props.column.field == 'STT')?_c('span',[_vm._v(\" \"+_vm._s(_vm.rowNumber(props))+\" \")]):_vm._e()]}}])},[_c('div',{staticClass:\"text-center\",attrs:{\"slot\":\"emptystate\"},slot:\"emptystate\"},[_vm._v(\" Không có dữ liệu \")])])],1),_c('div',[_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"Mẫu đơn, tờ khai\",\"label-for\":\"input-1\"}},[_c('div',{staticClass:\"custom-grid-xl-container\"},[_c('div',{staticClass:\"grap-2\"},[_c('b-button',{staticClass:\"d-flex\",attrs:{\"variant\":\"primary\",\"size\":\"sm\",\"disabled\":!_vm.isLoadedFile},on:{\"click\":function (e) { return _vm.$refs.fileInput.click(); }}},[(!_vm.isLoadedFile)?_c('b-spinner',{staticStyle:{\"margin-right\":\"5px\"},attrs:{\"small\":\"\",\"label\":\"Spinning\"}}):_vm._e(),_vm._v(\" Tải file \")],1),_c('input',{ref:\"fileInput\",staticClass:\"d-none\",attrs:{\"type\":\"file\",\"multiple\":\"\",\"accept\":\"application/msword, application/vnd.ms-excel, application/pdf, .docx, .xlsx, application/x-rar-compressed, image/*\"},on:{\"change\":_vm.changeFile}})],1),(_vm.dataForm.mauDonToKhai && _vm.dataForm.mauDonToKhai.length > 0)?_c('div',{staticClass:\"grap-10\"},_vm._l((_vm.dataForm.mauDonToKhai),function(mdtk,index){return _c('div',{key:index},[_c('span',{staticClass:\"mr-1\"},[_c('a',{attrs:{\"href\":\"javascript:;\"},on:{\"click\":function($event){return _vm.downloadFile(mdtk)}}},[_vm._v(_vm._s(mdtk.tenFile))])]),_c('trash-2-icon',{directives:[{name:\"b-tooltip\",rawName:\"v-b-tooltip.hover.v-secondary\",modifiers:{\"hover\":true,\"v-secondary\":true}}],staticClass:\"custom-class cursor-pointer\",attrs:{\"title\":\"Xoá\",\"size\":\"16\"},on:{\"click\":function($event){return _vm.deleteFile(index)}}})],1)}),0):_c('div',{staticClass:\"grap-10 d-flex align-items-center\"},[_vm._v(\" Cho phép tải lên file .doc, .pdf, .xls, .docx, .xlsx, .zip, .rar, .jpg, .png, .bmp, .gif – Nhỏ hơn 25MB \")])]),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(_vm.errorFileSize))])])],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Trình tự thực hiện\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.trinhTuThucHien),callback:function ($$v) {_vm.$set(_vm.dataForm, \"trinhTuThucHien\", $$v)},expression:\"dataForm.trinhTuThucHien\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Thành phần hồ sơ\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.thanhPhanHoSo),callback:function ($$v) {_vm.$set(_vm.dataForm, \"thanhPhanHoSo\", $$v)},expression:\"dataForm.thanhPhanHoSo\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Yêu cầu điều kiện\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.yeuCauDieuKien),callback:function ($$v) {_vm.$set(_vm.dataForm, \"yeuCauDieuKien\", $$v)},expression:\"dataForm.yeuCauDieuKien\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Thời gian giải quyết\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.thoiGianGiaiQuyet),callback:function ($$v) {_vm.$set(_vm.dataForm, \"thoiGianGiaiQuyet\", $$v)},expression:\"dataForm.thoiGianGiaiQuyet\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Đối tượng thực hiện\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.doiTuongThucHien),callback:function ($$v) {_vm.$set(_vm.dataForm, \"doiTuongThucHien\", $$v)},expression:\"dataForm.doiTuongThucHien\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Kết quả giải quyết\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.ketQuaGiaiQuyet),callback:function ($$v) {_vm.$set(_vm.dataForm, \"ketQuaGiaiQuyet\", $$v)},expression:\"dataForm.ketQuaGiaiQuyet\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Căn cứ pháp lý\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.canCuPhapLy),callback:function ($$v) {_vm.$set(_vm.dataForm, \"canCuPhapLy\", $$v)},expression:\"dataForm.canCuPhapLy\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Cách thức thực hiện\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.cachThucThucHien),callback:function ($$v) {_vm.$set(_vm.dataForm, \"cachThucThucHien\", $$v)},expression:\"dataForm.cachThucThucHien\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Cơ quan có thẩm quyền\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.coQuanCoThamQuyen),callback:function ($$v) {_vm.$set(_vm.dataForm, \"coQuanCoThamQuyen\", $$v)},expression:\"dataForm.coQuanCoThamQuyen\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Địa chỉ tiếp nhận hồ sơ\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.diaChiTiepNhanHoSo),callback:function ($$v) {_vm.$set(_vm.dataForm, \"diaChiTiepNhanHoSo\", $$v)},expression:\"dataForm.diaChiTiepNhanHoSo\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Cơ quan được ủy quyền\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.coQuanDuocUyQuyen),callback:function ($$v) {_vm.$set(_vm.dataForm, \"coQuanDuocUyQuyen\", $$v)},expression:\"dataForm.coQuanDuocUyQuyen\"}})],1)],1),_c('details',{staticClass:\"format-details\"},[_c('summary',[_vm._v(\"Cơ quan phối hợp\")]),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"\",\"label-for\":\"input-1\"}},[_c('ckeditor',{attrs:{\"editor\":_vm.editor,\"config\":_vm.editorConfig},model:{value:(_vm.dataForm.coQuanPhoiHop),callback:function ($$v) {_vm.$set(_vm.dataForm, \"coQuanPhoiHop\", $$v)},expression:\"dataForm.coQuanPhoiHop\"}})],1)],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n
\r\n Cho phép tải lên file .doc, .pdf, .xls, .docx, .xlsx, .zip, .rar, .jpg, .png, .bmp, .gif – Nhỏ hơn 25MB\r\n
\r\n
\r\n {{ errorFileSize }}\r\n \r\n
\r\n \r\n Trình tự thực hiện\r\n \r\n \r\n \r\n \r\n \r\n Thành phần hồ sơ\r\n \r\n \r\n \r\n \r\n \r\n Yêu cầu điều kiện\r\n \r\n \r\n \r\n \r\n \r\n Thời gian giải quyết\r\n \r\n \r\n \r\n \r\n \r\n Đối tượng thực hiện\r\n \r\n \r\n \r\n \r\n \r\n Kết quả giải quyết\r\n \r\n \r\n \r\n \r\n \r\n Căn cứ pháp lý\r\n \r\n \r\n \r\n \r\n \r\n Cách thức thực hiện\r\n \r\n \r\n \r\n \r\n \r\n Cơ quan có thẩm quyền\r\n \r\n \r\n \r\n \r\n \r\n Địa chỉ tiếp nhận hồ sơ\r\n \r\n \r\n \r\n \r\n \r\n Cơ quan được ủy quyền\r\n \r\n \r\n \r\n \r\n \r\n Cơ quan phối hợp\r\n \r\n \r\n \r\n \r\n
\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../../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!./ThuTucHanhChinhForm.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../../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!./ThuTucHanhChinhForm.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./ThuTucHanhChinhForm.vue?vue&type=template&id=375756ea&\"\nimport script from \"./ThuTucHanhChinhForm.vue?vue&type=script&lang=js&\"\nexport * from \"./ThuTucHanhChinhForm.vue?vue&type=script&lang=js&\"\nimport style0 from \"./ThuTucHanhChinhForm.vue?vue&type=style&index=0&id=375756ea&prod&scped=true&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","var Symbol = require('./_Symbol');\n\n/** Used to convert symbols to primitives and strings. */\nvar symbolProto = Symbol ? Symbol.prototype : undefined,\n symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;\n\n/**\n * Creates a clone of the `symbol` object.\n *\n * @private\n * @param {Object} symbol The symbol object to clone.\n * @returns {Object} Returns the cloned symbol object.\n */\nfunction cloneSymbol(symbol) {\n return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};\n}\n\nmodule.exports = cloneSymbol;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('b-form-group',{staticClass:\"required\",attrs:{\"id\":\"input-group-1\",\"label\":\"Mã biểu mẫu\",\"label-for\":\"input-1\"}},[_c('validation-provider',{key:\"maBieuMau\",attrs:{\"rules\":{ required: true },\"name\":\"maBieuMau\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('b-form-input',{ref:\"maBieuMau\",attrs:{\"id\":\"input-1\",\"type\":\"text\",\"placeholder\":\"Nhập mã biểu mẫu\",\"required\":\"\",\"autofocus\":_vm.dataForm.id ? false : true},model:{value:(_vm.form.maBieuMau),callback:function ($$v) {_vm.$set(_vm.form, \"maBieuMau\", $$v)},expression:\"form.maBieuMau\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}])})],1),_c('b-form-group',{staticClass:\"required\",attrs:{\"id\":\"input-group-1\",\"label\":\"Tên biểu mẫu\",\"label-for\":\"input-1\"},model:{value:(_vm.form.tenBieuMau),callback:function ($$v) {_vm.$set(_vm.form, \"tenBieuMau\", $$v)},expression:\"form.tenBieuMau\"}},[_c('validation-provider',{key:\"tenBieuMau\",attrs:{\"rules\":{ required: true },\"name\":\"tenBieuMau\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('b-form-input',{ref:\"tenBieuMau\",attrs:{\"id\":\"input-1\",\"type\":\"text\",\"placeholder\":\"Nhập tên biểu mẫu\",\"required\":\"\"}}),_c('span',{staticClass:\"label-noti-validate\"},[_vm._v(_vm._s(errors[0]))])]}}])})],1),_c('b-form-group',{attrs:{\"id\":\"input-group-1\",\"label\":\"Trạng thái\",\"label-for\":\"input-1\"}},[_c('b-form-checkbox',{attrs:{\"switch\":\"\"}})],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n