Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinjianhui
factory_front
Commits
43566308
Commit
43566308
authored
Nov 25, 2025
by
zhuzhequan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:修复podcn图片显示问题
parent
aaedfb07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
src/views/order/podCN/index.vue
+13
-3
No files found.
src/views/order/podCN/index.vue
View file @
43566308
...
...
@@ -5005,10 +5005,20 @@ const openDetail = async (id: number) => {
try
{
const
res
=
await
getOrderDetailById
(
id
)
if
(
res
.
code
==
200
)
{
if
(
res
.
data
.
imageAry
)
{
res
.
data
.
imageAry
=
JSON
.
parse
(
res
.
data
.
imageAry
as
string
)
const
item
=
res
.
data
if
(
item
.
imageAry
){
if
(
item
.
imageAry
.
startsWith
(
'http'
)){
item
.
imageAry
=
JSON
.
stringify
(
item
.
imageAry
.
split
(
','
).
map
(
e
=>
{
return
{
url
:
e
}
}
))
}
}
if
(
item
.
imageAry
)
{
item
.
imageAry
=
JSON
.
parse
(
item
.
imageAry
as
string
)
}
detailData
.
value
=
res
.
data
||
{
}
detailData
.
value
=
item
||
{
}
detailVisible
.
value
=
true
fastKey
.
value
=
'detail'
}
...
...
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