From 9bae0a550b450043f501483f89576fdae964b424 Mon Sep 17 00:00:00 2001 From: 涂煌豪 <997058689@qq.com> Date: 星期五, 18 三月 2022 18:43:34 +0800 Subject: [PATCH] Revert "先款后修-修理增加先款标识" --- force-app/main/default/pages/SearchVisitor.page | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/force-app/main/default/pages/SearchVisitor.page b/force-app/main/default/pages/SearchVisitor.page index 4544db5..533f902 100644 --- a/force-app/main/default/pages/SearchVisitor.page +++ b/force-app/main/default/pages/SearchVisitor.page @@ -155,7 +155,7 @@ //2. inovke aws service let contactAwsIds = new Set(); for(var key in contactInfo){ - if(contactInfo[key].lastName.includes(searchByLastName)){ + if(contactInfo[key].lastName.indexOf(searchByLastName) != -1){ contactAwsIds.add(key); } } -- Gitblit v1.9.1