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
1670bc4e
Commit
1670bc4e
authored
Aug 12, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 查看大图
parent
4281552c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
YHPrincipleUploadListVC.swift
...rvice/PrincipleBatch(原则批)/C/YHPrincipleUploadListVC.swift
+9
-0
YHPrinciplePhotoListCell.swift
...vice/PrincipleBatch(原则批)/V/YHPrinciplePhotoListCell.swift
+10
-0
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/CustomerService/PrincipleBatch(原则批)/C/YHPrincipleUploadListVC.swift
View file @
1670bc4e
...
...
@@ -206,6 +206,9 @@ extension YHPrincipleUploadListVC {
let
agree
=
YHPrincipleRequestModel
()
agree
.
id
=
agreementModel
.
id
agree
.
check_status
=
agreementModel
.
check_status
if
agree
.
check_status
==
YHPrincipleUploadStatus
.
rejected
.
rawValue
{
// 已驳回
agree
.
check_status
=
YHPrincipleUploadStatus
.
review
.
rawValue
}
agree
.
file_url
=
agreementModel
.
content_url
files
.
append
(
agree
)
...
...
@@ -214,6 +217,9 @@ extension YHPrincipleUploadListVC {
let
opinion
=
YHPrincipleRequestModel
()
opinion
.
id
=
opinionModel
.
id
opinion
.
check_status
=
opinionModel
.
check_status
if
opinion
.
check_status
==
YHPrincipleUploadStatus
.
rejected
.
rawValue
{
// 已驳回
opinion
.
check_status
=
YHPrincipleUploadStatus
.
review
.
rawValue
}
opinion
.
file_url
=
opinionModel
.
content_url
files
.
append
(
opinion
)
...
...
@@ -223,6 +229,9 @@ extension YHPrincipleUploadListVC {
let
other
=
YHPrincipleRequestModel
()
other
.
id
=
otherModel
.
id
other
.
check_status
=
otherModel
.
check_status
if
other
.
check_status
==
YHPrincipleUploadStatus
.
rejected
.
rawValue
{
// 已驳回
other
.
check_status
=
YHPrincipleUploadStatus
.
review
.
rawValue
}
other
.
file_url
=
otherModel
.
content_url
files
.
append
(
other
)
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/CustomerService/PrincipleBatch(原则批)/V/YHPrinciplePhotoListCell.swift
View file @
1670bc4e
...
...
@@ -222,5 +222,15 @@ extension YHPrinciplePhotoListCell: UICollectionViewDelegateFlowLayout, UICollec
private
func
collectionView
(
collectionView
:
UICollectionView
,
didSelectItemAtIndexPath
indexPath
:
NSIndexPath
)
{
print
(
"index is
\(
indexPath
.
row
)
"
)
if
0
<=
indexPath
.
item
,
indexPath
.
item
<
items
.
count
{
let
model
=
items
[
indexPath
.
item
]
var
imgUrlArr
:[
String
]
=
[]
for
item
in
items
{
imgUrlArr
.
append
(
item
.
image
)
}
YHPictureReviewManager
.
shared
.
showNetWorkPicturs
(
curIndex
:
indexPath
.
item
,
arrPicturs
:
imgUrlArr
)
}
}
}
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