Browse Source

更新资源文件

liufl5 4 years ago
parent
commit
2aedb87023
33 changed files with 192 additions and 40 deletions
  1. 2 0
      IPUCommon/IPUMobile.framework/Headers/IPUAppDelegate.h
  2. 3 7
      IPUCommon/IPUMobile.framework/Headers/IPUCommonTool.h
  3. 3 1
      IPUCommon/IPUMobile.framework/Headers/IPUMobileDelegate.h
  4. 9 1
      IPUCommon/IPUMobile.framework/Headers/IPUPluginManager.h
  5. BIN
      IPUCommon/IPUMobile.framework/IPUMobile
  6. BIN
      IPUCommon/IPUMobile.framework/Info.plist
  7. 5 0
      IPUCommon/IPUMobileFunc.framework/Headers/IPUBasicPlugin.h
  8. 22 0
      IPUCommon/IPUMobileFunc.framework/Headers/IPUClipBoardPlugin.h
  9. 2 0
      IPUCommon/IPUMobileFunc.framework/Headers/IPUMobileFunc.h
  10. 1 0
      IPUCommon/IPUMobileFunc.framework/Headers/IPUMobileUIPlugin.h
  11. 19 0
      IPUCommon/IPUMobileFunc.framework/Headers/IPUSysLocationPlugin.h
  12. 38 0
      IPUCommon/IPUMobileFunc.framework/Headers/IPUSysLocationUtil.h
  13. 39 6
      IPUCommon/IPUMobileFunc.framework/Headers/IPUTipsHUDPlugin.h
  14. BIN
      IPUCommon/IPUMobileFunc.framework/IPUMobileFunc
  15. BIN
      IPUCommon/IPUMobileFunc.framework/Info.plist
  16. 18 2
      IPUMobileFunc/IPUMobileFunc.xcodeproj/project.pbxproj
  17. 2 0
      IPUMobileFunc/IPUMobileFunc/IPUMobileFunc.h
  18. 1 1
      display-center/ReactNative/node_modules/react-native-camera/ios/RNCamera.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  19. 1 1
      display-center/ReactNative/node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  20. 1 1
      display-center/ReactNative/node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  21. 1 1
      display-center/ReactNative/node_modules/react-native-webview/ios/RNCWebView.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  22. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/ART/ART.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  23. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/CameraRoll/RCTCameraRoll.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  24. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/Image/RCTImage.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  25. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  26. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  27. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  28. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  29. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/Text/RCTText.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  30. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  31. 7 7
      display-center/ReactNative/node_modules/react-native/React/React.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  32. 8 2
      display-center/Res/config/mobile-action.xml
  33. BIN
      display-center/display-center.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate

+ 2 - 0
IPUCommon/IPUMobile.framework/Headers/IPUAppDelegate.h

@ -44,4 +44,6 @@
44 44
/// 自定义http-header参数
45 45
- (NSDictionary *)setURLRequestHeader;
46 46
47
- (BOOL)openScreenshotListenser;
48
47 49
@end

+ 3 - 7
IPUCommon/IPUMobile.framework/Headers/IPUCommonTool.h

@ -105,6 +105,9 @@ NS_ASSUME_NONNULL_BEGIN
105 105
 */
106 106
+ (BOOL)checkPrice:(NSString *)price;
107 107
108
//判断刘海屏系列
109
+ (BOOL)isFringeSeries;
110
108 111
109 112
+ (NSMutableAttributedString *)fetchAttributedText1:(NSString *)text1
110 113
                                              Text2:(NSString *)text2
@ -134,13 +137,6 @@ NS_ASSUME_NONNULL_BEGIN
134 137
+(CGFloat)widthScale:(CGFloat)num;
135 138
+(CGFloat)heightScale:(CGFloat)num;
136 139
137
/**
138
 是否是刘海屏系列
139
 
140
 @return <#return value description#>
141
 */
142
+ (BOOL)isFringeSeries;
143
144 140
+ (BOOL)isNull:(id)param;
145 141
146 142
+ (BOOL)isNullWithString:(NSString *)str;

+ 3 - 1
IPUCommon/IPUMobile.framework/Headers/IPUMobileDelegate.h

@ -9,7 +9,7 @@
9 9
#import <Foundation/Foundation.h>
10 10
#import <IPUFoundation/IPUFoundation.h>
11 11
12
@class IPUMobileWebView;
12
@class IPUMobileWebView, IPUViewController;
13 13
14 14
@protocol IPUCallbackProtocol, IPUWebViewProtocol;
15 15
@ -119,4 +119,6 @@ typedef id<IPUCallbackProtocol, IPUWebViewProtocol> IPUCommonWebView;
119 119
120 120
- (void)reload;
121 121
122
- (IPUViewController *)getVieController;
123
122 124
@end

+ 9 - 1
IPUCommon/IPUMobile.framework/Headers/IPUPluginManager.h

@ -8,7 +8,7 @@
8 8
9 9
#import <Foundation/Foundation.h>
10 10
11
@protocol IPUMobileDelegate;
11
#import "IPUMobileDelegate.h"
12 12
13 13
@class IPUPlugin;
14 14
@ -18,11 +18,19 @@
18 18
         action:(NSString *)action
19 19
      parameter:(NSString *)param
20 20
       callback:(NSString *)callbackId;
21
22
+ (void)execute:(id <IPUMobileDelegate>)mobileDelegate
23
        webView:(IPUCommonWebView)webView
24
         action:(NSString *)action
25
      parameter:(NSString *)param
26
       callback:(NSString *)callbackId;
21 27
    
22 28
+ (void)execute:(id <IPUMobileDelegate>)mobileDelegate
23 29
         action:(NSString *)action
24 30
     arrayParam:(nullable NSArray *)arrayParam
25 31
       callback:(nullable NSString *)callbackId;
32
33
26 34
    
27 35
+ (IPUPlugin *)getPlugin:(NSString *)className mobileDelegate:(id <IPUMobileDelegate>)mobileDelegate;
28 36
    

BIN
IPUCommon/IPUMobile.framework/IPUMobile


BIN
IPUCommon/IPUMobile.framework/Info.plist


+ 5 - 0
IPUCommon/IPUMobileFunc.framework/Headers/IPUBasicPlugin.h

@ -96,4 +96,9 @@
96 96
 */
97 97
- (void)getTerminalType:(NSArray *)param;
98 98
99
/*
100
 设置状态栏颜色
101
 */
102
-(void)resetStatusBarColor:(NSArray *)param;
103
99 104
@end

+ 22 - 0
IPUCommon/IPUMobileFunc.framework/Headers/IPUClipBoardPlugin.h

@ -0,0 +1,22 @@
1
//
2
//     ***   * * * *  *     *
3
//     *    *     *  *     *
4
//    *    * * * *  *     *
5
//   *    *        *     *
6
// ***   *        * * * *
7
//
8
//  IPUClipBoardPlugin.h
9
//  IPUShow
10
//  Created by Benny (AsiaInfo PRD IPU) on 2020/7/1 10:47.
11
//  Copyright © 2020 Asiainfo. All rights reserved.
12
//
13
        
14
#import <IPUMobile/IPUMobile.h>
15
16
@interface IPUClipBoardPlugin : IPUPlugin
17
18
/// 复制文案等内容到剪贴板,结果 -> success:callback("复制内容"), fail: error("Copy Failed")
19
/// @param params [{"type" : "类型:0-text", "content" : "Copied Content"}]
20
- (void)copyContentToClipBoard:(NSArray *)params;
21
22
@end

+ 2 - 0
IPUCommon/IPUMobileFunc.framework/Headers/IPUMobileFunc.h

@ -57,3 +57,5 @@ FOUNDATION_EXPORT const unsigned char IPUMobileFuncVersionString[];
57 57
#import <IPUMobileFunc/IPUQRCodePlugin.h>
58 58
#import <IPUMobileFunc/IPUSocialPlugin.h>
59 59
#import <IPUMobileFunc/IPUBMapPlugin.h>
60
61
#import <IPUMobileFunc/IPUSysLocationPlugin.h>

+ 1 - 0
IPUCommon/IPUMobileFunc.framework/Headers/IPUMobileUIPlugin.h

@ -94,6 +94,7 @@
94 94
- (void)closeWindow:(NSArray *)param;
95 95
96 96
- (void)openSlidingMenu:(NSArray *)param;
97
- (void)closeSlidingMenu:(NSArray *)param;
97 98
98 99
- (void)getPage:(NSArray *)param;
99 100

+ 19 - 0
IPUCommon/IPUMobileFunc.framework/Headers/IPUSysLocationPlugin.h

@ -0,0 +1,19 @@
1
//
2
//  IPUSysLocationPlugin.h
3
//  WadeMobileFunc
4
//
5
//  Created by Mac on 2020/1/9.
6
//  Copyright © 2020 asiainfo. All rights reserved.
7
//
8
9
#import <IPUMobile/IPUMobile.h>
10
11
@interface IPUSysLocationPlugin : IPUPlugin
12
13
/*
14
 系统定位功能(苹果原生)
15
 */
16
-(void)sysLocation:(NSArray *)param;
17
18
@end
19

+ 38 - 0
IPUCommon/IPUMobileFunc.framework/Headers/IPUSysLocationUtil.h

@ -0,0 +1,38 @@
1
//
2
//  IPUSysLocationUtil.h
3
//  WadeMobileFunc
4
//
5
//  Created by Mac on 2020/1/9.
6
//  Copyright © 2020 asiainfo. All rights reserved.
7
//
8
9
#import <Foundation/Foundation.h>
10
#import <CoreLocation/CoreLocation.h>
11
12
@interface IPUSysLocationUtil : NSObject<CLLocationManagerDelegate>
13
{
14
    CLLocationManager *locationmanager;//定位服务
15
}
16
@property(nonatomic,copy)void(^locationCompletion)(BOOL isSuccess);
17
@property(nonatomic,strong)NSString *longitude;//经度
18
@property(nonatomic,strong)NSString *latitude;//维度
19
@property(nonatomic,strong)NSString *altitude;//海拔高度
20
@property(nonatomic,strong)NSString *verticalAccuracy;//垂直精度
21
@property(nonatomic,strong)NSString *horizontalAccuracy;//水平精度
22
@property(nonatomic,strong)NSString *timestamp;
23
@property(nonatomic,strong)NSString * simulateLocationCode;//0:使用模拟定位;其余为未使用模拟定位
24
25
//@property(nonatomic,strong)NSString *country;//国家
26
//@property(nonatomic,strong)NSString *countryCode;//国家编码
27
//@property(nonatomic,strong)NSString *province;//省份
28
//@property(nonatomic,strong)NSString *city;//城市
29
//@property(nonatomic,strong)NSString *district;//区
30
//@property(nonatomic,strong)NSString *adCode;//邮政编码
31
//@property(nonatomic,strong)NSString *street;//街道
32
//@property(nonatomic,strong)NSString *locationDesc;//位置描述
33
34
+(instancetype) sharedInstance;
35
-(void)getLocationWithCompletion:(void(^)(BOOL isSuccess))completion;
36
37
@end
38

+ 39 - 6
IPUCommon/IPUMobileFunc.framework/Headers/IPUTipsHUDPlugin.h

@ -12,23 +12,56 @@
12 12
/*
13 13
 外部JS访问:显示加载提示框
14 14
 */
15
- (void)showLoadingHUD:(NSArray *)params;
16
15
-(void)showLoadingHUD:(NSArray *)params;
17 16
/*
18 17
 外部JS访问:隐藏加载提示框
19 18
 */
20
- (void)hideLoadingHUD:(NSArray *)params;
21
19
-(void)hideLoadingHUD:(NSArray *)params;
22 20
/*
23 21
 外部JS访问:显示一个带文字的提示框,持续指定时长后隐藏
24 22
 params[0]:提示的文字内容(字符串类型,不能为空)
25 23
 params[1]:提示框显示的时长(可为空,默认持续1秒)
26 24
 */
27
- (void)showTextHUD:(NSArray *)params;
25
-(void)showTextHUD:(NSArray *)params;
26
27
/*
28
 外部JS访问:显示一个可动态配置的弹出框,内容与确认按钮必须显示,标题与取消按钮通过参数配置决定是否显示
29
 params[0]:提示框内容(字符串类型,不能为空)
30
 params[1]:提示框标题(字符串类型,可以为空)
31
 params[2]:是否显示两个按钮“取消、确认”供选择(布尔类型,true—取消、确认,false—确认)
32
 params[3]:提示框文字颜色设置(数组类型,第一个为普通颜色值,第二个为提亮颜色值)
33
 */
34
-(void)showCustomAlert:(NSArray *)params;
35
36
/*
37
 外部JS访问:显示一个带输入框的弹出框,内容、输入框、“取消、提交”按钮是必须显示的,标题通过参数配置决定是否显示
38
 params[0]:提示框内容(字符串类型,不能为空)
39
 params[1]:提示框标题(字符串类型,可以为空)
40
 params[2]:输入文字内容是否为暗文(布尔类型,true为暗文,false为明文)
41
 params[3]:提示框文字颜色设置(数组类型,第一个为普通颜色值,第二个为提亮颜色值)
42
 */
43
-(void)showInputAlert:(NSArray *)params;
44
45
/*
46
 外部JS访问:显示一个带“成功图标+文字”的提示框,持续指定时长后隐藏
47
 params[0]:提示框显示的时长(可为空,默认持续2秒)
48
 */
49
-(void)showSuccessHUD:(NSArray *)params;
50
51
/*
52
 外部JS访问:显示一个带“失败图标+文字”的提示框,持续指定时长后隐藏
53
 params[0]:提示框显示的时长(可为空,默认持续2秒)
54
 */
55
-(void)showFailHUD:(NSArray *)params;
56
57
/*
58
 内部IOS访问:显示一个自定义视图
59
 */
60
-(void)showHUDWithCustomView:(UIView *)view;
28 61
29 62
/*
30 63
 内部IOS访问:显示一个带文字的提示框,持续指定时长后隐藏
31 64
 */
32
- (void)showHUDWithText:(NSString *)txt DisplayTime:(NSTimeInterval)time;
65
-(void)showHUDWithText:(NSString *)txt DisplayTime:(NSTimeInterval)time;
33 66
34 67
@end

BIN
IPUCommon/IPUMobileFunc.framework/IPUMobileFunc


BIN
IPUCommon/IPUMobileFunc.framework/Info.plist


+ 18 - 2
IPUMobileFunc/IPUMobileFunc.xcodeproj/project.pbxproj

@ -7,12 +7,16 @@
7 7
	objects = {
8 8
9 9
/* Begin PBXBuildFile section */
10
		04449840267997680024A808 /* IPUSysLocationUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 0444983E267997680024A808 /* IPUSysLocationUtil.m */; };
11
		04449841267997680024A808 /* IPUSysLocationUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0444983F267997680024A808 /* IPUSysLocationUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
12
		04449844267997990024A808 /* IPUSysLocationPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 04449842267997990024A808 /* IPUSysLocationPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
13
		04449845267997990024A808 /* IPUSysLocationPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 04449843267997990024A808 /* IPUSysLocationPlugin.m */; };
10 14
		045994D124247BBF0002F4A3 /* IPUScreenCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 045994CF24247BBF0002F4A3 /* IPUScreenCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };
11 15
		045994D224247BBF0002F4A3 /* IPUScreenCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 045994D024247BBF0002F4A3 /* IPUScreenCapture.m */; };
12 16
		04C30B9B22E6ADF200BA7B68 /* IPUTipsHUDPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 04C30B9922E6ADF200BA7B68 /* IPUTipsHUDPlugin.m */; };
13 17
		04C30B9C22E6ADF200BA7B68 /* IPUTipsHUDPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C30B9A22E6ADF200BA7B68 /* IPUTipsHUDPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
14 18
		B2074DAB24AC82B700E6E924 /* IPUClipBoardPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = B2074DA924AC82B700E6E924 /* IPUClipBoardPlugin.m */; };
15
		B2074DAC24AC82B700E6E924 /* IPUClipBoardPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B2074DAA24AC82B700E6E924 /* IPUClipBoardPlugin.h */; };
19
		B2074DAC24AC82B700E6E924 /* IPUClipBoardPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B2074DAA24AC82B700E6E924 /* IPUClipBoardPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
16 20
		B20C89662397AFF900471783 /* IPUVideoRecordPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B20C89642397AFF900471783 /* IPUVideoRecordPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
17 21
		B20C89672397AFF900471783 /* IPUVideoRecordPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = B20C89652397AFF900471783 /* IPUVideoRecordPlugin.m */; };
18 22
		B2445C7A21F17374007AB82E /* IPUUploadDownloadPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B2445C7821F17374007AB82E /* IPUUploadDownloadPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
@ -103,6 +107,10 @@
103 107
/* End PBXBuildFile section */
104 108
105 109
/* Begin PBXFileReference section */
110
		0444983E267997680024A808 /* IPUSysLocationUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IPUSysLocationUtil.m; sourceTree = "<group>"; };
111
		0444983F267997680024A808 /* IPUSysLocationUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IPUSysLocationUtil.h; sourceTree = "<group>"; };
112
		04449842267997990024A808 /* IPUSysLocationPlugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IPUSysLocationPlugin.h; sourceTree = "<group>"; };
113
		04449843267997990024A808 /* IPUSysLocationPlugin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IPUSysLocationPlugin.m; sourceTree = "<group>"; };
106 114
		045994CF24247BBF0002F4A3 /* IPUScreenCapture.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IPUScreenCapture.h; sourceTree = "<group>"; };
107 115
		045994D024247BBF0002F4A3 /* IPUScreenCapture.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IPUScreenCapture.m; sourceTree = "<group>"; };
108 116
		04C30B9922E6ADF200BA7B68 /* IPUTipsHUDPlugin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IPUTipsHUDPlugin.m; sourceTree = "<group>"; };
@ -218,6 +226,8 @@
218 226
		B2445C7C21F177E8007AB82E /* Utils */ = {
219 227
			isa = PBXGroup;
220 228
			children = (
229
				0444983F267997680024A808 /* IPUSysLocationUtil.h */,
230
				0444983E267997680024A808 /* IPUSysLocationUtil.m */,
221 231
				B2445C7D21F1780E007AB82E /* IPUDatabaseHelper.h */,
222 232
				B2445C7E21F1780E007AB82E /* IPUDatabaseHelper.m */,
223 233
				B28E566E21F1870B00422D15 /* IPUAFNetworkingUtil.h */,
@ -250,6 +260,8 @@
250 260
		B256EE2421F079F10096C446 /* IPUMobileFunc */ = {
251 261
			isa = PBXGroup;
252 262
			children = (
263
				04449842267997990024A808 /* IPUSysLocationPlugin.h */,
264
				04449843267997990024A808 /* IPUSysLocationPlugin.m */,
253 265
				04C30B9A22E6ADF200BA7B68 /* IPUTipsHUDPlugin.h */,
254 266
				04C30B9922E6ADF200BA7B68 /* IPUTipsHUDPlugin.m */,
255 267
				B2D71A0122A6528F00604504 /* Implementation */,
@ -379,6 +391,9 @@
379 391
			isa = PBXHeadersBuildPhase;
380 392
			buildActionMask = 2147483647;
381 393
			files = (
394
				04449844267997990024A808 /* IPUSysLocationPlugin.h in Headers */,
395
				04449841267997680024A808 /* IPUSysLocationUtil.h in Headers */,
396
				B2074DAC24AC82B700E6E924 /* IPUClipBoardPlugin.h in Headers */,
382 397
				B26A20A023CD9E0200844692 /* UIImage+IPUCompress.h in Headers */,
383 398
				045994D124247BBF0002F4A3 /* IPUScreenCapture.h in Headers */,
384 399
				04C30B9C22E6ADF200BA7B68 /* IPUTipsHUDPlugin.h in Headers */,
@ -419,7 +434,6 @@
419 434
				B2464E8822CF2C4E002A159E /* IPUNetworkUtil.h in Headers */,
420 435
				B28E56AE21F1B4EA00422D15 /* IPUBasicPlugin.h in Headers */,
421 436
				B28E56AA21F1B3CE00422D15 /* IPUAudioPlugin.h in Headers */,
422
				B2074DAC24AC82B700E6E924 /* IPUClipBoardPlugin.h in Headers */,
423 437
				B256EE2721F079F10096C446 /* IPUMobileFunc.h in Headers */,
424 438
				B20C89662397AFF900471783 /* IPUVideoRecordPlugin.h in Headers */,
425 439
				B2445C7A21F17374007AB82E /* IPUUploadDownloadPlugin.h in Headers */,
@ -504,6 +518,7 @@
504 518
				B28E56BB21F1BAB800422D15 /* IPULocationPlugin.m in Sources */,
505 519
				045994D224247BBF0002F4A3 /* IPUScreenCapture.m in Sources */,
506 520
				B26A20A123CD9E0200844692 /* UIImage+IPUCompress.m in Sources */,
521
				04449845267997990024A808 /* IPUSysLocationPlugin.m in Sources */,
507 522
				B281A33B22CC85B600D69B25 /* IPUAudioPlugin.m in Sources */,
508 523
				B28E568721F1A76E00422D15 /* IPUCustomCameraPlugin.m in Sources */,
509 524
				B271C33A22ADE4AC0030F3C9 /* IPUUploadDownloadUtil.m in Sources */,
@ -534,6 +549,7 @@
534 549
				B28E56C721F1BCCA00422D15 /* IPUMobileUIPlugin.m in Sources */,
535 550
				B28E567B21F18C1C00422D15 /* UIImage+Rotate.m in Sources */,
536 551
				B2EB0F1D23A7287E00EBB34D /* IPUAMapPlugin.m in Sources */,
552
				04449840267997680024A808 /* IPUSysLocationUtil.m in Sources */,
537 553
				B264A22C22B33EB200714D0D /* IPUDatabaseUtil.m in Sources */,
538 554
				B29195532539307500AD4C60 /* IPUServiceChangePlugin.m in Sources */,
539 555
				04C30B9B22E6ADF200BA7B68 /* IPUTipsHUDPlugin.m in Sources */,

+ 2 - 0
IPUMobileFunc/IPUMobileFunc/IPUMobileFunc.h

@ -57,3 +57,5 @@ FOUNDATION_EXPORT const unsigned char IPUMobileFuncVersionString[];
57 57
#import <IPUMobileFunc/IPUQRCodePlugin.h>
58 58
#import <IPUMobileFunc/IPUSocialPlugin.h>
59 59
#import <IPUMobileFunc/IPUBMapPlugin.h>
60
61
#import <IPUMobileFunc/IPUSysLocationPlugin.h>

+ 1 - 1
display-center/ReactNative/node_modules/react-native-camera/ios/RNCamera.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,7 +12,7 @@
12 12
		<key>RNCamera.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>25</integer>
15
			<integer>26</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,7 +12,7 @@
12 12
		<key>RNGestureHandler.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>22</integer>
15
			<integer>23</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -17,7 +17,7 @@
17 17
		<key>RNVectorIcons.xcscheme_^#shared#^_</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>23</integer>
20
			<integer>24</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native-webview/ios/RNCWebView.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,7 +12,7 @@
12 12
		<key>RNCWebView.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>24</integer>
15
			<integer>25</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/ART/ART.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -17,7 +17,7 @@
17 17
		<key>ART.xcscheme_^#shared#^_</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>30</integer>
20
			<integer>31</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/CameraRoll/RCTCameraRoll.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,7 +12,7 @@
12 12
		<key>RCTCameraRoll.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>29</integer>
15
			<integer>30</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/Image/RCTImage.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -17,7 +17,7 @@
17 17
		<key>RCTImage.xcscheme_^#shared#^_</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>27</integer>
20
			<integer>28</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -17,7 +17,7 @@
17 17
		<key>RCTLinking.xcscheme_^#shared#^_</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>31</integer>
20
			<integer>32</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -17,7 +17,7 @@
17 17
		<key>RCTAnimation.xcscheme_^#shared#^_</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>28</integer>
20
			<integer>29</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -17,7 +17,7 @@
17 17
		<key>RCTNetwork.xcscheme_^#shared#^_</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>26</integer>
20
			<integer>27</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -17,7 +17,7 @@
17 17
		<key>RCTSettings.xcscheme_^#shared#^_</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>32</integer>
20
			<integer>33</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/Text/RCTText.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -17,7 +17,7 @@
17 17
		<key>RCTText.xcscheme_^#shared#^_</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>33</integer>
20
			<integer>34</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -17,7 +17,7 @@
17 17
		<key>RCTWebSocket.xcscheme_^#shared#^_</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>34</integer>
20
			<integer>35</integer>
21 21
		</dict>
22 22
		<key>fishhook-tvOS.xcscheme_^#shared#^_</key>
23 23
		<dict>
@ -32,7 +32,7 @@
32 32
		<key>fishhook.xcscheme_^#shared#^_</key>
33 33
		<dict>
34 34
			<key>orderHint</key>
35
			<integer>35</integer>
35
			<integer>36</integer>
36 36
		</dict>
37 37
	</dict>
38 38
</dict>

+ 7 - 7
display-center/ReactNative/node_modules/react-native/React/React.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -27,7 +27,7 @@
27 27
		<key>cxxreact.xcscheme_^#shared#^_</key>
28 28
		<dict>
29 29
			<key>orderHint</key>
30
			<integer>37</integer>
30
			<integer>38</integer>
31 31
		</dict>
32 32
		<key>double-conversion-tvOS.xcscheme_^#shared#^_</key>
33 33
		<dict>
@ -42,7 +42,7 @@
42 42
		<key>double-conversion.xcscheme_^#shared#^_</key>
43 43
		<dict>
44 44
			<key>orderHint</key>
45
			<integer>40</integer>
45
			<integer>41</integer>
46 46
		</dict>
47 47
		<key>jsi-tvOS.xcscheme_^#shared#^_</key>
48 48
		<dict>
@ -57,7 +57,7 @@
57 57
		<key>jsi.xcscheme_^#shared#^_</key>
58 58
		<dict>
59 59
			<key>orderHint</key>
60
			<integer>41</integer>
60
			<integer>42</integer>
61 61
		</dict>
62 62
		<key>jsiexecutor-tvOS.xcscheme_^#shared#^_</key>
63 63
		<dict>
@ -72,7 +72,7 @@
72 72
		<key>jsiexecutor.xcscheme_^#shared#^_</key>
73 73
		<dict>
74 74
			<key>orderHint</key>
75
			<integer>42</integer>
75
			<integer>43</integer>
76 76
		</dict>
77 77
		<key>jsinspector-tvOS.xcscheme_^#shared#^_</key>
78 78
		<dict>
@ -87,7 +87,7 @@
87 87
		<key>jsinspector.xcscheme_^#shared#^_</key>
88 88
		<dict>
89 89
			<key>orderHint</key>
90
			<integer>38</integer>
90
			<integer>39</integer>
91 91
		</dict>
92 92
		<key>third-party-tvOS.xcscheme_^#shared#^_</key>
93 93
		<dict>
@ -102,7 +102,7 @@
102 102
		<key>third-party.xcscheme_^#shared#^_</key>
103 103
		<dict>
104 104
			<key>orderHint</key>
105
			<integer>39</integer>
105
			<integer>40</integer>
106 106
		</dict>
107 107
		<key>yoga-tvOS.xcscheme_^#shared#^_</key>
108 108
		<dict>
@ -117,7 +117,7 @@
117 117
		<key>yoga.xcscheme_^#shared#^_</key>
118 118
		<dict>
119 119
			<key>orderHint</key>
120
			<integer>36</integer>
120
			<integer>37</integer>
121 121
		</dict>
122 122
	</dict>
123 123
</dict>

+ 8 - 2
display-center/Res/config/mobile-action.xml

@ -9,11 +9,11 @@
9 9
    <action name="getNetInfo"    class="IPUBasicPlugin" method="getNetInfo"/>
10 10
    <action name="getSysInfo"    class="IPUBasicPlugin" method="getSysInfo"/>
11 11
    <action name="deviceVersion" class="IPUBasicPlugin" method="deviceVersion"/>
12
    <action name="getAppVersion" class="IPUBasicPlugin" method="getAppVersion"/>
12 13
    <action name="openApp"       class="IPUBasicPlugin" method="openApp"/>
13 14
    <action name="openOuterApp"  class="IPUBasicPlugin" method="openOuterApp"/>
14 15
    <action name="close"         class="IPUBasicPlugin" method="closeApp"/>
15
    
16
    <!-- get ternimal type -->
16
    <action name="setStatusBarColor"  class="IPUBasicPlugin"   method="resetStatusBarColor"/>
17 17
    <action name="getTerminalType"  class="IPUBasicPlugin" method="getTerminalType"/>
18 18
    
19 19
    <action name="getDate"      class="IPUMobileUIPlugin" method="date"/>
@ -30,6 +30,7 @@
30 30
    
31 31
    <action name="openPage"     class="IPUMobileUIPlugin" method="openPage"/>
32 32
    <action name="openUrl"      class="IPUMobileUIPlugin" method="openUrl"/>
33
    <action name="closeUrl"      class="IPUMobileUIPlugin" method="closeUrl"/>
33 34
    <action name="openTemplate" class="IPUMobileUIPlugin" method="openTemplate"/>
34 35
    <action name="getTemplate"  class="IPUMobileUIPlugin" method="getTemplate"/>
35 36
    <action name="loadPage"     class="IPUMobileUIPlugin" method="loadPage"/>
@ -93,6 +94,7 @@
93 94
    <action name="openWindow"       class="IPUMobileUIPlugin" method="openWindow"/>
94 95
    <action name="closeWindow"      class="IPUMobileUIPlugin" method="closeWindow"/>
95 96
    <action name="openSlidingMenu"  class="IPUMobileUIPlugin" method="openSlidingMenu"/>
97
    <action name="closeSlidingMenu"  class="IPUMobileUIPlugin" method="closeSlidingMenu"/>
96 98
    
97 99
    <action name="shareByBluetooth" class="IPUNetworkPlugin" method="shareByBluetooth"/>
98 100
    <action name="httpDownloadFile" class="IPUNetworkPlugin" method="httpDownloadFile"/>
@ -252,4 +254,8 @@
252 254
    <action name="showInputAlert"  class="IPUTipsHUDPlugin"   method="showInputAlert"/>
253 255
    <action name="showSuccessToast"  class="IPUTipsHUDPlugin"   method="showSuccessHUD"/>
254 256
    <action name="showFailToast"  class="IPUTipsHUDPlugin"   method="showFailHUD"/>
257
    
258
    <!--系统定位-->
259
    <action name="sysLocation"  class="IPUSysLocationPlugin"   method="sysLocation"/>
260
    
255 261
</actions>

BIN
display-center/display-center.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate