From 8ac92718b77e0388db6bdb4d3f6cfb0cc96046ed Mon Sep 17 00:00:00 2001 From: wanghualei Date: Wed, 10 Mar 2021 11:06:44 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E8=87=AA=E5=AE=9A=E4=B9=89=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Podfile | 6 ++---- demo/FINDemoClientHelper.m | 8 ++++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Podfile b/Podfile index 09adb97..788d774 100644 --- a/Podfile +++ b/Podfile @@ -1,13 +1,11 @@ platform :ios, "9.0" -source 'https://github.com/CocoaPods/Specs.git' - inhibit_all_warnings! target "demo" do - pod 'FinApplet' - pod 'FinAppletExt' + pod 'FinApplet', '2.22.4' + pod 'FinAppletExt', '2.22.4' end diff --git a/demo/FINDemoClientHelper.m b/demo/FINDemoClientHelper.m index 54ab7c6..7902883 100644 --- a/demo/FINDemoClientHelper.m +++ b/demo/FINDemoClientHelper.m @@ -56,7 +56,7 @@ static FINDemoClientHelper *instance = nil; NSString *appletId = appletInfo.appId; if ([appletId isEqualToString:@"5facb3a52dcbff00017469bd"]) { FINCustomMenuModel *favModel1 = [[FINCustomMenuModel alloc] init]; - favModel1.menuId = 1001; + favModel1.menuId = @"1001"; favModel1.menuTitle = @"客服"; favModel1.menuIconImage = [UIImage imageNamed:@"minipro_list_service"]; @@ -65,7 +65,7 @@ static FINDemoClientHelper *instance = nil; if ([appletId isEqualToString:@"5fa214a29a6a7900019b5cc1"]) { FINCustomMenuModel *favModel2 = [[FINCustomMenuModel alloc] init]; - favModel2.menuId = 1002; + favModel2.menuId = @"1002"; favModel2.menuTitle = @"收藏"; favModel2.menuIconImage = [UIImage imageNamed:@"minipro_list_collect"]; @@ -73,12 +73,12 @@ static FINDemoClientHelper *instance = nil; } FINCustomMenuModel *favModel1 = [[FINCustomMenuModel alloc] init]; - favModel1.menuId = 1001; + favModel1.menuId = @"1003"; favModel1.menuTitle = @"客服"; favModel1.menuIconImage = [UIImage imageNamed:@"minipro_list_service"]; FINCustomMenuModel *favModel2 = [[FINCustomMenuModel alloc] init]; - favModel2.menuId = 1002; + favModel2.menuId = @"1004"; favModel2.menuTitle = @"收藏"; favModel2.menuIconImage = [UIImage imageNamed:@"minipro_list_collect"];