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
e99aba48
Commit
e99aba48
authored
Jul 12, 2020
by
朱翠翠
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'zcc/flutter' into 'test'
Zcc/flutter See merge request
!39
parents
aaa5519f
1b782026
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
.gitignore
.gitignore
+2
-0
PlansCompareFeedItemView.dart
...Model/page/PlansCompareFeed/PlansCompareFeedItemView.dart
+3
-0
PlansCompareFeed.dart
lib/ClueModel/server/entity/PlansCompareFeed.dart
+1
-0
updateAar.sh
updateAar.sh
+1
-1
No files found.
.gitignore
View file @
e99aba48
...
...
@@ -46,3 +46,4 @@ app.*.symbols
# Obfuscation related
app.*.map.json
.updateAar.sh
\ No newline at end of file
lib/ClueModel/page/PlansCompareFeed/PlansCompareFeedItemView.dart
View file @
e99aba48
...
...
@@ -40,6 +40,7 @@ class _PlansCompareFeedItemViewState
}
getItem
()
{
_icon
=
widget
.
plan
.
isChecked
?
_checked
:
_unchecked
;
if
(
widget
.
plan
.
planType
==
1
)
{
return
getFirstLevelItem
();
}
else
{
...
...
@@ -200,12 +201,14 @@ class _PlansCompareFeedItemViewState
onClickCheckBox
(
String
icon
)
{
if
(
icon
==
_checked
)
{
_icon
=
_unchecked
;
widget
.
plan
.
isChecked
=
false
;
}
else
{
if
(
widget
.
_setCompare
.
length
==
2
)
{
NativeToast
.
showNativeToast
(
"请选择最多2个项目进行对比"
);
return
;
}
_icon
=
_checked
;
widget
.
plan
.
isChecked
=
true
;
}
setState
(()
{
widget
.
compareItem
.
checkedItem
(
widget
.
plan
.
planId
);
...
...
lib/ClueModel/server/entity/PlansCompareFeed.dart
View file @
e99aba48
...
...
@@ -86,6 +86,7 @@ class Plans {
String
maxPrice
;
String
projectImage
;
String
guidePrice
;
bool
isChecked
=
false
;
Plans
(
{
this
.
planId
,
...
...
updateAar.sh
View file @
e99aba48
...
...
@@ -17,6 +17,6 @@ rm -rf ${projectDir}/build
flutter build aar
--release
--target-platform
android-arm
#rm -rf /Users/apple/lsy/gengmei_android/gm-flutter/libs/flutterApp.aar
cp
-r
${
projectDir
}
/build/host/outputs/repo/com/example/gm_flutter/flutter_release/1.0/flutter_release-1.0.aar /Users/
apple/lsy/gengmei_android
/gm-flutter/libs/flutterApp.aar
cp
-r
${
projectDir
}
/build/host/outputs/repo/com/example/gm_flutter/flutter_release/1.0/flutter_release-1.0.aar /Users/
zcc/Downloads
/gm-flutter/libs/flutterApp.aar
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