From 366c22f5ac849b858a69034560ec492b821d8e92 Mon Sep 17 00:00:00 2001 From: qiezi <15576055375@163.com> Date: Thu, 8 May 2025 09:38:56 +0800 Subject: [PATCH] 2025-05-08 --- .../com_bm_prepress.vue | 41 +++++++++++-------- 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_prepress.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_prepress.vue index a8d64a7..3897881 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_prepress.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_prepress.vue @@ -14,7 +14,7 @@
- +
@@ -312,21 +312,30 @@ }); }, saveData(){ - this.$confirm("是否保存信息?", '保存提示', { - confirmButtonText: '确定', - cancelButtonText: '取消', - }).then(() => { - updateBMPrepressDetail(this.dataForm).then(({data}) => { - if (data && data.code === 0) { - this.$clearHighLight() - this.$message.success( '操作成功') - this.$emit("closeModel") - } else { - this.$message.error(data.msg) - } - }) - }).catch(() => { - return + // this.$confirm("是否保存信息?", '保存提示', { + // confirmButtonText: '确定', + // cancelButtonText: '取消', + // }).then(() => { + // updateBMPrepressDetail(this.dataForm).then(({data}) => { + // if (data && data.code === 0) { + // this.$clearHighLight() + // this.$message.success( '操作成功') + // this.$emit("closeModel") + // } else { + // this.$message.error(data.msg) + // } + // }) + // }).catch(() => { + // return + // }) + updateBMPrepressDetail(this.dataForm).then(({data}) => { + if (data && data.code === 0) { + this.$clearHighLight() + this.$message.success( '操作成功') + this.$emit("closeModel") + } else { + this.$message.error(data.msg) + } }) },