修改完成

This commit is contained in:
启星
2025-09-11 18:25:41 +08:00
parent 349cab1499
commit 35709d4e8e
67 changed files with 1344 additions and 223 deletions

View File

@@ -27,6 +27,7 @@
#import "QXMineNetwork.h"
#import "QXHelpViewController.h"
#import "QXInviteViewController.h"
#import "QXChatViewController.h"
@interface QXMineViewController ()<UITableViewDelegate,UITableViewDataSource,QXMineServiceCellDelegate,QXMainHeaderViewDelegate>
@property (nonatomic,strong)QXMainHeaderView *tableHeaderView;
@@ -207,6 +208,14 @@
-(void)gotoService{
QXHelpViewController *webvc = [[QXHelpViewController alloc] init];
[self.navigationController pushViewController:webvc animated:YES];
// QXChatViewController *vc = [[QXChatViewController alloc] init];
// TUIChatConversationModel *data = [[TUIChatConversationModel alloc] init];
// data.userID = @"@RBT#u88";
// data.title = @"小秘机器人";
// data.faceUrl = @"http://md.qxmier.com/data/avatar/head_pic.png";
// vc.data = data;
// [self.navigationController pushViewController:vc animated:YES];
}