{"remainingRequest":"D:\\jenkins\\workspace\\artfess-module\\node_modules\\thread-loader\\dist\\cjs.js!D:\\jenkins\\workspace\\artfess-module\\node_modules\\babel-loader\\lib\\index.js!D:\\jenkins\\workspace\\artfess-module\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!D:\\jenkins\\workspace\\artfess-module\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\jenkins\\workspace\\artfess-module\\src\\components\\HtFieldTail.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\artfess-module\\src\\components\\HtFieldTail.vue","mtime":1675232038574},{"path":"D:\\jenkins\\workspace\\artfess-module\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\artfess-module\\node_modules\\thread-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\artfess-module\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"D:\\jenkins\\workspace\\artfess-module\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\artfess-module\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["import \"core-js/modules/es6.regexp.split\";\nimport \"core-js/modules/es7.array.includes\";\nimport \"core-js/modules/es6.string.includes\";\nimport \"core-js/modules/es6.number.constructor\";\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//\nimport utils from \"@/utils.js\";\nexport default {\n name: \"ht-field-tail\",\n props: {\n fieldName: {\n type: String,\n required: true\n },\n readonly: {\n type: Boolean,\n default: false\n },\n inputValue: {\n type: [String, Number, Object, Array, Boolean]\n },\n tagFormatValue: {\n type: [Array],\n default: function _default() {\n return [];\n }\n },\n writeable: {\n type: Boolean,\n default: true\n }\n },\n data: function data() {\n return {\n scopeName: null\n };\n },\n computed: {\n fieldScopePath: function fieldScopePath() {\n var path = this.fieldName;\n\n if (this.scopeName) {\n path = \"\".concat(this.scopeName, \".\").concat(this.fieldName);\n }\n\n return path;\n },\n hasErrors: function hasErrors() {\n return this.errors && this.errors.has(this.fieldScopePath);\n },\n errorMessage: function errorMessage() {\n return this.errors.first(this.fieldScopePath);\n },\n formatInputValue: function formatInputValue() {\n var value = [];\n\n if (this.readonly && typeof this.inputValue === \"string\") {\n if (this.inputValue.includes(\"↵\")) {\n vlaue = this.inputValue.split(\"↵\");\n } else if (this.inputValue.includes(\"\\n\")) {\n value = this.inputValue.split(\"\\n\");\n } else {\n value = [this.inputValue];\n }\n }\n\n return value;\n },\n isReadonlyTextarea: function isReadonlyTextarea() {\n return typeof this.inputValue === \"string\" ? this.inputValue.includes(\"↵\") || this.inputValue.includes(\"\\n\") : false;\n }\n },\n mounted: function mounted() {\n this.scopeName = utils.getSomeAttributeFromParentElement(this.$el.parentElement, \"data-vv-scope\");\n\n var _utils$getSubScopeElA = utils.getSubScopeElAndIndex(this.$el.parentElement),\n subScopeEl = _utils$getSubScopeElA.subScopeEl,\n index = _utils$getSubScopeElA.index;\n\n if (subScopeEl && (subScopeEl.getAttribute(\"row_readonly\") == 'true' || subScopeEl.getAttribute(\"row_readonly\") === true)) {\n this.$emit(\"update:writeable\", false);\n }\n },\n created: function created() {\n this.$validator = this.$root.$validator;\n }\n};",null]}