Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
gm_flutter
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
林生雨
gm_flutter
Commits
04013f83
Commit
04013f83
authored
Jul 07, 2020
by
朱璇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
弹窗接口
parent
4b531f2a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
DiscussLowPricePopView.dart
...lueModel/page/DiscussLowPrice/DiscussLowPricePopView.dart
+6
-2
No files found.
lib/ClueModel/page/DiscussLowPrice/DiscussLowPricePopView.dart
View file @
04013f83
...
...
@@ -18,12 +18,16 @@ class DiscussLowPricePopView {
static
void
showPopView
(
BuildContext
content
,
String
planId
,
String
hospitalId
,
String
doctorId
)
{
BaseCenterPicker
()
..
setPicker
(
_PopView
())
..
setPicker
(
_PopView
(
planId
,
hospitalId
,
doctorId
))
..
show
(
content
);
}
}
class
_PopView
implements
ICenterPicker
{
String
planId
;
String
hospitalId
;
String
doctorId
;
_PopView
(
this
.
planId
,
this
.
hospitalId
,
this
.
doctorId
);
VoidCallback
dismissCallback
;
double
contentWidth
;
DiscussLowPriceModel
_model
=
new
DiscussLowPriceModel
();
...
...
@@ -179,6 +183,6 @@ class _PopView implements ICenterPicker {
@override
void
initState
(
VoidCallback
dismissCall
,
BuildContext
context
)
{
this
.
dismissCallback
=
dismissCall
;
_model
.
fetchPopviewData
(
'1'
,
''
,
'3'
);
_model
.
fetchPopviewData
(
this
.
planId
,
this
.
hospitalId
,
this
.
doctorId
);
}
}
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