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
2f84b432
Commit
2f84b432
authored
Jan 27, 2021
by
lujunye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
出库修改大致完成
parent
0d926d74
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
47 additions
and
0 deletions
+47
-0
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
...erdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
.../junyelu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
+23
-0
GeliBusinessPlatform/ViewController/1.1入库&出库/出库/CKGmCell.swift
...usinessPlatform/ViewController/1.1入库&出库/出库/CKGmCell.swift
+24
-0
GeliBusinessPlatform/ViewController/1.1入库&出库/出库/CKGmCell.xib
GeliBusinessPlatform/ViewController/1.1入库&出库/出库/CKGmCell.xib
+0
-0
GeliBusinessPlatform/ViewController/1.1入库&出库/出库/NewCKVc.swift
...BusinessPlatform/ViewController/1.1入库&出库/出库/NewCKVc.swift
+0
-0
GeliBusinessPlatform/ViewController/1.1入库&出库/出库/NewCKVc.xib
GeliBusinessPlatform/ViewController/1.1入库&出库/出库/NewCKVc.xib
+0
-0
No files found.
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
View file @
2f84b432
No preview for this file type
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
View file @
2f84b432
...
@@ -3,4 +3,27 @@
...
@@ -3,4 +3,27 @@
uuid =
"4EFF3422-0342-402A-BFF0-17B15851B3EC"
uuid =
"4EFF3422-0342-402A-BFF0-17B15851B3EC"
type =
"0"
type =
"0"
version =
"2.0"
>
version =
"2.0"
>
<Breakpoints>
<BreakpointProxy
BreakpointExtensionID =
"Xcode.Breakpoint.SwiftErrorBreakpoint"
>
<BreakpointContent
uuid =
"F9AAF047-CA09-4A11-834A-7F1E40C91A0A"
shouldBeEnabled =
"Yes"
ignoreCount =
"0"
continueAfterRunningActions =
"No"
>
</BreakpointContent>
</BreakpointProxy>
<BreakpointProxy
BreakpointExtensionID =
"Xcode.Breakpoint.ExceptionBreakpoint"
>
<BreakpointContent
uuid =
"AA5AC940-8A53-441B-9107-A47EED6E312E"
shouldBeEnabled =
"Yes"
ignoreCount =
"0"
continueAfterRunningActions =
"No"
breakpointStackSelectionBehavior =
"1"
scope =
"1"
stopOnStyle =
"0"
>
</BreakpointContent>
</BreakpointProxy>
</Breakpoints>
</Bucket>
</Bucket>
GeliBusinessPlatform/ViewController/1.1入库&出库/出库/CKGmCell.swift
View file @
2f84b432
...
@@ -16,6 +16,7 @@ class CKGmCell: UITableViewCell {
...
@@ -16,6 +16,7 @@ class CKGmCell: UITableViewCell {
@IBOutlet
weak
var
listBg
:
UIView
!
@IBOutlet
weak
var
listBg
:
UIView
!
@IBOutlet
weak
var
titleViewH
:
NSLayoutConstraint
!
@IBOutlet
weak
var
titleViewH
:
NSLayoutConstraint
!
@IBOutlet
weak
var
gys_name_lbl
:
UILabel
!
@IBOutlet
weak
var
detailLbl
:
UILabel
!
@IBOutlet
weak
var
detailLbl
:
UILabel
!
@IBOutlet
weak
var
titleView
:
UIView
!
@IBOutlet
weak
var
titleView
:
UIView
!
var
delegate
:
CKGmCellDelegate
?
var
delegate
:
CKGmCellDelegate
?
...
@@ -56,6 +57,29 @@ class CKGmCell: UITableViewCell {
...
@@ -56,6 +57,29 @@ class CKGmCell: UITableViewCell {
}
}
leftL
.
text
=
"
\(
model
.
batch_id
!
)
"
leftL
.
text
=
"
\(
model
.
batch_id
!
)
"
let
middleL
=
UILabel
()
view
.
addSubview
(
middleL
)
middleL
.
textColor
=
UIColor
(
named
:
"个人中心灰色字体"
)
middleL
.
font
=
UIFont
.
systemFont
(
ofSize
:
13
)
middleL
.
textAlignment
=
.
center
middleL
.
snp
.
makeConstraints
{
(
make
)
in
make
.
centerX
.
equalTo
(
view
.
snp_centerX
)
make
.
top
.
bottom
.
right
.
equalTo
(
0
)
}
var
stauts
=
""
switch
model
.
status
{
//1正常,2临期,3过期
case
1
:
stauts
=
"正常"
break
case
2
:
stauts
=
"临期"
break
default
:
stauts
=
"过期"
break
}
middleL
.
text
=
stauts
let
rightL
=
UILabel
()
let
rightL
=
UILabel
()
view
.
addSubview
(
rightL
)
view
.
addSubview
(
rightL
)
rightL
.
textColor
=
UIColor
(
named
:
"个人中心灰色字体"
)
rightL
.
textColor
=
UIColor
(
named
:
"个人中心灰色字体"
)
...
...
GeliBusinessPlatform/ViewController/1.1入库&出库/出库/CKGmCell.xib
View file @
2f84b432
This diff is collapsed.
Click to expand it.
GeliBusinessPlatform/ViewController/1.1入库&出库/出库/NewCKVc.swift
View file @
2f84b432
This diff is collapsed.
Click to expand it.
GeliBusinessPlatform/ViewController/1.1入库&出库/出库/NewCKVc.xib
View file @
2f84b432
This diff is collapsed.
Click to expand it.
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