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
ce97a652
Commit
ce97a652
authored
Jul 11, 2020
by
林生雨
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'zx/gmFlutter' into 'test'
Zx/gm flutter See merge request
!31
parents
ce35066f
1e388f3c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
56 additions
and
52 deletions
+56
-52
LevelOneItem.dart
lib/ClueModel/page/levelOne/LevelOneItem.dart
+0
-0
LevelOneList.dart
lib/ClueModel/page/levelOne/LevelOneList.dart
+6
-4
LevelOnePage.dart
lib/ClueModel/page/levelOne/LevelOnePage.dart
+20
-30
LevelTwoPage.dart
lib/ClueModel/page/levelTwo/LevelTwoPage.dart
+15
-10
PlanItem.dart
lib/ClueModel/page/plan/PlanItem.dart
+8
-5
PlanPage.dart
lib/ClueModel/page/plan/PlanPage.dart
+5
-1
PlanOverviewBean.dart
lib/ClueModel/server/entity/PlanOverviewBean.dart
+2
-2
No files found.
lib/ClueModel/page/levelOne/LevelOneItem.dart
View file @
ce97a652
This diff is collapsed.
Click to expand it.
lib/ClueModel/page/levelOne/LevelOneList.dart
View file @
ce97a652
...
...
@@ -140,15 +140,17 @@ class LevelOneListState extends State<LevelOneList>
}
},
compare:
()
{
Map
<
String
,
dynamic
>
map
=
{
"business_id"
:
"
${widget.planId}
"
,
"planId"
:
widget
.
planId
,
"planType"
:
widget
.
index
==
0
?
1
:
2
};
RouterCenterImpl
().
findMainRouter
().
jumpPage
(
context
,
widget
.
index
==
0
?
"level_one_plan_compare"
:
"level_two_plan_compare"
,
{
"planId"
:
widget
.
planId
,
"planType"
:
widget
.
index
==
0
?
1
:
2
},
map
,
false
);
},
);
...
...
lib/ClueModel/page/levelOne/LevelOnePage.dart
View file @
ce97a652
...
...
@@ -319,10 +319,9 @@ class LevelOneState extends BaseState<LevelOnePage>
child:
baseText
(
"
${(_model.planoverItem.positiveRate.contains(".") ? _model.planoverItem.positiveRate.split(".")[0] : _model.planoverItem.positiveRate).replaceAll("%", "")}
"
,
20
,
Color
(
0xffFF5963
),
bold:
true
),
Color
(
0xffFF5963
)),
),
baseText
(
"%"
,
1
0
,
Color
(
0xffFF5963
)),
baseText
(
"%"
,
1
1
,
Color
(
0xffFF5963
)),
],
),
),
...
...
@@ -367,7 +366,7 @@ class LevelOneState extends BaseState<LevelOnePage>
fontSize:
14
,
color:
Color
(
0xff282828
),
fontStyle:
FontStyle
.
normal
,
fontWeight:
FontWeight
.
w
5
00
),
fontWeight:
FontWeight
.
w
4
00
),
),
),
Container
(
...
...
@@ -416,8 +415,7 @@ class LevelOneState extends BaseState<LevelOnePage>
Widget
explain
()
{
List
<
Widget
>
list
=
[];
list
.
add
(
Container
(
height:
18
,
margin:
EdgeInsets
.
only
(
top:
0
,
bottom:
10
),
height:
31
,
child:
Row
(
children:
<
Widget
>[
baseText
(
"项目说明"
,
15
,
Color
(
0xff282828
)),
...
...
@@ -426,11 +424,13 @@ class LevelOneState extends BaseState<LevelOnePage>
),
GestureDetector
(
onTap:
()
{
RouterCenterImpl
().
findMainRouter
().
jumpPage
(
context
,
"level_one_plan_instruction"
,
{
"planId"
:
widget
.
planId
},
false
);
Map
<
String
,
dynamic
>
map
=
{
"business_id"
:
"
${widget.planId}
"
,
"planId"
:
widget
.
planId
};
RouterCenterImpl
()
.
findMainRouter
()
.
jumpPage
(
context
,
"level_one_plan_instruction"
,
map
,
false
);
},
behavior:
HitTestBehavior
.
opaque
,
child:
baseText
(
"了解更多"
,
12
,
Color
(
0xff3FB5AF
)),
...
...
@@ -439,13 +439,9 @@ class LevelOneState extends BaseState<LevelOnePage>
),
));
if
(
_model
.
planoverItem
!=
null
)
{
int
index
=
0
;
_model
.
planoverItem
.
explanationAttrs
.
forEach
((
element
)
{
list
.
add
(
Container
(
margin:
EdgeInsets
.
only
(
bottom:
index
==
_model
.
planoverItem
.
explanationAttrs
.
length
-
1
?
0
:
15
),
margin:
EdgeInsets
.
only
(
bottom:
15
),
child:
Row
(
children:
<
Widget
>[
Container
(
...
...
@@ -514,11 +510,14 @@ class LevelOneState extends BaseState<LevelOnePage>
GestureDetector
(
behavior:
HitTestBehavior
.
opaque
,
onTap:
()
{
RouterCenterImpl
().
findMainRouter
().
jumpPage
(
context
,
"level_two_plan_compare"
,
{
"planType"
:
1
,
"planId"
:
widget
.
planId
},
false
);
Map
<
String
,
dynamic
>
map
=
{
"business_id"
:
"
${widget.planId}
"
,
"planId"
:
widget
.
planId
,
"planType"
:
1
};
RouterCenterImpl
()
.
findMainRouter
()
.
jumpPage
(
context
,
"level_two_plan_compare"
,
map
,
false
);
},
child:
Container
(
margin:
EdgeInsets
.
only
(
left:
21
),
...
...
@@ -559,7 +558,6 @@ class LevelOneState extends BaseState<LevelOnePage>
},
child:
Container
(
width:
ScreenUtil
().
setWidth
(
137
),
margin:
EdgeInsets
.
only
(
left:
20
),
height:
40
,
decoration:
BoxDecoration
(
color:
Color
(
0xff51CDC7
),
...
...
@@ -578,14 +576,6 @@ class LevelOneState extends BaseState<LevelOnePage>
.
jumpPage
(
context
,
"show_login"
,
null
,
true
);
return
;
}
Map
<
String
,
dynamic
>
map
=
{
"page_name"
:
"level_one_plan_deatil"
,
"referrer_link"
:
[],
"popup_name"
:
"interested_plan"
};
RouterCenterImpl
()
.
findMainRouter
()
.
buriedEvent
(
"popup_view"
,
map
);
DiscussLowPricePopView
.
showPopView
(
context
,
widget
.
PAGE_NAME
,
"
${widget.planId}
"
,
""
,
""
);
},
...
...
lib/ClueModel/page/levelTwo/LevelTwoPage.dart
View file @
ce97a652
...
...
@@ -391,11 +391,13 @@ class LevelTwoState extends BaseState<LevelTwoPage>
),
GestureDetector
(
onTap:
()
{
RouterCenterImpl
().
findMainRouter
().
jumpPage
(
context
,
"level_one_plan_instruction"
,
{
"planId"
:
widget
.
planId
},
false
);
Map
<
String
,
dynamic
>
map
=
{
"business_id"
:
"
${widget.planId}
"
,
"planId"
:
widget
.
planId
,
};
RouterCenterImpl
()
.
findMainRouter
()
.
jumpPage
(
context
,
"level_one_plan_instruction"
,
map
,
false
);
},
behavior:
HitTestBehavior
.
opaque
,
child:
baseText
(
"了解更多"
,
12
,
Color
(
0xff3FB5AF
)),
...
...
@@ -471,11 +473,14 @@ class LevelTwoState extends BaseState<LevelTwoPage>
GestureDetector
(
behavior:
HitTestBehavior
.
opaque
,
onTap:
()
{
RouterCenterImpl
().
findMainRouter
().
jumpPage
(
context
,
"level_two_plan_compare"
,
{
"planType"
:
2
,
"planId"
:
widget
.
planId
},
false
);
Map
<
String
,
dynamic
>
map
=
{
"business_id"
:
"
${widget.planId}
"
,
"planId"
:
widget
.
planId
,
"planType"
:
2
};
RouterCenterImpl
()
.
findMainRouter
()
.
jumpPage
(
context
,
"level_two_plan_compare"
,
map
,
false
);
},
child:
Container
(
margin:
EdgeInsets
.
only
(
left:
21
),
...
...
lib/ClueModel/page/plan/PlanItem.dart
View file @
ce97a652
...
...
@@ -163,11 +163,14 @@ class PlanItem extends StatelessWidget {
}
RouterCenterImpl
().
findMainRouter
().
buriedEvent
(
"on_click_card"
,
map
);
RouterCenterImpl
().
findMainRouter
().
jumpPage
(
context
,
"level_one_plan_detail"
,
{
"planId"
:
plans
.
id
,
"title"
:
"
${plans.name}
"
},
false
);
Map
<
String
,
dynamic
>
buriedMap
=
{
"business_id"
:
"
${plans.id}
"
,
"planId"
:
plans
.
id
,
"title"
:
"
${plans.name}
"
};
RouterCenterImpl
()
.
findMainRouter
()
.
jumpPage
(
context
,
"level_one_plan_detail"
,
buriedMap
,
false
);
}));
}
}
lib/ClueModel/page/plan/PlanPage.dart
View file @
ce97a652
...
...
@@ -202,7 +202,7 @@ class PlanState extends BaseState<PlanPage> with TickerProviderStateMixin {
leftPos:
data
.
data
[
0
],
topPos:
data
.
data
[
1
],
width:
MediaQuery
.
of
(
context
).
size
.
width
,
maxHeight:
45
*
_model
.
sortList
.
length
,
maxHeight:
45
*
_model
.
sortList
.
length
,
listener:
sortMenuListener
,
child:
SortView
(
_model
.
sortList
,
_model
.
sortPos
,
(
index
)
{
clickIndexOther
(
1
);
...
...
@@ -444,7 +444,9 @@ class PlanState extends BaseState<PlanPage> with TickerProviderStateMixin {
"rank_type"
:
"0"
,
"id"
:
"
${data.data[0].id}
"
,
"title"
:
"
${data.data[0].name}
"
,
"business_id"
:
"
${data.data[0].id}
"
,
};
RouterCenterImpl
()
.
findMainRouter
()
.
jumpPage
(
context
,
"favor_plan"
,
map
,
false
);
...
...
@@ -473,7 +475,9 @@ class PlanState extends BaseState<PlanPage> with TickerProviderStateMixin {
"rank_type"
:
"1"
,
"id"
:
"
${data.data[1].id}
"
,
"title"
:
"
${data.data[1].name}
"
,
"business_id"
:
"
${data.data[1].id}
"
,
};
RouterCenterImpl
()
.
findMainRouter
()
.
jumpPage
(
context
,
"hot_plan"
,
map
,
false
);
...
...
lib/ClueModel/server/entity/PlanOverviewBean.dart
View file @
ce97a652
...
...
@@ -5,8 +5,8 @@
class
PlanOverViewBean
{
int
error
;
String
message
;
Map
extra
;
Map
errorExtra
;
Null
extra
;
Null
errorExtra
;
UserType
userType
;
PlanOverData
data
;
...
...
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