Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
supplier
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王宇航
supplier
Commits
098f219a
Commit
098f219a
authored
Jul 22, 2021
by
jason
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码同步
parent
9cd1b8c8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
component-supply-chain/src/main/java/com/gingersoft/supply_chain/mvp/ui/adapter/dishes/DishesGroupNode.java
+1
-1
component-supply-chain/src/main/java/com/gingersoft/supply_chain/mvp/ui/fragment/DishesFragment.java
+2
-2
No files found.
component-supply-chain/src/main/java/com/gingersoft/supply_chain/mvp/ui/adapter/dishes/DishesGroupNode.java
View file @
098f219a
...
...
@@ -123,7 +123,7 @@ public class DishesGroupNode extends BaseExpandNode{
@Nullable
@Override
public
List
<
BaseNode
>
getChildNode
()
{
return
dishNodes
;
return
childNode
;
}
}
component-supply-chain/src/main/java/com/gingersoft/supply_chain/mvp/ui/fragment/DishesFragment.java
View file @
098f219a
...
...
@@ -86,11 +86,11 @@ public class DishesFragment extends BaseSupplyChainFragment<DishesPresenter> imp
List
<
BaseNode
>
secondNodeList
=
new
ArrayList
<>();
for
(
int
n
=
0
;
n
<=
3
;
n
++)
{
DishNode
seNode
=
new
DishNode
(
secondNodeList
,
"Second Node "
+
n
);
DishNode
seNode
=
new
DishNode
(
secondNodeList
);
secondNodeList
.
add
(
seNode
);
}
DishesGroupNode
entity
=
new
DishesGroupNode
(
secondNodeList
,
"First Node "
+
i
);
DishesGroupNode
entity
=
new
DishesGroupNode
(
secondNodeList
);
// 模拟 默认第0个是展开的
entity
.
setExpanded
(
i
==
0
);
...
...
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