Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
foreign
/
customer-service
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
2d3f735b
authored
Feb 08, 2022
by
Sixong.Zhu
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修正图片预览问题,客户端和后台api域名不一致导致
parent
e79ecd9f
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
21 deletions
components/avatar.vue
components/controller/index.ts
components/image-preview.vue
utils/user-info.ts
components/avatar.vue
View file @
2d3f735b
<
template
>
<el-avatar
class=
"tm-avatar"
:src=
"hasAvatar ?
s
rc : ''"
:src=
"hasAvatar ?
decodeS
rc : ''"
:size=
"size"
:shape=
"shape"
:alt=
"alt"
...
...
@@ -20,10 +20,10 @@
</
template
>
<
script
lang=
"ts"
>
import
{
Component
,
Prop
,
Vue
}
from
"vue-property-decorator"
;
import
{
Component
,
Prop
,
Vue
}
from
"vue-property-decorator"
;
@
Component
export
default
class
Avatar
extends
Vue
{
@
Component
export
default
class
Avatar
extends
Vue
{
@
Prop
()
private
readonly
src
?:
string
;
...
...
@@ -56,26 +56,33 @@ export default class Avatar extends Vue {
private
readonly
fit
!
:
"fill"
|
"contain"
|
"cover"
|
"none"
|
"scale-down"
;
private
hasAvatar
=
false
;
}
private
get
decodeSrc
()
{
if
(
this
.
src
)
{
return
decodeURIComponent
(
this
.
src
);
}
return
this
.
src
;
}
}
</
script
>
<
style
lang=
"less"
scoped
>
.tm-avatar
{
.tm-avatar
{
background
:
none
;
flex-shrink
:
0
;
flex-grow
:
0
;
}
.tm-avatar
.tm-svg-icon
{
}
.tm-avatar
.tm-svg-icon
{
background
:
#d8d8d8
;
}
.tm-avatar
.tm-load-img
{
}
.tm-avatar
.tm-load-img
{
display
:
none
;
}
.tm-avatar
/
deep
/
img
{
}
.tm-avatar
/
deep
/
img
{
width
:
100%
;
}
.default-avatar
{
}
.default-avatar
{
display
:
inline-block
;
color
:
#333
;
}
}
</
style
>
components/controller/index.ts
View file @
2d3f735b
...
...
@@ -51,14 +51,14 @@ export function parserMessage(type: MessageType, rawMsg: string) {
}
}
export
function
rebuildImage
(
url
:
string
)
{
export
function
rebuildImage
(
url
:
string
,
w
=
300
)
{
if
(
url
)
{
const
sdk
=
Chat
.
getSdk
();
const
s
=
sdk
.
mediaController
.
buildThumbnail
;
if
(
fsImg
.
test
(
url
))
{
const
m
=
fsImg
.
exec
(
url
);
if
(
m
&&
m
.
length
)
{
return
sdk
.
global
.
baseUrl
+
s
(
m
[
0
],
300
);
return
sdk
.
global
.
baseUrl
+
s
(
m
[
0
],
w
);
}
}
return
url
;
...
...
components/image-preview.vue
View file @
2d3f735b
...
...
@@ -10,12 +10,12 @@
>
<div
class=
"d-flex flex-column"
v-if=
"value"
>
<div
class=
"d-flex justify-content-center align-items-start"
>
<img
v-if=
"file"
:src=
"
file.url
"
:style=
"imgStyle"
/>
<img
v-if=
"file"
:src=
"
img
"
:style=
"imgStyle"
/>
<i
class=
"el-icon-close"
@
click=
"close"
></i>
<a
class=
"d-flex align-items-center justify-content-center"
:href=
"
file.url
"
:href=
"
img
"
:download=
"getAttachment"
target=
"_blank"
>
...
...
@@ -28,15 +28,23 @@
<
script
lang=
"ts"
>
import
{
Component
,
Model
,
Prop
,
Vue
}
from
"vue-property-decorator"
;
import
{
rebuildImage
}
from
"./controller"
;
@
Component
({
components
:
{}
})
export
default
class
ImagePreview
extends
Vue
{
@
Model
(
"update"
)
private
value
!
:
boolean
;
private
readonly
value
!
:
boolean
;
@
Prop
()
private
file
!
:
{
name
:
string
;
url
:
string
};
private
get
img
()
{
if
(
this
.
file
&&
this
.
file
.
url
)
{
return
rebuildImage
(
this
.
file
.
url
,
10000
);
}
return
""
;
}
private
get
imgStyle
()
{
return
{
"max-width"
:
`
${
document
.
body
.
scrollWidth
*
0.8
}
px`
,
...
...
utils/user-info.ts
View file @
2d3f735b
...
...
@@ -58,7 +58,8 @@ export class ChatUserInfoService {
const
data
=
{
name
:
info
.
realname
||
info
.
username
||
info
.
mobile
||
info
.
mobile
,
phone
:
info
.
mobile
,
icon
:
info
.
avatar_url
,
icon
:
(
info
.
avatar_url
&&
decodeURIComponent
(
info
.
avatar_url
))
||
""
,
alias_name
:
info
.
alias_name
,
};
userMapping
[
eid
]
=
data
;
...
...
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