From b9e0858f9239f6b08488ff6b0d0459775e27231d Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期五, 29 十一月 2024 14:26:57 +0800 Subject: [PATCH] fix:1129 参数传-1 --- src/components/equ-add-form.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/equ-add-form.vue b/src/components/equ-add-form.vue index ff12890..d9de8c2 100644 --- a/src/components/equ-add-form.vue +++ b/src/components/equ-add-form.vue @@ -261,8 +261,8 @@ areaCode: this.selectcode, switchName: this.name, - areaRow:this.cur_item?.row, - areaCell:this.cur_item?.cell, + areaRow:this.cur_item?.row?this.cur_item?.row:-1, + areaCell:this.cur_item?.cell?this.cur_item?.cell:-1, }, }; -- Gitblit v1.9.3