Browse Source

1.应用需求 ---处理中

huangxiaodong 9 months ago
parent
commit
3ffbbaac11

+ 3 - 15
创维盒子/code/NAS/NasPreviewAPPViewController.m

@@ -70,7 +70,7 @@
     _didSelectListArr = [NSMutableArray new];
     
     //数据埋点
-    [[netWorkManager shareInstance] DataEmbeddingPointBy:2 withEventValue:@"Video"];
+    //[[netWorkManager shareInstance] DataEmbeddingPointBy:2 withEventValue:@"Video"];
 }
 
 - (void)drawAnyView{
@@ -735,7 +735,7 @@
 #pragma mark 设置标题
 - (void)setTitleAfterGetdiskFun
 {
-    [self setTitleLabelText:NSLocalizedString(@"my_set_no_video_upload",nil)];
+    [self setTitleLabelText:NSLocalizedString(@"nas_app_title",nil)];
 }
 
 - (void)viewWillAppear:(BOOL)animated
@@ -847,19 +847,7 @@
 - (void)getFileListFun:(BOOL)isMoreDataType
 {
     NSMutableDictionary*paraDict = [NSMutableDictionary new];
-    [paraDict setValue:@"apk" forKey:@"type"];
     
-    NSArray *diskNameArr = [_defaultDiskPath componentsSeparatedByString:@"/"];
-    if(diskNameArr && diskNameArr.count >= 2){
-        
-        NSString *name = diskNameArr.lastObject;
-        if(name.length == 0)
-        {
-            name = diskNameArr[diskNameArr.count -2];
-        }
-        
-        [paraDict setValue:name forKey:@"path"];
-    }
     
 //    if(!isMoreDataType){
 //        self.pageIndex = 0;
@@ -874,7 +862,7 @@
     [self showNewIndicatorHaveStrWithCanBack:YES canTouch:NO showText:NSLocalizedString(@"common_loading_tip",nil)];
     
     KWeakSelf
-    [[netWorkManager shareInstance] cloudPhoneGETCallBackCode:@"getFileList" Parameters:paraDict success:^(id  _Nonnull responseObject) {
+    [[netWorkManager shareInstance] cloudPhoneGETCallBackCode:@"getInstalledApk" Parameters:paraDict success:^(id  _Nonnull responseObject) {
         //[weakSelf.tableView.mj_footer endRefreshing];
         [weakSelf removeNewIndicatorHaveStr];
         NASFileAudioModel*NASFileAudioMod = [[NASFileAudioModel alloc] initWithDictionary:responseObject error:nil];

+ 16 - 0
创维盒子/code/NAS/view/appInstallTypeView.h

@@ -0,0 +1,16 @@
+//
+//  appInstallTypeView.h
+//  双子星云手机
+//
+//  Created by xd h on 2025/3/13.
+//
+
+#import <UIKit/UIKit.h>
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface appInstallTypeView : UIView
+
+@end
+
+NS_ASSUME_NONNULL_END

+ 26 - 0
创维盒子/code/NAS/view/appInstallTypeView.m

@@ -0,0 +1,26 @@
+//
+//  appInstallTypeView.m
+//  双子星云手机
+//
+//  Created by xd h on 2025/3/13.
+//
+
+#import "appInstallTypeView.h"
+
+@implementation appInstallTypeView
+
+- (id)initWithFrame:(CGRect)frame{
+    self = [super initWithFrame:frame];
+    
+    self.backgroundColor = [UIColor clearColor];//[UIColor hwColor:@"#000000" alpha:0.6];
+    [self drawAnyView];
+    
+    return self;
+}
+
+-(void)drawAnyView
+{
+    
+}
+
+@end

+ 12 - 0
创维盒子/双子星云手机.xcodeproj/project.pbxproj

@@ -673,6 +673,10 @@
 		6B6ABEF32BFF6B4C00480BAC /* boxSaveFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B6ABEF12BFF6B4C00480BAC /* boxSaveFileManager.m */; };
 		6B6ABEF42BFF6B4C00480BAC /* boxSaveFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6ABEF02BFF6B4C00480BAC /* boxSaveFileManager.h */; };
 		6B6ABEF52BFF6B4C00480BAC /* boxSaveFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B6ABEF12BFF6B4C00480BAC /* boxSaveFileManager.m */; };
+		6B6C97FD2D82B5290095A4CA /* appInstallTypeView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6C97FB2D82B5290095A4CA /* appInstallTypeView.h */; };
+		6B6C97FE2D82B5290095A4CA /* appInstallTypeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B6C97FC2D82B5290095A4CA /* appInstallTypeView.m */; };
+		6B6C97FF2D82B5290095A4CA /* appInstallTypeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B6C97FC2D82B5290095A4CA /* appInstallTypeView.m */; };
+		6B6C98002D82B5290095A4CA /* appInstallTypeView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6C97FB2D82B5290095A4CA /* appInstallTypeView.h */; };
 		6B6D42EB2C290A06006CAE3A /* cloudPhoneSetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B6D42EA2C290A06006CAE3A /* cloudPhoneSetView.m */; };
 		6B6D42EC2C290A06006CAE3A /* cloudPhoneSetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6D42E92C290A06006CAE3A /* cloudPhoneSetView.h */; };
 		6B6D42ED2C290A06006CAE3A /* cloudPhoneSetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B6D42EA2C290A06006CAE3A /* cloudPhoneSetView.m */; };
@@ -1987,6 +1991,8 @@
 		6B6ABEEB2BFF5B2F00480BAC /* receiveSaveRecordTableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = receiveSaveRecordTableView.m; sourceTree = "<group>"; };
 		6B6ABEF02BFF6B4C00480BAC /* boxSaveFileManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = boxSaveFileManager.h; sourceTree = "<group>"; };
 		6B6ABEF12BFF6B4C00480BAC /* boxSaveFileManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = boxSaveFileManager.m; sourceTree = "<group>"; };
+		6B6C97FB2D82B5290095A4CA /* appInstallTypeView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = appInstallTypeView.h; sourceTree = "<group>"; };
+		6B6C97FC2D82B5290095A4CA /* appInstallTypeView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = appInstallTypeView.m; sourceTree = "<group>"; };
 		6B6D42E92C290A06006CAE3A /* cloudPhoneSetView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cloudPhoneSetView.h; sourceTree = "<group>"; };
 		6B6D42EA2C290A06006CAE3A /* cloudPhoneSetView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = cloudPhoneSetView.m; sourceTree = "<group>"; };
 		6B6D42EF2C295BCD006CAE3A /* playerSetView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = playerSetView.h; sourceTree = "<group>"; };
@@ -3370,6 +3376,8 @@
 				6B92836B2C4B94310098CC75 /* errorAlertTool.m */,
 				6B0A75DD2C4CA3D300DCB32D /* audioPlayingView.h */,
 				6B0A75DE2C4CA3D300DCB32D /* audioPlayingView.m */,
+				6B6C97FB2D82B5290095A4CA /* appInstallTypeView.h */,
+				6B6C97FC2D82B5290095A4CA /* appInstallTypeView.m */,
 			);
 			path = view;
 			sourceTree = "<group>";
@@ -4246,6 +4254,7 @@
 				6B72725F2B0E240F00C03F87 /* uploadFileRecordTableView.h in Headers */,
 				6B5D867A2C22D6E9008D25EA /* NASLastFileView.h in Headers */,
 				6B7DDF302C424B5E00EBDFDD /* RcGameWQKeyChain.h in Headers */,
+				6B6C98002D82B5290095A4CA /* appInstallTypeView.h in Headers */,
 				181E84F72A8F451D00292B96 /* MineViewCell.h in Headers */,
 				6B49BFC82C943CE800E17406 /* webRtcManager+downloadNasFile.h in Headers */,
 				6B2C1E4E2C070ADE00FDCF82 /* ZFUtilities.h in Headers */,
@@ -4548,6 +4557,7 @@
 				6BD506E02B9576A4006E7CB0 /* uploadFileRecordTableView.h in Headers */,
 				6B5D867B2C22D6E9008D25EA /* NASLastFileView.h in Headers */,
 				6B7DDF312C424B5E00EBDFDD /* RcGameWQKeyChain.h in Headers */,
+				6B6C97FD2D82B5290095A4CA /* appInstallTypeView.h in Headers */,
 				6BD506E12B9576A4006E7CB0 /* MineViewCell.h in Headers */,
 				6B49BFC92C943CE800E17406 /* webRtcManager+downloadNasFile.h in Headers */,
 				6B2C1E4F2C070ADE00FDCF82 /* ZFUtilities.h in Headers */,
@@ -5243,6 +5253,7 @@
 				6BD507AE2B9576A4006E7CB0 /* fileTransferPathCheckTableViewCell.m in Sources */,
 				6BD507B02B9576A4006E7CB0 /* ModifyPWDSecondViewController.m in Sources */,
 				6BD507B12B9576A4006E7CB0 /* photoPreViewBottomView.m in Sources */,
+				6B6C97FE2D82B5290095A4CA /* appInstallTypeView.m in Sources */,
 				6B9037232CC0BD58009795F0 /* nonWifiTipInRecordView.m in Sources */,
 				6BD507B22B9576A4006E7CB0 /* TipsQRCodeViewController.m in Sources */,
 				6BD507B32B9576A4006E7CB0 /* JSONAPI.m in Sources */,
@@ -5627,6 +5638,7 @@
 				6B5B60732B3D8098009A2AE2 /* fileTransferPathCheckTableViewCell.m in Sources */,
 				18F9CB002ABD3643003FF71A /* ModifyPWDSecondViewController.m in Sources */,
 				6B0582702AFF692700D37290 /* photoPreViewBottomView.m in Sources */,
+				6B6C97FF2D82B5290095A4CA /* appInstallTypeView.m in Sources */,
 				6B9037202CC0BD58009795F0 /* nonWifiTipInRecordView.m in Sources */,
 				1868201E2AB97BE1005702A6 /* TipsQRCodeViewController.m in Sources */,
 				183AE6092A89CE3C00B11CB0 /* JSONAPI.m in Sources */,