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
bb13af3b
Commit
bb13af3b
authored
Mar 16, 2021
by
lujunye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1231adsfgasfdsafdsafd
parent
5ff9014e
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
6 deletions
+7
-6
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
...erdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
GeliBusinessPlatform/AppDelegate.swift
GeliBusinessPlatform/AppDelegate.swift
+1
-3
GeliBusinessPlatform/Define/Define.swift
GeliBusinessPlatform/Define/Define.swift
+2
-0
GeliBusinessPlatform/View/Cell/TitleAndTFCell.swift
GeliBusinessPlatform/View/Cell/TitleAndTFCell.swift
+0
-1
GeliBusinessPlatform/ViewController/出入库记录/CRKListVC.swift
GeliBusinessPlatform/ViewController/出入库记录/CRKListVC.swift
+0
-2
GeliBusinessPlatform/ViewController/工作中心/WorkCViewController.swift
...essPlatform/ViewController/工作中心/WorkCViewController.swift
+4
-0
GeliBusinessPlatform/ViewController/店长审核/DZSH_Detail_ViewController.swift
...form/ViewController/店长审核/DZSH_Detail_ViewController.swift
+0
-0
No files found.
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
View file @
bb13af3b
No preview for this file type
GeliBusinessPlatform/AppDelegate.swift
View file @
bb13af3b
...
@@ -284,9 +284,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate,loginDelegate,UITabBarCont
...
@@ -284,9 +284,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate,loginDelegate,UITabBarCont
let
v2
=
GoodsManageListVC
()
let
v2
=
GoodsManageListVC
()
let
v3
=
DZSH_Mg_ViewController
()
let
v3
=
WorkCViewController
()
// let v3 = WorkCViewController()1234
let
v4
=
WarehoseMangementListVC
()
let
v4
=
WarehoseMangementListVC
()
...
...
GeliBusinessPlatform/Define/Define.swift
View file @
bb13af3b
...
@@ -318,6 +318,8 @@ func dateConvertString(date:Date, dateFormat:String="yyyy-MM-dd") -> String {
...
@@ -318,6 +318,8 @@ func dateConvertString(date:Date, dateFormat:String="yyyy-MM-dd") -> String {
// let formatValue = format.string(from: NSNumber(value: (interceptValue as NSString).doubleValue))
// let formatValue = format.string(from: NSNumber(value: (interceptValue as NSString).doubleValue))
// return formatValue!
// return formatValue!
//}
//}
//MARK:--数组转字符串
//MARK:--数组转字符串
func
dataChangeString
(
sender
:
Array
<
Any
>
)
->
String
{
func
dataChangeString
(
sender
:
Array
<
Any
>
)
->
String
{
var
str
=
""
var
str
=
""
...
...
GeliBusinessPlatform/View/Cell/TitleAndTFCell.swift
View file @
bb13af3b
...
@@ -24,7 +24,6 @@ class TitleAndTFCell: UITableViewCell {
...
@@ -24,7 +24,6 @@ class TitleAndTFCell: UITableViewCell {
@objc
func
textChange
(
textField
:
UITextField
){
@objc
func
textChange
(
textField
:
UITextField
){
print
(
"te == "
,
textField
.
text
)
delegate
?
.
textFieldContent
?(
content
:
textField
.
text
!
,
cell
:
self
)
delegate
?
.
textFieldContent
?(
content
:
textField
.
text
!
,
cell
:
self
)
}
}
...
...
GeliBusinessPlatform/ViewController/出入库记录/CRKListVC.swift
View file @
bb13af3b
...
@@ -346,8 +346,6 @@ class CRKListVC: BaseViewController,UITableViewDelegate,UITableViewDataSource,CR
...
@@ -346,8 +346,6 @@ class CRKListVC: BaseViewController,UITableViewDelegate,UITableViewDataSource,CR
HUD
.
flash
(
.
label
(
"请填写备注"
),
delay
:
1.2
)
HUD
.
flash
(
.
label
(
"请填写备注"
),
delay
:
1.2
)
return
return
}
}
if
isPass
{
//通过
if
isPass
{
//通过
let
data
=
datas
!
[
selectIdx
!
]
let
data
=
datas
!
[
selectIdx
!
]
let
batchInfo
:
Array
<
Any
>
=
[]
let
batchInfo
:
Array
<
Any
>
=
[]
...
...
GeliBusinessPlatform/ViewController/工作中心/WorkCViewController.swift
View file @
bb13af3b
...
@@ -691,6 +691,10 @@ class WorkCViewController: BaseViewController, UITableViewDelegate, UITableViewD
...
@@ -691,6 +691,10 @@ class WorkCViewController: BaseViewController, UITableViewDelegate, UITableViewD
let
vc
=
GYS_FX_Product_ListVc
()
let
vc
=
GYS_FX_Product_ListVc
()
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
return
return
case
146
:
//店长申请审核
let
vc
=
DZSH_Mg_ViewController
()
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
return
default
:
default
:
break
;
break
;
}
}
...
...
GeliBusinessPlatform/ViewController/店长审核/DZSH_Detail_ViewController.swift
View file @
bb13af3b
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