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) + } }) },