Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
GeliBusinessPlatform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ljy
GeliBusinessPlatform
Commits
7b6c5e80
Commit
7b6c5e80
authored
May 27, 2020
by
刘俊宏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
569 iOS:各内容列表,补充“暂无内容”的提示,如订单管理列表为空时。不要显示只显示“点击或上拉加载更多”
parent
81e949aa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
9 deletions
+15
-9
GeliBusinessPlatform.xcworkspace/xcuserdata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate
...ata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
GeliBusinessPlatform/ViewController/仓库管理/WarehoseMangementListVC.swift
...latform/ViewController/仓库管理/WarehoseMangementListVC.swift
+5
-2
GeliBusinessPlatform/ViewController/订单列表/OrderListVC.swift
GeliBusinessPlatform/ViewController/订单列表/OrderListVC.swift
+10
-7
No files found.
GeliBusinessPlatform.xcworkspace/xcuserdata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate
View file @
7b6c5e80
No preview for this file type
GeliBusinessPlatform/ViewController/仓库管理/WarehoseMangementListVC.swift
View file @
7b6c5e80
...
...
@@ -87,8 +87,11 @@ class WarehoseMangementListVC: BaseViewController, UISearchBarDelegate, UITableV
self
.
warehourseArr
.
append
(
model
)
})
self
.
tableV
.
reloadData
()
self
.
tableV
?
.
mj_footer
?
.
endRefreshing
()
}
else
{
self
.
tableV
?
.
mj_footer
?
.
endRefreshingWithNoMoreData
()
}
self
.
tableV
?
.
mj_footer
?
.
endRefreshing
()
})
{
(
error
)
in
self
.
tableV
?
.
mj_footer
?
.
endRefreshing
()
}
...
...
@@ -179,7 +182,7 @@ class WarehoseMangementListVC: BaseViewController, UISearchBarDelegate, UITableV
cell
.
statusLbl
.
text
=
typeArr
[
model
.
w_type
!
]
cell
.
statusLbl
.
isHidden
=
false
cell
.
adrLbl
.
text
=
model
.
w_address
!
cell
.
kuCunLbl
.
text
=
"
\(
model
.
inventory_count
!
)
"
cell
.
kuCunLbl
.
text
=
"
库存位"
+
StringByInt
(
number
:
model
.
inventory_count
!
)
switch
model
.
w_type
{
case
0
:
//异常
...
...
GeliBusinessPlatform/ViewController/订单列表/OrderListVC.swift
View file @
7b6c5e80
...
...
@@ -110,14 +110,17 @@ class OrderListVC: BaseViewController, UITableViewDelegate, UITableViewDataSourc
dic
.
removeValue
(
forKey
:
"end_time"
)
}
orderList
(
dic
,
success
:
{
(
data
)
in
self
.
page
+=
1
let
dataM
=
data
as!
OrderListModel
dataM
.
data
?
.
forEach
({
(
model
)
in
self
.
dataArr
.
append
(
model
)
})
self
.
tableV
.
reloadData
()
self
.
tableV
?
.
mj_footer
?
.
endRefreshing
()
if
dataM
.
data
?
.
count
==
0
{
self
.
tableV
?
.
mj_footer
?
.
endRefreshingWithNoMoreData
()
}
else
{
self
.
page
+=
1
dataM
.
data
?
.
forEach
({
(
model
)
in
self
.
dataArr
.
append
(
model
)
})
self
.
tableV
.
reloadData
()
self
.
tableV
?
.
mj_footer
?
.
endRefreshing
()
}
})
{
(
error
)
in
self
.
tableV
?
.
mj_footer
?
.
endRefreshing
()
...
...
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