3d990a5bf23f82296fc1aebedbfb6533.json 3.8 KB

1
  1. {"remainingRequest":"E:\\mec-cloud_IntelligentManufacturing_CRM\\mec-cloud_IntelligentManufacturing_CRM\\ruoyi-ui\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!E:\\mec-cloud_IntelligentManufacturing_CRM\\mec-cloud_IntelligentManufacturing_CRM\\ruoyi-ui\\node_modules\\k-form-design\\packages\\components\\KEditor\\kEditor.vue?vue&type=script&lang=js&","dependencies":[{"path":"E:\\mec-cloud_IntelligentManufacturing_CRM\\mec-cloud_IntelligentManufacturing_CRM\\ruoyi-ui\\node_modules\\k-form-design\\packages\\components\\KEditor\\kEditor.vue","mtime":1688725441993},{"path":"E:\\mec-cloud_IntelligentManufacturing_CRM\\mec-cloud_IntelligentManufacturing_CRM\\ruoyi-ui\\node_modules\\cache-loader\\dist\\cjs.js","mtime":1688725391035},{"path":"E:\\mec-cloud_IntelligentManufacturing_CRM\\mec-cloud_IntelligentManufacturing_CRM\\ruoyi-ui\\node_modules\\babel-loader\\lib\\index.js","mtime":1688725407620},{"path":"E:\\mec-cloud_IntelligentManufacturing_CRM\\mec-cloud_IntelligentManufacturing_CRM\\ruoyi-ui\\node_modules\\cache-loader\\dist\\cjs.js","mtime":1688725391035},{"path":"E:\\mec-cloud_IntelligentManufacturing_CRM\\mec-cloud_IntelligentManufacturing_CRM\\ruoyi-ui\\node_modules\\vue-loader\\lib\\index.js","mtime":1688725415411}],"contextDependencies":[],"result":[{"type":"Buffer","data":"base64:Ly8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KDQppbXBvcnQgeyBxdWlsbEVkaXRvciB9IGZyb20gInZ1ZS1xdWlsbC1lZGl0b3IiOyAvL+iwg+eUqOe8lui+keWZqA0KaW1wb3J0ICJxdWlsbC9kaXN0L3F1aWxsLmNvcmUuY3NzIjsNCmltcG9ydCAicXVpbGwvZGlzdC9xdWlsbC5zbm93LmNzcyI7DQppbXBvcnQgInF1aWxsL2Rpc3QvcXVpbGwuYnViYmxlLmNzcyI7DQoNCmV4cG9ydCBkZWZhdWx0IHsNCiAgbmFtZTogImVkaXRvciIsDQogIHByb3BzOiBbInZhbHVlIiwgInJlY29yZCIsICJwYXJlbnREaXNhYmxlZCJdLA0KICBjb21wb25lbnRzOiB7IHF1aWxsRWRpdG9yIH0sDQogIGRhdGEoKSB7DQogICAgcmV0dXJuIHsNCiAgICAgIGVkaXRvck9wdGlvbjogew0KICAgICAgICBwbGFjZWhvbGRlcjogdGhpcy5yZWNvcmQub3B0aW9ucy5wbGFjZWhvbGRlcg0KICAgICAgfQ0KICAgIH07DQogIH0sDQogIG1ldGhvZHM6IHsNCiAgICBvbkVkaXRvckJsdXIoKSB7fSwgLy8g5aSx5Y6754Sm54K55LqL5Lu2DQogICAgb25FZGl0b3JGb2N1cygpIHt9LCAvLyDojrflvpfnhKbngrnkuovku7YNCiAgICBvbkVkaXRvckNoYW5nZShlKSB7DQogICAgICB0aGlzLiRlbWl0KCJjaGFuZ2UiLCBlLmh0bWwpOw0KICAgIH0NCiAgfQ0KfTsNCg=="},{"version":3,"sources":["kEditor.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAuBA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"kEditor.vue","sourceRoot":"node_modules/k-form-design/packages/components/KEditor","sourcesContent":["<!--\r\n * @Description: 对vue-quill-editor封装\r\n * @Author: kcz\r\n * @Date: 2020-03-30 12:44:03\r\n * @LastEditors: kcz\r\n * @LastEditTime: 2022-10-19 13:53:56\r\n -->\r\n<template>\r\n <quillEditor\r\n :style=\"{ height: `${record.options.height}px` }\"\r\n :value=\"value\"\r\n ref=\"vueQuillEditor\"\r\n class=\"ql-editor-class\"\r\n :class=\"{ chinesization: record.options.chinesization }\"\r\n :options=\"editorOption\"\r\n :disabled=\"record.options.disabled || parentDisabled\"\r\n @blur=\"onEditorBlur($event)\"\r\n @focus=\"onEditorFocus($event)\"\r\n @change=\"onEditorChange($event)\"\r\n >\r\n </quillEditor>\r\n</template>\r\n<script>\r\nimport { quillEditor } from \"vue-quill-editor\"; //调用编辑器\r\nimport \"quill/dist/quill.core.css\";\r\nimport \"quill/dist/quill.snow.css\";\r\nimport \"quill/dist/quill.bubble.css\";\r\n\r\nexport default {\r\n name: \"editor\",\r\n props: [\"value\", \"record\", \"parentDisabled\"],\r\n components: { quillEditor },\r\n data() {\r\n return {\r\n editorOption: {\r\n placeholder: this.record.options.placeholder\r\n }\r\n };\r\n },\r\n methods: {\r\n onEditorBlur() {}, // 失去焦点事件\r\n onEditorFocus() {}, // 获得焦点事件\r\n onEditorChange(e) {\r\n this.$emit(\"change\", e.html);\r\n }\r\n }\r\n};\r\n</script>\r\n"]}]}