From 90055cb2e366b0ab163f1693b64986c13abb75a6 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Tue, 28 Nov 2023 16:56:05 +0800 Subject: [PATCH] fix --- src/components/quill1/index.vue | 191 ------------------------------- src/components/quill1/options.js | 15 --- src/views/Transaction.vue | 18 +-- 3 files changed, 10 insertions(+), 214 deletions(-) delete mode 100644 src/components/quill1/index.vue delete mode 100644 src/components/quill1/options.js diff --git a/src/components/quill1/index.vue b/src/components/quill1/index.vue deleted file mode 100644 index d67ef58..0000000 --- a/src/components/quill1/index.vue +++ /dev/null @@ -1,191 +0,0 @@ - - - - diff --git a/src/components/quill1/options.js b/src/components/quill1/options.js deleted file mode 100644 index 9a62197..0000000 --- a/src/components/quill1/options.js +++ /dev/null @@ -1,15 +0,0 @@ -export default [ - ['bold', 'italic', 'underline', 'strike'], - ['blockquote', 'code-block'], - [{ 'header': 1 }, { 'header': 2 }], - [{ 'list': 'ordered' }, { 'list': 'bullet' }], - [{ 'script': 'sub' }, { 'script': 'super' }], - [{ 'indent': '-1' }, { 'indent': '+1' }], - [{ 'direction': 'rtl' }], - [{ 'size': ['small', false, 'large', 'huge'] }], - [{ 'color': [] }, { 'background': [] }], - [{ 'font': [] }], - [{ 'align': [] }], - ['clean'], - ['link', 'image', 'video'] -] \ No newline at end of file diff --git a/src/views/Transaction.vue b/src/views/Transaction.vue index 4d554eb..c4e7ba8 100644 --- a/src/views/Transaction.vue +++ b/src/views/Transaction.vue @@ -61,7 +61,7 @@ :append-to-body="false">
- +
保存 - 取消 - + --> { + this.loading = false + }) + console.log("🚀 ~ file: Transaction.vue:646 ~ this.tableData.forEach ~ this.tableData:", this.treeData) } else { this.$message.warning(res.message); this.loading = false @@ -929,7 +932,6 @@ export default { if (status == 200) { if (process.length) { this.$store.commit('setTreeDataStore', { treeDataStore: process }) - console.log("🚀 ~ file: Transaction.vue:932 ~ this.$post ~ process:", process) this.treeData = this.toTreeId(process); this.loading = false if (this.$route.query.lcId) { @@ -1171,7 +1173,7 @@ export default { }, handleEdit (row) { // 处理编辑规则 this.judgePoints = true - this.tableDataCopy = deepCopy(this.tableData); // 深拷贝 + // this.tableDataCopy = deepCopy(this.tableData); // 深拷贝 row.isDisabled = false; row.isSave = false; },