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
4fa26543
Commit
4fa26543
authored
Aug 13, 2020
by
刘俊宏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修正运单详情
parent
25a49bb5
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
28 additions
and
2 deletions
+28
-2
GeliBusinessPlatform.xcworkspace/xcuserdata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate
...ata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
GeliBusinessPlatform/Assets.xcassets/货拉拉/driverIcon.imageset/Contents.json
...orm/Assets.xcassets/货拉拉/driverIcon.imageset/Contents.json
+23
-0
GeliBusinessPlatform/Assets.xcassets/货拉拉/driverIcon.imageset/driverIcon.png
...rm/Assets.xcassets/货拉拉/driverIcon.imageset/driverIcon.png
+0
-0
GeliBusinessPlatform/Assets.xcassets/货拉拉/driverIcon.imageset/driverIcon@2x.png
...Assets.xcassets/货拉拉/driverIcon.imageset/driverIcon@2x.png
+0
-0
GeliBusinessPlatform/Assets.xcassets/货拉拉/driverIcon.imageset/driverIcon@3x.png
...Assets.xcassets/货拉拉/driverIcon.imageset/driverIcon@3x.png
+0
-0
GeliBusinessPlatform/Model/LalamoveInterface/LalamoveModel.swift
...inessPlatform/Model/LalamoveInterface/LalamoveModel.swift
+1
-1
GeliBusinessPlatform/ViewController/货拉拉/运单详情/WaybillDetailViewController.swift
...ViewController/货拉拉/运单详情/WaybillDetailViewController.swift
+0
-0
GeliBusinessPlatform/ViewController/货拉拉/运单详情/cell/DriverItemTableViewCell.swift
...iewController/货拉拉/运单详情/cell/DriverItemTableViewCell.swift
+2
-0
GeliBusinessPlatform/ViewController/货拉拉/运单详情/cell/DriverItemTableViewCell.xib
.../ViewController/货拉拉/运单详情/cell/DriverItemTableViewCell.xib
+2
-1
No files found.
GeliBusinessPlatform.xcworkspace/xcuserdata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate
View file @
4fa26543
No preview for this file type
GeliBusinessPlatform/Assets.xcassets/货拉拉/driverIcon.imageset/Contents.json
0 → 100644
View file @
4fa26543
{
"images"
:
[
{
"filename"
:
"driverIcon.png"
,
"idiom"
:
"universal"
,
"scale"
:
"1x"
},
{
"filename"
:
"driverIcon@2x.png"
,
"idiom"
:
"universal"
,
"scale"
:
"2x"
},
{
"filename"
:
"driverIcon@3x.png"
,
"idiom"
:
"universal"
,
"scale"
:
"3x"
}
],
"info"
:
{
"author"
:
"xcode"
,
"version"
:
1
}
}
GeliBusinessPlatform/Assets.xcassets/货拉拉/driverIcon.imageset/driverIcon.png
0 → 100644
View file @
4fa26543
4.61 KB
GeliBusinessPlatform/Assets.xcassets/货拉拉/driverIcon.imageset/driverIcon@2x.png
0 → 100644
View file @
4fa26543
10.1 KB
GeliBusinessPlatform/Assets.xcassets/货拉拉/driverIcon.imageset/driverIcon@3x.png
0 → 100644
View file @
4fa26543
14.6 KB
GeliBusinessPlatform/Model/LalamoveInterface/LalamoveModel.swift
View file @
4fa26543
...
@@ -655,7 +655,7 @@ class billPricearrDataModel: Mappable { //司机添加的额外费用信息
...
@@ -655,7 +655,7 @@ class billPricearrDataModel: Mappable { //司机添加的额外费用信息
var
bill_type
:
Int
?
//费用类型ID,1过桥费,2停车费,3搬运费,5逾时等候费
var
bill_type
:
Int
?
//费用类型ID,1过桥费,2停车费,3搬运费,5逾时等候费
var
name
:
String
?
//费用类型名称 示例:高速路桥费
var
name
:
String
?
//费用类型名称 示例:高速路桥费
var
price_fen
:
In
t
?
//费用金额(分) 示例:0
var
price_fen
:
Floa
t
?
//费用金额(分) 示例:0
var
img_url
:
String
?
//票据凭证图片链接 示例:
var
img_url
:
String
?
//票据凭证图片链接 示例:
required
init
?(
map
:
Map
)
{
required
init
?(
map
:
Map
)
{
...
...
GeliBusinessPlatform/ViewController/货拉拉/运单详情/WaybillDetailViewController.swift
View file @
4fa26543
This diff is collapsed.
Click to expand it.
GeliBusinessPlatform/ViewController/货拉拉/运单详情/cell/DriverItemTableViewCell.swift
View file @
4fa26543
...
@@ -16,6 +16,8 @@ class DriverItemTableViewCell: UITableViewCell {
...
@@ -16,6 +16,8 @@ class DriverItemTableViewCell: UITableViewCell {
override
func
awakeFromNib
()
{
override
func
awakeFromNib
()
{
super
.
awakeFromNib
()
super
.
awakeFromNib
()
// Initialization code
// Initialization code
self
.
selectionStyle
=
.
none
}
}
override
func
setSelected
(
_
selected
:
Bool
,
animated
:
Bool
)
{
override
func
setSelected
(
_
selected
:
Bool
,
animated
:
Bool
)
{
...
...
GeliBusinessPlatform/ViewController/货拉拉/运单详情/cell/DriverItemTableViewCell.xib
View file @
4fa26543
...
@@ -18,7 +18,7 @@
...
@@ -18,7 +18,7 @@
<rect
key=
"frame"
x=
"0.0"
y=
"0.0"
width=
"377"
height=
"142"
/>
<rect
key=
"frame"
x=
"0.0"
y=
"0.0"
width=
"377"
height=
"142"
/>
<autoresizingMask
key=
"autoresizingMask"
/>
<autoresizingMask
key=
"autoresizingMask"
/>
<subviews>
<subviews>
<imageView
clipsSubviews=
"YES"
userInteractionEnabled=
"NO"
contentMode=
"scaleAspectFit"
horizontalHuggingPriority=
"251"
verticalHuggingPriority=
"251"
translatesAutoresizingMaskIntoConstraints=
"NO"
id=
"Wqp-PP-Pfx"
>
<imageView
clipsSubviews=
"YES"
userInteractionEnabled=
"NO"
contentMode=
"scaleAspectFit"
horizontalHuggingPriority=
"251"
verticalHuggingPriority=
"251"
image=
"driverIcon"
translatesAutoresizingMaskIntoConstraints=
"NO"
id=
"Wqp-PP-Pfx"
>
<rect
key=
"frame"
x=
"40"
y=
"37"
width=
"68"
height=
"68"
/>
<rect
key=
"frame"
x=
"40"
y=
"37"
width=
"68"
height=
"68"
/>
<color
key=
"backgroundColor"
name=
"app底色"
/>
<color
key=
"backgroundColor"
name=
"app底色"
/>
<constraints>
<constraints>
...
@@ -71,6 +71,7 @@
...
@@ -71,6 +71,7 @@
</tableViewCell>
</tableViewCell>
</objects>
</objects>
<resources>
<resources>
<image
name=
"driverIcon"
width=
"68"
height=
"68"
/>
<namedColor
name=
"app底色"
>
<namedColor
name=
"app底色"
>
<color
red=
"0.94509803921568625"
green=
"0.94509803921568625"
blue=
"0.94509803921568625"
alpha=
"1"
colorSpace=
"custom"
customColorSpace=
"sRGB"
/>
<color
red=
"0.94509803921568625"
green=
"0.94509803921568625"
blue=
"0.94509803921568625"
alpha=
"1"
colorSpace=
"custom"
customColorSpace=
"sRGB"
/>
</namedColor>
</namedColor>
...
...
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