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
3b58c1f5
Commit
3b58c1f5
authored
Dec 16, 2020
by
lujunye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复更新后bug
parent
96de0a98
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
18 additions
and
14 deletions
+18
-14
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
...erdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
GeliBusinessPlatform/ViewController/仓库管理/WarehoseMangementListVC.swift
...latform/ViewController/仓库管理/WarehoseMangementListVC.swift
+2
-2
GeliBusinessPlatform/ViewController/出入库记录/CRKListVC.swift
GeliBusinessPlatform/ViewController/出入库记录/CRKListVC.swift
+2
-2
GeliBusinessPlatform/ViewController/商品管理/GoodsManageListVC.swift
...inessPlatform/ViewController/商品管理/GoodsManageListVC.swift
+2
-1
GeliBusinessPlatform/ViewController/消息中心/MsgCenterViewController.swift
...latform/ViewController/消息中心/MsgCenterViewController.swift
+2
-2
GeliBusinessPlatform/ViewController/订单列表/OrderListVC.swift
GeliBusinessPlatform/ViewController/订单列表/OrderListVC.swift
+2
-2
GeliBusinessPlatform/ViewController/订单管理/关联客户/GuanLianKehuVC.swift
...essPlatform/ViewController/订单管理/关联客户/GuanLianKehuVC.swift
+2
-1
GeliBusinessPlatform/ViewController/订单管理/普通商品修改价格/ChangeGoodsPriceVC.swift
...orm/ViewController/订单管理/普通商品修改价格/ChangeGoodsPriceVC.swift
+2
-2
GeliBusinessPlatform/ViewController/订单管理/查看全部/ShowAlGoodsViewController.swift
.../ViewController/订单管理/查看全部/ShowAlGoodsViewController.swift
+2
-1
GeliBusinessPlatform/ViewController/采购单列表/CGDListVC.swift
GeliBusinessPlatform/ViewController/采购单列表/CGDListVC.swift
+2
-1
No files found.
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
View file @
3b58c1f5
No preview for this file type
GeliBusinessPlatform/ViewController/仓库管理/WarehoseMangementListVC.swift
View file @
3b58c1f5
...
@@ -177,8 +177,8 @@ class WarehoseMangementListVC: BaseViewController, UISearchBarDelegate, UITableV
...
@@ -177,8 +177,8 @@ class WarehoseMangementListVC: BaseViewController, UISearchBarDelegate, UITableV
var
tableV
:
UITableView
!
var
tableV
:
UITableView
!
private
let
animations
=
[
AnimationType
.
from
(
direction
:
.
bottom
,
offset
:
150*
glscale
)]
//
private let animations = [AnimationType.from(direction: .bottom, offset: 150*glscale)]
private
let
animations
=
[
AnimationType
.
vector
(
CGVector
(
dx
:
0
,
dy
:
150*
glscale
))]
func
setTabv
()
{
func
setTabv
()
{
tableV
=
UITableView
()
tableV
=
UITableView
()
contentView
.
addSubview
(
tableV
);
contentView
.
addSubview
(
tableV
);
...
...
GeliBusinessPlatform/ViewController/出入库记录/CRKListVC.swift
View file @
3b58c1f5
...
@@ -103,8 +103,8 @@ class CRKListVC: BaseViewController,UITableViewDelegate,UITableViewDataSource,CR
...
@@ -103,8 +103,8 @@ class CRKListVC: BaseViewController,UITableViewDelegate,UITableViewDataSource,CR
//MARK: - 权限控制
//MARK: - 权限控制
var
isGm
=
true
var
isGm
=
true
private
let
animations
=
[
AnimationType
.
from
(
direction
:
.
bottom
,
offset
:
300*
glscale
)]
//
private let animations = [AnimationType.from(direction: .bottom, offset: 300*glscale)]
private
let
animations
=
[
AnimationType
.
vector
(
CGVector
(
dx
:
0
,
dy
:
300*
glscale
))]
@IBOutlet
weak
var
topBtn
:
UIButton
!
@IBOutlet
weak
var
topBtn
:
UIButton
!
var
BeginDate
:
Date
!
=
nil
var
BeginDate
:
Date
!
=
nil
var
EndDate
:
Date
!
=
nil
var
EndDate
:
Date
!
=
nil
...
...
GeliBusinessPlatform/ViewController/商品管理/GoodsManageListVC.swift
View file @
3b58c1f5
...
@@ -16,7 +16,8 @@ class GoodsManageListVC: BaseViewController, UICollectionViewDelegate, UICollect
...
@@ -16,7 +16,8 @@ class GoodsManageListVC: BaseViewController, UICollectionViewDelegate, UICollect
var
collection
:
UICollectionView
?
=
nil
var
collection
:
UICollectionView
?
=
nil
var
layout
=
UICollectionViewFlowLayout
()
var
layout
=
UICollectionViewFlowLayout
()
private
let
animations
=
[
AnimationType
.
from
(
direction
:
.
bottom
,
offset
:
150*
glscale
)]
// private let animations = [AnimationType.from(direction: .bottom, offset: 150*glscale)]
private
let
animations
=
[
AnimationType
.
vector
(
CGVector
(
dx
:
0
,
dy
:
150*
glscale
))]
weak
var
showSelectV
:
SelectContentView
!
=
nil
weak
var
showSelectV
:
SelectContentView
!
=
nil
weak
var
selectV
:
HeaderSelectView
!
=
nil
weak
var
selectV
:
HeaderSelectView
!
=
nil
@IBOutlet
weak
var
collectionBgView
:
UIView
!
@IBOutlet
weak
var
collectionBgView
:
UIView
!
...
...
GeliBusinessPlatform/ViewController/消息中心/MsgCenterViewController.swift
View file @
3b58c1f5
...
@@ -13,8 +13,8 @@ class MsgCenterViewController: BaseViewController,UITableViewDelegate,UITableVie
...
@@ -13,8 +13,8 @@ class MsgCenterViewController: BaseViewController,UITableViewDelegate,UITableVie
//MARK: -animateView
//MARK: -animateView
private
let
animations
=
[
AnimationType
.
from
(
direction
:
.
bottom
,
offset
:
300*
glscale
)]
//
private let animations = [AnimationType.from(direction: .bottom, offset: 300*glscale)]
private
let
animations
=
[
AnimationType
.
vector
(
CGVector
(
dx
:
0
,
dy
:
300*
glscale
))]
var
msgTbv
:
UITableView
?
var
msgTbv
:
UITableView
?
override
func
viewDidLoad
()
{
override
func
viewDidLoad
()
{
...
...
GeliBusinessPlatform/ViewController/订单列表/OrderListVC.swift
View file @
3b58c1f5
...
@@ -150,8 +150,8 @@ class OrderListVC: BaseViewController, UITableViewDelegate, UITableViewDataSourc
...
@@ -150,8 +150,8 @@ class OrderListVC: BaseViewController, UITableViewDelegate, UITableViewDataSourc
var
tableV
:
UITableView
!
var
tableV
:
UITableView
!
var
tableSearchV
:
UITableView
!
=
nil
var
tableSearchV
:
UITableView
!
=
nil
private
let
animations
=
[
AnimationType
.
from
(
direction
:
.
bottom
,
offset
:
300*
glscale
)]
//
private let animations = [AnimationType.from(direction: .bottom, offset: 300*glscale)]
private
let
animations
=
[
AnimationType
.
vector
(
CGVector
(
dx
:
0
,
dy
:
300*
glscale
))]
func
setTabv
()
{
func
setTabv
()
{
tableV
=
UITableView
()
tableV
=
UITableView
()
view
.
addSubview
(
tableV
);
view
.
addSubview
(
tableV
);
...
...
GeliBusinessPlatform/ViewController/订单管理/关联客户/GuanLianKehuVC.swift
View file @
3b58c1f5
...
@@ -123,7 +123,8 @@ class GuanLianKehuVC: BaseViewController , UITableViewDelegate, UITableViewDataS
...
@@ -123,7 +123,8 @@ class GuanLianKehuVC: BaseViewController , UITableViewDelegate, UITableViewDataS
var
tableV
:
UITableView
!
var
tableV
:
UITableView
!
private
let
animations
=
[
AnimationType
.
from
(
direction
:
.
bottom
,
offset
:
150*
glscale
)]
// private let animations = [AnimationType.from(direction: .bottom, offset: 150*glscale)]
private
let
animations
=
[
AnimationType
.
vector
(
CGVector
(
dx
:
0
,
dy
:
150*
glscale
))]
func
setTabv
()
{
func
setTabv
()
{
tableV
=
UITableView
()
tableV
=
UITableView
()
contentView
.
addSubview
(
tableV
);
contentView
.
addSubview
(
tableV
);
...
...
GeliBusinessPlatform/ViewController/订单管理/普通商品修改价格/ChangeGoodsPriceVC.swift
View file @
3b58c1f5
...
@@ -23,7 +23,6 @@ class ChangeGoodsPriceVC: BaseViewController , UITableViewDelegate, UITableView
...
@@ -23,7 +23,6 @@ class ChangeGoodsPriceVC: BaseViewController , UITableViewDelegate, UITableView
}
else
{
}
else
{
qtPrice
=
price
qtPrice
=
price
}
}
print
(
"abc == "
,
wlPrice
)
var
total
=
Float
(
0
)
var
total
=
Float
(
0
)
dataArr
?
.
forEach
({
(
item
)
in
dataArr
?
.
forEach
({
(
item
)
in
let
price
=
item
.
goods_subtotal
as!
NSString
let
price
=
item
.
goods_subtotal
as!
NSString
...
@@ -123,7 +122,8 @@ class ChangeGoodsPriceVC: BaseViewController , UITableViewDelegate, UITableView
...
@@ -123,7 +122,8 @@ class ChangeGoodsPriceVC: BaseViewController , UITableViewDelegate, UITableView
var
tableV
:
UITableView
!
var
tableV
:
UITableView
!
private
let
animations
=
[
AnimationType
.
from
(
direction
:
.
bottom
,
offset
:
150*
glscale
)]
// private let animations = [AnimationType.from(direction: .bottom, offset: 150*glscale)]
private
let
animations
=
[
AnimationType
.
vector
(
CGVector
(
dx
:
0
,
dy
:
150*
glscale
))]
func
setTabv
()
{
func
setTabv
()
{
tableV
=
UITableView
()
tableV
=
UITableView
()
view
.
addSubview
(
tableV
);
view
.
addSubview
(
tableV
);
...
...
GeliBusinessPlatform/ViewController/订单管理/查看全部/ShowAlGoodsViewController.swift
View file @
3b58c1f5
...
@@ -21,7 +21,8 @@ class ShowAlGoodsViewController: BaseViewController , UITableViewDelegate, UITa
...
@@ -21,7 +21,8 @@ class ShowAlGoodsViewController: BaseViewController , UITableViewDelegate, UITa
}
}
var
tableV
:
UITableView
!
var
tableV
:
UITableView
!
private
let
animations
=
[
AnimationType
.
from
(
direction
:
.
bottom
,
offset
:
150*
glscale
)]
// private let animations = [AnimationType.from(direction: .bottom, offset: 150*glscale)]
private
let
animations
=
[
AnimationType
.
vector
(
CGVector
(
dx
:
0
,
dy
:
150*
glscale
))]
func
setTabv
()
{
func
setTabv
()
{
tableV
=
UITableView
()
tableV
=
UITableView
()
view
.
addSubview
(
tableV
);
view
.
addSubview
(
tableV
);
...
...
GeliBusinessPlatform/ViewController/采购单列表/CGDListVC.swift
View file @
3b58c1f5
...
@@ -325,7 +325,8 @@ class CGDListVC: BaseViewController , UITableViewDelegate, UITableViewDataSource
...
@@ -325,7 +325,8 @@ class CGDListVC: BaseViewController , UITableViewDelegate, UITableViewDataSource
var
listView
:
UITableView
!
var
listView
:
UITableView
!
var
tableSearchV
:
UITableView
!
=
nil
var
tableSearchV
:
UITableView
!
=
nil
private
let
animations
=
[
AnimationType
.
from
(
direction
:
.
bottom
,
offset
:
300*
glscale
)]
// private let animations = [AnimationType.from(direction: .bottom, offset: 300*glscale)]
private
let
animations
=
[
AnimationType
.
vector
(
CGVector
(
dx
:
0
,
dy
:
300*
glscale
))]
func
setTabv
()
{
func
setTabv
()
{
listView
=
UITableView
()
listView
=
UITableView
()
...
...
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