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
b096ad32
Commit
b096ad32
authored
Jul 28, 2020
by
lujunye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
货拉拉界面合并
parent
17c75f24
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
6 deletions
+14
-6
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
...erdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
GeliBusinessPlatform/ViewController/代客下单(货运)/下运单/XiaYunDanViewController.swift
...ViewController/代客下单(货运)/下运单/XiaYunDanViewController.swift
+0
-0
GeliBusinessPlatform/ViewController/代客下单(货运)/下运单/XiaYunDanViewController.xib
...m/ViewController/代客下单(货运)/下运单/XiaYunDanViewController.xib
+1
-1
GeliBusinessPlatform/ViewController/工作中心/WorkCViewController.swift
...essPlatform/ViewController/工作中心/WorkCViewController.swift
+2
-2
GeliBusinessPlatform/ViewController/货拉拉/运单详情/cell/HLLTopCell.swift
...essPlatform/ViewController/货拉拉/运单详情/cell/HLLTopCell.swift
+11
-3
No files found.
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
View file @
b096ad32
No preview for this file type
GeliBusinessPlatform/ViewController/代客下单(货运)/下运单/XiaYunDanViewController.swift
View file @
b096ad32
This diff is collapsed.
Click to expand it.
GeliBusinessPlatform/ViewController/代客下单(货运)/下运单/XiaYunDanViewController.xib
View file @
b096ad32
...
...
@@ -271,7 +271,7 @@
</label>
<tableView
clipsSubviews=
"YES"
contentMode=
"scaleToFill"
alwaysBounceVertical=
"YES"
style=
"grouped"
separatorStyle=
"default"
rowHeight=
"-1"
estimatedRowHeight=
"-1"
sectionHeaderHeight=
"18"
estimatedSectionHeaderHeight=
"-1"
sectionFooterHeight=
"18"
estimatedSectionFooterHeight=
"-1"
translatesAutoresizingMaskIntoConstraints=
"NO"
id=
"IhS-vZ-6YK"
>
<rect
key=
"frame"
x=
"0.0"
y=
"44"
width=
"414"
height=
"714"
/>
<color
key=
"backgroundColor"
systemColor=
"systemBackgroundColor"
cocoaTouchSystemColor=
"whiteColor
"
/>
<color
key=
"backgroundColor"
name=
"app底色
"
/>
<connections>
<outlet
property=
"dataSource"
destination=
"-1"
id=
"VHp-ja-2wO"
/>
<outlet
property=
"delegate"
destination=
"-1"
id=
"atq-MI-T7V"
/>
...
...
GeliBusinessPlatform/ViewController/工作中心/WorkCViewController.swift
View file @
b096ad32
...
...
@@ -488,8 +488,8 @@ class WorkCViewController: BaseViewController, UITableViewDelegate, UITableViewD
// HUD.flash(.label("敬请期待"),delay: 1.2)
// return
//
let vc = XiaYunDanViewController()
let
vc
=
ShouZhiTongJiViewController
()
let
vc
=
XiaYunDanViewController
()
//
let vc = ShouZhiTongJiViewController()
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
return
case
76
:
//收支详情
...
...
GeliBusinessPlatform/ViewController/货拉拉/运单详情/cell/HLLTopCell.swift
View file @
b096ad32
...
...
@@ -40,7 +40,11 @@ class HLLTopCell: UITableViewCell,UIScrollViewDelegate {
if
scrollView
.
contentOffset
.
x
/
scViewBg
.
bounds
.
size
.
width
<=
0
{
leftBtn
.
isHidden
=
true
}
if
scrollView
.
contentOffset
.
x
/
scViewBg
.
bounds
.
size
.
width
>=
CGFloat
(
datas
.
count
-
1
)
{
var
num
=
datas
.
count
-
1
if
num
>
4
{
num
=
4
}
if
scrollView
.
contentOffset
.
x
/
scViewBg
.
bounds
.
size
.
width
>=
CGFloat
(
num
)
{
rightBtn
.
isHidden
=
true
}
...
...
@@ -72,9 +76,13 @@ class HLLTopCell: UITableViewCell,UIScrollViewDelegate {
}
override
func
layoutIfNeeded
()
{
super
.
layoutIfNeeded
()
scrollView
?
.
contentSize
=
CGSize
(
width
:
(
scViewBg
.
bounds
.
size
.
width
)
*
CGFloat
(
datas
.
count
),
height
:
(
scViewBg
.
bounds
.
size
.
height
))
var
num
=
datas
.
count
-
1
if
num
>
5
{
num
=
5
}
scrollView
?
.
contentSize
=
CGSize
(
width
:
(
scViewBg
.
bounds
.
size
.
width
)
*
CGFloat
(
num
),
height
:
(
scViewBg
.
bounds
.
size
.
height
))
for
i
in
0
..<
datas
.
count
{
for
i
in
0
..<
num
{
let
view
=
UIView
(
frame
:
CGRect
(
x
:
CGFloat
(
i
)
*
(
scViewBg
.
bounds
.
size
.
width
),
y
:
0
,
width
:
scViewBg
.
bounds
.
size
.
width
,
height
:
scViewBg
.
bounds
.
size
.
height
))
if
i
%
2
==
0
{
view
.
backgroundColor
=
UIColor
.
blue
...
...
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