Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
galaxy-iOS
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mobile-group
galaxy-iOS
Commits
072a26c9
Commit
072a26c9
authored
Jan 07, 2025
by
pete谢兆麟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
我的签字
parent
4a071546
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
24 deletions
+0
-24
YHGCMySignatureDetailViewController.swift
...gnature(我的签字)/C/YHGCMySignatureDetailViewController.swift
+0
-24
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/TTPS(高才)/MySignature(我的签字)/C/YHGCMySignatureDetailViewController.swift
View file @
072a26c9
...
@@ -14,7 +14,6 @@ class YHGCMySignatureDetailViewController: YHBaseViewController {
...
@@ -14,7 +14,6 @@ class YHGCMySignatureDetailViewController: YHBaseViewController {
var
bottomView
:
UIView
!
var
bottomView
:
UIView
!
var
bottomButton
:
UIButton
!
var
bottomButton
:
UIButton
!
var
tableView
:
UITableView
!
var
tableView
:
UITableView
!
var
promptView
:
YHFailPromptView
!
var
dataSource
:
[
YHWorkItemListModel
]?
var
dataSource
:
[
YHWorkItemListModel
]?
var
viewModel
:
YHGCMySignatureDetailViewModel
!
var
viewModel
:
YHGCMySignatureDetailViewModel
!
var
id
:
Int
=
0
var
id
:
Int
=
0
...
@@ -66,36 +65,25 @@ class YHGCMySignatureDetailViewController: YHBaseViewController {
...
@@ -66,36 +65,25 @@ class YHGCMySignatureDetailViewController: YHBaseViewController {
// 1000 1001 1002 1003-待签署; 1004-已签署; 1005-待审核; 1006-已驳回; 1007-已完成
// 1000 1001 1002 1003-待签署; 1004-已签署; 1005-待审核; 1006-已驳回; 1007-已完成
if
state
==
1000
||
state
==
1001
||
state
==
1002
||
state
==
1003
{
if
state
==
1000
||
state
==
1001
||
state
==
1002
||
state
==
1003
{
self
.
promptView
.
isHidden
=
true
self
.
bottomButton
.
isEnabled
=
true
self
.
bottomButton
.
isEnabled
=
true
self
.
bottomView
.
isHidden
=
false
self
.
bottomView
.
isHidden
=
false
self
.
bottomButton
.
alpha
=
1
self
.
bottomButton
.
alpha
=
1
self
.
bottomButton
.
setTitle
(
"确定已签章,提交"
,
for
:
.
normal
)
self
.
bottomButton
.
setTitle
(
"确定已签章,提交"
,
for
:
.
normal
)
}
else
if
state
==
1004
||
state
==
1005
{
}
else
if
state
==
1004
||
state
==
1005
{
self
.
promptView
.
isHidden
=
true
self
.
bottomButton
.
isEnabled
=
false
self
.
bottomButton
.
isEnabled
=
false
self
.
bottomView
.
isHidden
=
false
self
.
bottomView
.
isHidden
=
false
self
.
bottomButton
.
alpha
=
0.4
self
.
bottomButton
.
alpha
=
0.4
self
.
bottomButton
.
setTitle
(
"提交成功"
,
for
:
.
normal
)
self
.
bottomButton
.
setTitle
(
"提交成功"
,
for
:
.
normal
)
}
else
if
state
==
1007
{
}
else
if
state
==
1007
{
self
.
promptView
.
isHidden
=
true
self
.
bottomView
.
isHidden
=
true
self
.
bottomView
.
isHidden
=
true
self
.
bottomButton
.
isEnabled
=
true
self
.
bottomButton
.
isEnabled
=
true
self
.
bottomButton
.
alpha
=
1
self
.
bottomButton
.
alpha
=
1
self
.
bottomButton
.
setTitle
(
"确定已签章,提交"
,
for
:
.
normal
)
self
.
bottomButton
.
setTitle
(
"确定已签章,提交"
,
for
:
.
normal
)
}
else
if
state
==
1006
{
}
else
if
state
==
1006
{
self
.
promptView
.
isHidden
=
false
self
.
promptView
.
setPrompt
(
self
.
viewModel
.
mainModel
?
.
audit_opinion
??
""
)
self
.
bottomButton
.
isEnabled
=
true
self
.
bottomButton
.
isEnabled
=
true
self
.
bottomView
.
isHidden
=
false
self
.
bottomView
.
isHidden
=
false
self
.
bottomButton
.
alpha
=
1
self
.
bottomButton
.
alpha
=
1
self
.
bottomButton
.
setTitle
(
"确定已签章,提交"
,
for
:
.
normal
)
self
.
bottomButton
.
setTitle
(
"确定已签章,提交"
,
for
:
.
normal
)
let
height
=
self
.
getPromptHeight
(
self
.
viewModel
.
mainModel
?
.
audit_opinion
??
""
)
self
.
promptView
.
snp
.
remakeConstraints
{
make
in
make
.
height
.
equalTo
(
height
)
make
.
bottom
.
equalTo
(
-
k_Height_safeAreaInsetsBottom
()
-
64
)
make
.
left
.
right
.
equalTo
(
self
.
view
)
}
}
}
self
.
tableView
.
reloadData
()
self
.
tableView
.
reloadData
()
}
else
{
}
else
{
...
@@ -147,18 +135,6 @@ class YHGCMySignatureDetailViewController: YHBaseViewController {
...
@@ -147,18 +135,6 @@ class YHGCMySignatureDetailViewController: YHBaseViewController {
make
.
left
.
right
.
bottom
.
equalTo
(
view
)
make
.
left
.
right
.
bottom
.
equalTo
(
view
)
}
}
promptView
=
{
let
view
=
YHFailPromptView
()
view
.
isHidden
=
true
return
view
}()
view
.
addSubview
(
promptView
)
promptView
.
snp
.
makeConstraints
{
make
in
make
.
height
.
equalTo
(
35
)
make
.
bottom
.
equalTo
(
-
k_Height_safeAreaInsetsBottom
()
-
64
)
make
.
left
.
right
.
equalTo
(
view
)
}
bottomView
=
{
bottomView
=
{
let
bottom
=
UIView
()
let
bottom
=
UIView
()
bottom
.
backgroundColor
=
.
white
bottom
.
backgroundColor
=
.
white
...
...
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