Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
GMAILab
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
GMAILab
Commits
bd4cf773
Commit
bd4cf773
authored
Jul 16, 2020
by
乔金柱
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ajp/7.29.0_web' into 'master'
Ajp/7.29.0 web See merge request
!17
parents
dd553d6b
5927ccea
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
31 additions
and
27 deletions
+31
-27
GMBasicInfoCardView.m
...lasses/ToFace/ToFaceDoctorList/View/GMBasicInfoCardView.m
+11
-5
GMTofaceOrderDetailViewController.m
...eOrder/ViewController/GMTofaceOrderDetailViewController.m
+3
-4
GMDiagnosisWorkingTableChooseIdentityView.m
...ingTable/View/GMDiagnosisWorkingTableChooseIdentityView.m
+1
-1
GMDiagnosisWorkingTableHeaderView.m
...ace/WorkingTable/View/GMDiagnosisWorkingTableHeaderView.m
+0
-1
GMBusinessReportListController.m
...kingTable/ViewController/GMBusinessReportListController.m
+6
-6
GMBusinessReportResultController.m
...ngTable/ViewController/GMBusinessReportResultController.m
+2
-2
GMEditQuesPartViewModel.m
...s/ToFace/WorkingTable/ViewModel/GMEditQuesPartViewModel.m
+0
-1
GMDiagnoseRecordWebViewController.h
...ToFace/diagnoseRecord/GMDiagnoseRecordWebViewController.h
+1
-1
GMDiagnoseRecordWebViewController.m
...ToFace/diagnoseRecord/GMDiagnoseRecordWebViewController.m
+7
-6
No files found.
GMAILab/Classes/ToFace/ToFaceDoctorList/View/GMBasicInfoCardView.m
View file @
bd4cf773
...
@@ -21,9 +21,8 @@
...
@@ -21,9 +21,8 @@
#import "GMToFacePayPopView.h"
#import "GMToFacePayPopView.h"
#import "RequestHeader.h"
#import "RequestHeader.h"
#import <GMBase/GMBaseTool.h>
#import <GMBase/GMBaseTool.h>
#import <GMBaseWeb/GMBaseWeb-Swift.h>
#import <GMBaseWeb/GMWebutil.h>
@import
GMBaseWeb
;
#define counsellorAllHeight (573 + UIView.safeAreaInsetsBottom)
#define counsellorAllHeight (573 + UIView.safeAreaInsetsBottom)
#define counsellorHalfHeight (366 + UIView.safeAreaInsetsBottom)
#define counsellorHalfHeight (366 + UIView.safeAreaInsetsBottom)
#define doctorAllHeight (573 + UIView.safeAreaInsetsBottom)
#define doctorAllHeight (573 + UIView.safeAreaInsetsBottom)
...
@@ -32,7 +31,7 @@
...
@@ -32,7 +31,7 @@
#define dispatchAllHeight (522 + UIView.safeAreaInsetsBottom)
#define dispatchAllHeight (522 + UIView.safeAreaInsetsBottom)
#define dispatchHalfHeight (286 + UIView.safeAreaInsetsBottom)
#define dispatchHalfHeight (286 + UIView.safeAreaInsetsBottom)
@interface
GMBasicInfoCardView
()
<
WKBaseWebViewDelegate
>
@interface
GMBasicInfoCardView
()
<
GMJSBridgeProtocol
>
@property
(
nonatomic
,
strong
)
GMBaseWebViewComponent
*
webCompent
;
@property
(
nonatomic
,
strong
)
GMBaseWebViewComponent
*
webCompent
;
@property
(
nonatomic
,
strong
)
GMVideoWaitingView
*
waitingView
;
@property
(
nonatomic
,
strong
)
GMVideoWaitingView
*
waitingView
;
@property
(
nonatomic
,
assign
)
int
currentTime
;
@property
(
nonatomic
,
assign
)
int
currentTime
;
...
@@ -130,7 +129,9 @@
...
@@ -130,7 +129,9 @@
}
}
}
}
-
(
void
)
getVideoPermission
:
(
NSDictionary
*
)
data
{
-
(
void
)
getVideoPermission
:
(
NSString
*
)
jsonString
;
{
NSDictionary
*
data
=
[
NSDictionary
dictionaryWithJsonString
:
jsonString
];
//先请求订单接口,付款完成后再进行面诊
//先请求订单接口,付款完成后再进行面诊
self
.
dict
=
[
NSMutableDictionary
dictionaryWithDictionary
:
data
];
self
.
dict
=
[
NSMutableDictionary
dictionaryWithDictionary
:
data
];
self
.
traceId
=
[
GMVideoPhobos
getTraceId
];
self
.
traceId
=
[
GMVideoPhobos
getTraceId
];
...
@@ -166,7 +167,12 @@
...
@@ -166,7 +167,12 @@
[
self
layoutIfNeeded
];
[
self
layoutIfNeeded
];
}
}
-
(
void
)
globalDataLoaded
:
(
NSDictionary
*
)
data
{
-
(
void
)
globalDataLoaded
:
(
NSString
*
)
jsonString
{
if
(
!
[
jsonString
isNonEmpty
])
{
return
;
}
NSDictionary
*
data
=
[
NSDictionary
dictionaryWithJsonString
:
jsonString
];
int
consultation_type
=
[
data
[
@"consultation_type"
]
intValue
];
int
consultation_type
=
[
data
[
@"consultation_type"
]
intValue
];
int
counsellor_type
=
[
data
[
@"counsellor_type"
]
intValue
];
int
counsellor_type
=
[
data
[
@"counsellor_type"
]
intValue
];
NSDictionary
*
dict
=
@{
@"page_name"
:
[
GMBaseTool
getCurrentViewController
].
pageName
,
NSDictionary
*
dict
=
@{
@"page_name"
:
[
GMBaseTool
getCurrentViewController
].
pageName
,
...
...
GMAILab/Classes/ToFace/ToFaceOrder/ViewController/GMTofaceOrderDetailViewController.m
View file @
bd4cf773
...
@@ -13,10 +13,9 @@
...
@@ -13,10 +13,9 @@
#import "GMEndConsultView.h"
#import "GMEndConsultView.h"
#import "RequestHeader.h"
#import "RequestHeader.h"
#import "GMToFaceNetworking.h"
#import "GMToFaceNetworking.h"
#import <GMBaseWeb/GMBaseWeb-Swift.h>
@import
GMBaseWeb
;
#import <WebKit/WebKit.h>
@import
GMHud
;
@import
GMHud
;
@interface
GMTofaceOrderDetailViewController
()
<
WKBaseWebViewDelegate
>
@interface
GMTofaceOrderDetailViewController
()
<
GMJSBridgeProtocol
>
@property
(
nonatomic
,
strong
)
GMComplaintObject
*
complaintObject
;
@property
(
nonatomic
,
strong
)
GMComplaintObject
*
complaintObject
;
@end
@end
...
@@ -72,7 +71,7 @@
...
@@ -72,7 +71,7 @@
view
.
complaintType
=
GMComplaintTypeDoctor
;
view
.
complaintType
=
GMComplaintTypeDoctor
;
view
.
complaintFinish
=
^
(
NSInteger
complaintStatus
)
{
view
.
complaintFinish
=
^
(
NSInteger
complaintStatus
)
{
NSString
*
jsStr
=
[
NSString
stringWithFormat
:
@"window.gm&&window.gm.pack&&window.gm.pack.run('notificReportState')"
];
NSString
*
jsStr
=
[
NSString
stringWithFormat
:
@"window.gm&&window.gm.pack&&window.gm.pack.run('notificReportState')"
];
[
self
.
webCompent
.
webView
e
valuateJavaScript
:
jsStr
completionHandler
:
nil
];
[
self
.
webCompent
.
webView
_safeAsyncE
valuateJavaScript
:
jsStr
completionHandler
:
nil
];
};
};
[[
GMBaseTool
getCurrentViewController
].
view
addSubview
:
view
];
[[
GMBaseTool
getCurrentViewController
].
view
addSubview
:
view
];
}
}
...
...
GMAILab/Classes/ToFace/WorkingTable/View/GMDiagnosisWorkingTableChooseIdentityView.m
View file @
bd4cf773
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
#import "NSString+CalculateSize.h"
#import "NSString+CalculateSize.h"
#import "WMTagObject.h"
#import "WMTagObject.h"
#import <GMBase/GMBaseTool.h>
#import <GMBase/GMBaseTool.h>
#import <GMBaseWeb/GMWebutil.h>
@import
GMBaseWeb
;
@import
GMHud
;
@import
GMHud
;
@import
GMRouter
;
@import
GMRouter
;
...
...
GMAILab/Classes/ToFace/WorkingTable/View/GMDiagnosisWorkingTableHeaderView.m
View file @
bd4cf773
...
@@ -11,7 +11,6 @@
...
@@ -11,7 +11,6 @@
#import "GMGMDiagnosisWorkingTableScrollView.h"
#import "GMGMDiagnosisWorkingTableScrollView.h"
#import "RequestHeader.h"
#import "RequestHeader.h"
#import "GMLibraryHeader.h"
#import "GMLibraryHeader.h"
//#import "WMBrowserViewController.h"
@import
GMRouter
;
@import
GMRouter
;
@interface
GMServiceDataItemView
()
@interface
GMServiceDataItemView
()
@property
(
nonatomic
,
strong
)
UILabel
*
line
;
@property
(
nonatomic
,
strong
)
UILabel
*
line
;
...
...
GMAILab/Classes/ToFace/WorkingTable/ViewController/GMBusinessReportListController.m
View file @
bd4cf773
...
@@ -12,11 +12,10 @@
...
@@ -12,11 +12,10 @@
#import "GMComplaintResultView.h"
#import "GMComplaintResultView.h"
#import "GMComplaintObject.h"
#import "GMComplaintObject.h"
#import "RequestHeader.h"
#import "RequestHeader.h"
#import <GMBaseWeb/GMBaseWeb-Swift.h>
#import <GMFoundation/GMFoundation-umbrella.h>
#import <GMFoundation/GMFoundation-umbrella.h>
@import
GMBaseWeb
;
@import
GMNetworking
;
@import
GMNetworking
;
@import
WebKit
.
WKWebView
;
@interface
GMBusinessReportListController
()
<
GMJSBridgeProtocol
>
@interface
GMBusinessReportListController
()
<
WKBaseWebViewDelegate
>
@end
@end
...
@@ -42,14 +41,15 @@
...
@@ -42,14 +41,15 @@
@"state"
:
@
(
1
)
@"state"
:
@
(
1
)
};
};
NSString
*
jsStr
=
[
NSString
stringWithFormat
:
@"window.gm&&window.gm.pack&&window.gm.pack.run('notificReportState','%@')"
,
[
NSString
convertToBriefJsonString
:
params
]];
NSString
*
jsStr
=
[
NSString
stringWithFormat
:
@"window.gm&&window.gm.pack&&window.gm.pack.run('notificReportState','%@')"
,
[
NSString
convertToBriefJsonString
:
params
]];
[
self
.
webCompent
.
webView
e
valuateJavaScript
:
jsStr
completionHandler
:
nil
];
[
self
.
webCompent
.
webView
_safeAsyncE
valuateJavaScript
:
jsStr
completionHandler
:
nil
];
}
}
-
(
NSString
*
)
moreQueryParameters
{
-
(
NSString
*
)
moreQueryParameters
{
return
[
NSString
stringWithFormat
:
@"&doctor_id=%@&counsellor_id=%@"
,
SafeString
(
self
.
doctorId
),
SafeString
(
self
.
counsellorId
)];
return
[
NSString
stringWithFormat
:
@"&doctor_id=%@&counsellor_id=%@"
,
SafeString
(
self
.
doctorId
),
SafeString
(
self
.
counsellorId
)];
}
}
-
(
void
)
videoDiagnoseComplaint
:
(
NSDictionary
*
)
complaint
{
-
(
void
)
videoDiagnoseComplaint
:
(
NSString
*
)
jsonString
{
NSDictionary
*
complaint
=
[
NSDictionary
dictionaryWithJsonString
:
jsonString
];
GMComplaintResultViewType
complaintStatus
=
[
complaint
[
@"status"
]
integerValue
];
GMComplaintResultViewType
complaintStatus
=
[
complaint
[
@"status"
]
integerValue
];
if
(
complaintStatus
==
GMComplaintResultViewTypeNone
)
{
if
(
complaintStatus
==
GMComplaintResultViewTypeNone
)
{
GMEndConsultView
*
view
=
[[
GMEndConsultView
alloc
]
initWithType
:
GMEndConsultViewTypeDoctorComplaint
starNum
:
0
];
GMEndConsultView
*
view
=
[[
GMEndConsultView
alloc
]
initWithType
:
GMEndConsultViewTypeDoctorComplaint
starNum
:
0
];
...
@@ -60,7 +60,7 @@
...
@@ -60,7 +60,7 @@
@"state"
:
@
(
complaintStatus
)
@"state"
:
@
(
complaintStatus
)
};
};
NSString
*
jsStr
=
[
NSString
stringWithFormat
:
@"window.gm&&window.gm.pack&&window.gm.pack.run('notificReportState','%@')"
,
[
NSString
convertToBriefJsonString
:
params
]];
NSString
*
jsStr
=
[
NSString
stringWithFormat
:
@"window.gm&&window.gm.pack&&window.gm.pack.run('notificReportState','%@')"
,
[
NSString
convertToBriefJsonString
:
params
]];
[
self
.
webCompent
.
webView
e
valuateJavaScript
:
jsStr
completionHandler
:
nil
];
[
self
.
webCompent
.
webView
_safeAsyncE
valuateJavaScript
:
jsStr
completionHandler
:
nil
];
};
};
[[
GMBaseTool
getCurrentViewController
].
view
addSubview
:
view
];
[[
GMBaseTool
getCurrentViewController
].
view
addSubview
:
view
];
}
else
{
}
else
{
...
...
GMAILab/Classes/ToFace/WorkingTable/ViewController/GMBusinessReportResultController.m
View file @
bd4cf773
...
@@ -11,14 +11,14 @@
...
@@ -11,14 +11,14 @@
#import "RequestHeader.h"
#import "RequestHeader.h"
#import "GMAIUploadImagesManager.h"
#import "GMAIUploadImagesManager.h"
//#import "GMUploadImagesManager.h"
//#import "GMUploadImagesManager.h"
#import <GMBaseWeb/GMBaseWeb-Swift.h>
#import <GMbase/GMBaseTool.h>
#import <GMbase/GMBaseTool.h>
@import
GMBaseWeb
;
@import
GMHud
;
@import
GMHud
;
@import
GMNetworking
;
@import
GMNetworking
;
@import
GMFoundation
;
@import
GMFoundation
;
@import
GMAlbum
;
@import
GMAlbum
;
@interface
GMBusinessReportResultController
()
<
WKBaseWebViewDelegate
>
@interface
GMBusinessReportResultController
()
<
GMJSBridgeProtocol
>
@property
(
nonatomic
,
strong
)
UIImage
*
shareImage
;
@property
(
nonatomic
,
strong
)
UIImage
*
shareImage
;
@property
(
nonatomic
,
copy
)
NSString
*
shareUserId
;
@property
(
nonatomic
,
copy
)
NSString
*
shareUserId
;
...
...
GMAILab/Classes/ToFace/WorkingTable/ViewModel/GMEditQuesPartViewModel.m
View file @
bd4cf773
...
@@ -9,7 +9,6 @@
...
@@ -9,7 +9,6 @@
#import "GMEditQuesPartViewModel.h"
#import "GMEditQuesPartViewModel.h"
#import "GMBusinessReportListController.h"
#import "GMBusinessReportListController.h"
#import <GMBase/GMBaseTool.h>
#import <GMBase/GMBaseTool.h>
//#import "WMBrowserViewController.h"
#import "RequestHeader.h"
#import "RequestHeader.h"
@import
GMHud
;
@import
GMHud
;
@import
GMRouter
;
@import
GMRouter
;
...
...
GMAILab/Classes/ToFace/diagnoseRecord/GMDiagnoseRecordWebViewController.h
View file @
bd4cf773
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
// Copyright © 2020 更美互动信息科技有限公司. All rights reserved.
// Copyright © 2020 更美互动信息科技有限公司. All rights reserved.
//
//
#import "GMWebViewController.h"
@import
GMBaseWeb
;
NS_ASSUME_NONNULL_BEGIN
NS_ASSUME_NONNULL_BEGIN
...
...
GMAILab/Classes/ToFace/diagnoseRecord/GMDiagnoseRecordWebViewController.m
View file @
bd4cf773
...
@@ -15,12 +15,12 @@
...
@@ -15,12 +15,12 @@
#import "GMToFaceOrderInfoModel.h"
#import "GMToFaceOrderInfoModel.h"
#import "GMToFaceNetworking.h"
#import "GMToFaceNetworking.h"
#import "NSString+AIJsonData.h"
#import "NSString+AIJsonData.h"
#import <GMBase/GMBase-Swift.h>
//
#import <GMBase/GMBase-Swift.h>
#import "RequestHeader.h"
#import "RequestHeader.h"
#import <GMBaseWeb/GMBaseWeb-Swift.h>
@import
GMBase
;
@import
GMBase
;
@import
WebKit
.
WKWebView
;
@import
GMBaseWeb
;
@interface
GMViewEvaluateModel
:
GMObject
@interface
GMViewEvaluateModel
:
GMObject
//面诊id
//面诊id
@property
(
nonatomic
,
copy
)
NSString
*
consultationId
;
@property
(
nonatomic
,
copy
)
NSString
*
consultationId
;
...
@@ -31,9 +31,10 @@
...
@@ -31,9 +31,10 @@
//页面名称
//页面名称
@property
(
nonatomic
,
copy
)
NSString
*
tabName
;
@property
(
nonatomic
,
copy
)
NSString
*
tabName
;
@end
@end
@implementation
GMViewEvaluateModel
@end
@implementation
GMViewEvaluateModel
@end
@interface
GMDiagnoseRecordWebViewController
()
<
WKBaseWebViewDelegate
>
@interface
GMDiagnoseRecordWebViewController
()
<
GMJSBridgeProtocol
>
@property
(
nonatomic
,
strong
)
GMComplaintObject
*
complaintObject
;
@property
(
nonatomic
,
strong
)
GMComplaintObject
*
complaintObject
;
@property
(
nonatomic
,
assign
)
BOOL
isSureOrder
;
@property
(
nonatomic
,
assign
)
BOOL
isSureOrder
;
...
@@ -103,7 +104,7 @@
...
@@ -103,7 +104,7 @@
}
}
NSString
*
str
=
[
NSDictionary
dictionaryToJson
:
dict
];
NSString
*
str
=
[
NSDictionary
dictionaryToJson
:
dict
];
NSString
*
jsStr
=
[
NSString
stringWithFormat
:
@"window.gm&&window.gm.pack&&window.gm.pack.run('evaluateCallback',%@)"
,
str
];
NSString
*
jsStr
=
[
NSString
stringWithFormat
:
@"window.gm&&window.gm.pack&&window.gm.pack.run('evaluateCallback',%@)"
,
str
];
[
weakSelf
.
webCompent
.
webView
e
valuateJavaScript
:
jsStr
completionHandler
:
nil
];
[
weakSelf
.
webCompent
.
webView
_safeAsyncE
valuateJavaScript
:
jsStr
completionHandler
:
nil
];
};
};
view
.
showComplaint
=
model
.
showComplaint
;
view
.
showComplaint
=
model
.
showComplaint
;
view
.
recordId
=
model
.
consultationId
;
view
.
recordId
=
model
.
consultationId
;
...
@@ -160,7 +161,7 @@
...
@@ -160,7 +161,7 @@
NSDictionary
*
dict
=
@{
@"type"
:
@
(
type
),
@"star"
:
@
(
star
),
@"desc"
:
desc
};
NSDictionary
*
dict
=
@{
@"type"
:
@
(
type
),
@"star"
:
@
(
star
),
@"desc"
:
desc
};
NSString
*
str
=
[
NSDictionary
dictionaryToJson
:
dict
];
NSString
*
str
=
[
NSDictionary
dictionaryToJson
:
dict
];
NSString
*
jsStr
=
[
NSString
stringWithFormat
:
@"window.gm&&window.gm.pack&&window.gm.pack.run('confirmCallback',%@)"
,
str
];
NSString
*
jsStr
=
[
NSString
stringWithFormat
:
@"window.gm&&window.gm.pack&&window.gm.pack.run('confirmCallback',%@)"
,
str
];
[
weakSelf
.
webCompent
.
webView
e
valuateJavaScript
:
jsStr
completionHandler
:
nil
];
[
weakSelf
.
webCompent
.
webView
_safeAsyncE
valuateJavaScript
:
jsStr
completionHandler
:
nil
];
};
};
popView
.
infoModel
=
infoModel
;
popView
.
infoModel
=
infoModel
;
[[
GMBaseTool
mainWindow
]
addSubview
:
popView
];
[[
GMBaseTool
mainWindow
]
addSubview
:
popView
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment