From 5ad165c5c834cb79fee5169646aee95d0a76e2cf Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Fri, 28 Aug 2026 17:03:53 +0800 Subject: [PATCH] =?UTF-8?q?2026-08-28=20=E6=96=B0=E5=A2=9E=E6=8A=A5?= =?UTF-8?q?=E4=BB=B7=E6=98=8E=E7=BB=86=E6=97=B6=E2=80=9C=E8=AF=A2=E4=BB=B7?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E4=B8=AD=E5=B1=95=E7=A4=BA=E8=AF=A5=E6=9D=A1?= =?UTF-8?q?=E7=9B=AE=E8=A1=8C=E2=80=9D=E5=B1=9E=E6=80=A7=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=8B=BE=E9=80=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/quote/detail/quoteDetail.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/views/modules/quote/detail/quoteDetail.vue b/src/views/modules/quote/detail/quoteDetail.vue index 69d0bb1..8c9abd6 100644 --- a/src/views/modules/quote/detail/quoteDetail.vue +++ b/src/views/modules/quote/detail/quoteDetail.vue @@ -113,7 +113,7 @@ export default { elseCost:0, adjustElseCost:0, remark:'', - showFlag:'N', + showFlag:'Y', }, saveQuoteDetail:{ @@ -805,8 +805,8 @@ export default { this.$nextTick(()=>{ this.saveQuoteDetail.projectNo = this.quote.projectNo }) - // 新建时默认不勾选 - this.showFlagChecked = false + // 新建时默认勾选 + this.showFlagChecked = true } this.saveQuoteDetail.showModalFlag = false this.activeName = 'bom'; @@ -1014,6 +1014,7 @@ export default { this.saveQuoteDetail = { ...data.row, } + this.showFlagChecked = this.saveQuoteDetail.showFlag === 'Y' }else { this.saveVisible = false; } @@ -1054,7 +1055,10 @@ export default { } }, handleAgainQuoteDetail(row){ - this.againRow = row; + this.againRow = { + ...row, + showFlag: 'Y' + }; this.againVisible = true; }, againQuoteDetail(){