Commit de39e602 by Sixong.Zhu

u

parent 39d4ed44
Showing with 6 additions and 9 deletions
...@@ -24,6 +24,8 @@ ...@@ -24,6 +24,8 @@
import { UserAgentHelper } from "@/customer-service/third-party/user-agent"; import { UserAgentHelper } from "@/customer-service/third-party/user-agent";
import Chat from "@/customer-service/xim/"; import Chat from "@/customer-service/xim/";
const fsImg = /(fs(.*))/;
@Component({ components: { FileIcon } }) @Component({ components: { FileIcon } })
export default class Index extends BaseMessage { export default class Index extends BaseMessage {
private readonly image404 = FileType.Image_404; private readonly image404 = FileType.Image_404;
...@@ -36,16 +38,11 @@ ...@@ -36,16 +38,11 @@
if (this.messageRealUrl) { if (this.messageRealUrl) {
const sdk = Chat.getSdk(); const sdk = Chat.getSdk();
const s = sdk.mediaController.buildThumbnail; const s = sdk.mediaController.buildThumbnail;
if ( if (fsImg.test(this.messageRealUrl)) {
this.messageRealUrl.startsWith("http") && const m = fsImg.exec(this.messageRealUrl);
/fs/i.test(this.messageRealUrl) return sdk.global.baseUrl + s(m[0], 300);
) {
return (
sdk.global.baseUrl +
s(this.messageRealUrl.replace(sdk.global.baseUrl, ""), 300)
);
} }
return s(this.messageRealUrl, 300); return this.messageRealUrl;
} }
return ""; return "";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment