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
a2f46fd8
Commit
a2f46fd8
authored
Sep 21, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 续期资料管理bug修复
parent
05028574
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
5 deletions
+13
-5
YHServiceCenterProgressModel.swift
...lligentService(服务中心)/M/YHServiceCenterProgressModel.swift
+1
-0
YHCertificateTemplateCell.swift
...心)/MyCertificates(我的证书)/V/YHCertificateTemplateCell.swift
+9
-0
YHResignMaterialListVC.swift
...signMaterialManage(续期资料管理)/C/YHResignMaterialListVC.swift
+1
-2
YHResignMaterialUploadVC.swift
...gnMaterialManage(续期资料管理)/C/YHResignMaterialUploadVC.swift
+1
-2
YHResignTemplateSheetView.swift
...nMaterialManage(续期资料管理)/V/YHResignTemplateSheetView.swift
+0
-1
YHMessageDetailListVC.swift
...Classes/Modules/Message(消息)/C/YHMessageDetailListVC.swift
+1
-0
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/M/YHServiceCenterProgressModel.swift
View file @
a2f46fd8
...
...
@@ -53,4 +53,5 @@ struct YHServiceCenterMainModel: SmartCodable {
var
certificateSection
:
YHServiceProgressModel
=
YHServiceProgressModel
()
var
renewalSection
:
YHServiceStepProgressModel
=
YHServiceStepProgressModel
()
var
stage
:
Int
=
0
// 1 申请阶段 2办证阶段 3续期阶段
var
master_id
:
Int
=
0
// 批次
}
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/MyCertificates(我的证书)/V/YHCertificateTemplateCell.swift
View file @
a2f46fd8
...
...
@@ -87,9 +87,18 @@ class YHCertificateTemplateCell: UITableViewCell {
var
templateModel
:
YHResignTemplateItemModel
?
{
didSet
{
if
let
model
=
templateModel
{
if
!
model
.
name
.
isEmpty
{
templateView
.
titleLabel
.
text
=
model
.
name
}
else
{
templateView
.
titleLabel
.
text
=
"查看资料示例模版"
}
}
else
{
templateView
.
titleLabel
.
text
=
"查看资料示例模版"
}
}
}
lazy
var
templateView
:
YHCertificateSampleTemplateView
=
{
let
view
=
YHCertificateSampleTemplateView
(
frame
:
CGRectZero
)
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignMaterialManage(续期资料管理)/C/YHResignMaterialListVC.swift
View file @
a2f46fd8
...
...
@@ -235,12 +235,11 @@ extension YHResignMaterialListVC {
func
showUploadSheetView
(
_
material
:
YHMaterialModel
,
_
success
:
(()
->
())?)
{
let
sheetView
=
YHCertificateUploadSheetView
.
sheetView
()
sheetView
.
maxSelectImageCount
=
9
sheetView
.
tips
=
"支持的文件格式为jpg/jpeg、png、bmp、doc/docx、xls/xlsx、pdf,最多可上传99张图片或文件"
sheetView
.
fileTypes
=
[
"public.image"
,
"com.adobe.pdf"
,
"com.microsoft.word.doc"
,
"org.openxmlformats.wordprocessingml.document"
,
"com.microsoft.powerpoint.ppt"
,
"org.openxmlformats.presentationml.presentation"
,
"org.openxmlformats.spreadsheetml.sheet"
,
"com.microsoft.excel.xls"
,]
sheetView
.
uploadFilesBlock
=
{
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignMaterialManage(续期资料管理)/C/YHResignMaterialUploadVC.swift
View file @
a2f46fd8
...
...
@@ -134,12 +134,11 @@ class YHResignMaterialUploadVC: YHBaseViewController {
let
sheetView
=
YHCertificateUploadSheetView
.
sheetView
()
sheetView
.
maxSelectImageCount
=
99
-
items
.
count
sheetView
.
tips
=
"支持的文件格式为jpg/jpeg、png、bmp、doc/docx、xls/xlsx、pdf,最多可上传99张图片或文件"
sheetView
.
fileTypes
=
[
"public.image"
,
"com.adobe.pdf"
,
"com.microsoft.word.doc"
,
"org.openxmlformats.wordprocessingml.document"
,
"com.microsoft.powerpoint.ppt"
,
"org.openxmlformats.presentationml.presentation"
,
"org.openxmlformats.spreadsheetml.sheet"
,
"com.microsoft.excel.xls"
,]
sheetView
.
uploadFilesBlock
=
{
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignMaterialManage(续期资料管理)/V/YHResignTemplateSheetView.swift
View file @
a2f46fd8
...
...
@@ -218,7 +218,6 @@ extension YHResignTemplateSheetView: UITableViewDelegate, UITableViewDataSource
if
0
<=
indexPath
.
row
&&
indexPath
.
row
<
templateArr
.
count
{
let
path
=
templateArr
[
indexPath
.
row
]
scanTemplateBlock
?(
path
)
dismiss
()
}
}
...
...
galaxy/galaxy/Classes/Modules/Message(消息)/C/YHMessageDetailListVC.swift
View file @
a2f46fd8
...
...
@@ -562,6 +562,7 @@ extension YHMessageDetailListVC: UITableViewDelegate, UITableViewDataSource {
if
let
orderId
=
Int
(
msg
.
orderId
)
{
let
vc
=
YHResinMaterialManageContainerVC
()
vc
.
orderId
=
orderId
vc
.
id
=
self
.
serviceCenterViewModel
.
mainModel
.
master_id
navigationController
?
.
pushViewController
(
vc
)
}
...
...
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