执行修改条件

This commit is contained in:
wuteng 2025-07-08 16:49:35 +08:00
parent 9768f43d27
commit 5213d9fadc
2 changed files with 2 additions and 2 deletions

View File

@ -536,7 +536,7 @@ export default {
/** 修改按钮操作 */
handleUpdate(row) {
//ids去掉空元素
if( row.quoteId || this.ids.filter(Boolean).length>1){
if( row.quoteId || this.ids.filter(Boolean).length>0){
this.resetRefreshId="vipquote-"+this.getUUID();
this.currentId = row.quoteId || this.ids;
this.openForm = true;

View File

@ -529,7 +529,7 @@ export default {
/** 修改按钮操作 */
handleUpdate(row) {
if( row.quoteId || this.ids.filter(Boolean).length>1){
if( row.quoteId || this.ids.filter(Boolean).length>0){
this.currentId = row.quoteId || this.ids;
this.openForm = true;
this.isCopy = false;