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
2d647ca1
Commit
2d647ca1
authored
Jul 29, 2020
by
lujunye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修正收支统计bug
parent
344cc73f
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
6 deletions
+8
-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/收支统计/ShouZhiTongJiViewController.swift
...orm/ViewController/收支统计/ShouZhiTongJiViewController.swift
+2
-2
GeliBusinessPlatform/ViewController/货拉拉/运单详情/cell/HLLTopCell.swift
...essPlatform/ViewController/货拉拉/运单详情/cell/HLLTopCell.swift
+5
-3
No files found.
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
View file @
2d647ca1
No preview for this file type
GeliBusinessPlatform/ViewController/代客下单(货运)/下运单/XiaYunDanViewController.swift
View file @
2d647ca1
This diff is collapsed.
Click to expand it.
GeliBusinessPlatform/ViewController/代客下单(货运)/下运单/XiaYunDanViewController.xib
View file @
2d647ca1
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<document
type=
"com.apple.InterfaceBuilder3.CocoaTouch.XIB"
version=
"3.0"
toolsVersion=
"16097"
targetRuntime=
"iOS.CocoaTouch"
propertyAccessControl=
"none"
useAutolayout=
"YES"
useTraitCollections=
"YES"
useSafeAreas=
"YES"
colorMatched=
"YES"
>
<document
type=
"com.apple.InterfaceBuilder3.CocoaTouch.XIB"
version=
"3.0"
toolsVersion=
"16097
.2
"
targetRuntime=
"iOS.CocoaTouch"
propertyAccessControl=
"none"
useAutolayout=
"YES"
useTraitCollections=
"YES"
useSafeAreas=
"YES"
colorMatched=
"YES"
>
<device
id=
"retina6_5"
orientation=
"portrait"
appearance=
"light"
/>
<device
id=
"retina6_5"
orientation=
"portrait"
appearance=
"light"
/>
<dependencies>
<dependencies>
<deployment
identifier=
"iOS"
/>
<deployment
identifier=
"iOS"
/>
...
...
GeliBusinessPlatform/ViewController/收支统计/ShouZhiTongJiViewController.swift
View file @
2d647ca1
...
@@ -72,8 +72,8 @@ class ShouZhiTongJiViewController: BaseViewController,UITableViewDelegate,UITabl
...
@@ -72,8 +72,8 @@ class ShouZhiTongJiViewController: BaseViewController,UITableViewDelegate,UITabl
self
.
bottomHolder
.
remove
(
at
:
1
)
self
.
bottomHolder
.
remove
(
at
:
1
)
}
}
if
model
.
data
?
.
expend
?
.
temp_purchase
!=
nil
{
if
model
.
data
?
.
expend
?
.
temp_purchase
!=
nil
{
self
.
bottom
Ar
r
.
insert
(
"
\(
model
.
data
!.
expend
!.
temp_purchase
!
)
"
,
at
:
1
)
self
.
bottom
Holde
r
.
insert
(
"
\(
model
.
data
!.
expend
!.
temp_purchase
!
)
"
,
at
:
1
)
self
.
bottom
Ar
r
.
remove
(
at
:
2
)
self
.
bottom
Holde
r
.
remove
(
at
:
2
)
}
}
if
model
.
data
?
.
expend
?
.
salary
!=
nil
{
if
model
.
data
?
.
expend
?
.
salary
!=
nil
{
self
.
bottomHolder
.
insert
(
"
\(
model
.
data
!.
expend
!.
salary
!
)
"
,
at
:
2
)
self
.
bottomHolder
.
insert
(
"
\(
model
.
data
!.
expend
!.
salary
!
)
"
,
at
:
2
)
...
...
GeliBusinessPlatform/ViewController/货拉拉/运单详情/cell/HLLTopCell.swift
View file @
2d647ca1
...
@@ -68,14 +68,16 @@ class HLLTopCell: UITableViewCell,UIScrollViewDelegate {
...
@@ -68,14 +68,16 @@ class HLLTopCell: UITableViewCell,UIScrollViewDelegate {
self
.
selectionStyle
=
.
none
self
.
selectionStyle
=
.
none
}
override
func
layoutIfNeeded
()
{
super
.
layoutIfNeeded
()
scrollView
=
UIScrollView
(
frame
:
scViewBg
.
bounds
)
scrollView
=
UIScrollView
(
frame
:
scViewBg
.
bounds
)
scViewBg
.
addSubview
(
scrollView
!
)
scViewBg
.
addSubview
(
scrollView
!
)
scrollView
?
.
isPagingEnabled
=
true
scrollView
?
.
isPagingEnabled
=
true
scrollView
?
.
showsHorizontalScrollIndicator
=
false
scrollView
?
.
showsHorizontalScrollIndicator
=
false
scrollView
?
.
delegate
=
self
scrollView
?
.
delegate
=
self
}
override
func
layoutIfNeeded
()
{
super
.
layoutIfNeeded
()
var
num
=
datas
.
count
-
1
var
num
=
datas
.
count
-
1
if
num
>
5
{
if
num
>
5
{
num
=
5
num
=
5
...
...
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