Skip to content

Commit

Permalink
Merge pull request #99 from AIDotNet/feature_offline
Browse files Browse the repository at this point in the history
fix 处理离线资源文件
  • Loading branch information
xuzeyu91 authored Aug 5, 2024
2 parents 97b7211 + dc70270 commit 4ef398b
Show file tree
Hide file tree
Showing 5 changed files with 136 additions and 8 deletions.
12 changes: 6 additions & 6 deletions src/AntSK/Layouts/UserLayout.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@
font-size: 14px;
}
@media (min-width: 768px) {
.container__b__0 {
background-image: url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg');
background-repeat: no-repeat;
background-position: center 110px;
background-size: 100%;
}
.container__b__0 {
background-image: url('./assets/TVYTbAXWheQpRcWDaDMu.svg');
background-repeat: no-repeat;
background-position: center 110px;
background-size: 100%;
}
.container__b__0 .content {
padding: 32px 0 24px;
}
Expand Down
4 changes: 2 additions & 2 deletions src/AntSK/Pages/ChatPage/Components/ChatView.razor
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@
<Icon Style="float:right;margin-top:10px;" Type="copy" Theme="outline" OnClick="async () =>await OnCopyAsync(item)" />
</GridCol>
<GridCol Span="1">
<Image Width="25px" Height="25px" Style="margin-top:10px;" Src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" />
<Image Width="25px" Height="25px" Style="margin-top:10px;" Src="./assets/KDpgvguMpGfqaHPjicRK.svg" />
</GridCol>
</GridRow>
}
else
{
<GridRow>
<GridCol Span="1">
<Image Width="25px" Height="25px" Style="margin-top:10px;" Src="https://gw.alipayobjects.com/zos/antfincdn/aPkFc8Sj7n/method-draw-image.svg" />
<Image Width="25px" Height="25px" Style="margin-top:10px;" Src="./assets/method-draw-image.svg" />
</GridCol>
<GridCol Span="23">
<div class="chat-bubble received">
Expand Down
43 changes: 43 additions & 0 deletions src/AntSK/wwwroot/assets/KDpgvguMpGfqaHPjicRK.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions src/AntSK/wwwroot/assets/TVYTbAXWheQpRcWDaDMu.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions src/AntSK/wwwroot/assets/method-draw-image.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4ef398b

Please sign in to comment.