...
This commit is contained in:
@@ -96,3 +96,4 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
@@ -24,6 +24,13 @@
|
||||
WidthUnit="Unit.Px" />
|
||||
<main>
|
||||
<div class="d-flex align-items-center justify-content-end">
|
||||
<NavLink href="@{
|
||||
hrefuserpanel
|
||||
}">لینک گفتگو کاربر با شما</NavLink>
|
||||
<NavLink href="@{
|
||||
hrefai
|
||||
}">لینک گفتگو کاربر با دستیار هوش مصنوعی</NavLink>
|
||||
<p>شناسه شرکت : @CompanyID</p>
|
||||
<div class="text-white text-end d-flex flex-column justify-content-center align-items-end mx-2">
|
||||
<div style="color: black;" class="fw-bold">@Fullname</div>
|
||||
<h6 style="color: black;">@TitleRole</h6>
|
||||
@@ -70,11 +77,14 @@
|
||||
</div>
|
||||
|
||||
@code {
|
||||
public string hrefuserpanel { get { return $"UserCP/{CompanyID}"; } }
|
||||
public string hrefai { get { return $"aichat/{CompanyID}"; } }
|
||||
private Modal modal = default!;
|
||||
public string Info { get; set; } = "";
|
||||
private string SelectedMenu = "page2";
|
||||
public string Username { get; set; }
|
||||
public string Fullname { get; set; }
|
||||
public int CompanyID { get; set; } = 0;
|
||||
public byte[]? img { get; set; }
|
||||
public string Role { get; set; }
|
||||
bool isonline = false;
|
||||
@@ -89,6 +99,7 @@
|
||||
//Roles = await localStorageService.GetItem<List<string>>("Role");
|
||||
Username = await localStorageService.GetItem<string>("C/Username");
|
||||
Fullname = await localStorageService.GetItem<string>("C/Fullname");
|
||||
CompanyID = await localStorageService.GetItem<int>("C/CompanyId");
|
||||
string UserID = await localStorageService.GetItem<string>("C/UserID");
|
||||
img = await localStorageService.GetItem<byte[]?>("C/img");
|
||||
}
|
||||
|
@@ -338,6 +338,7 @@
|
||||
<Button Color="ButtonColor.Danger" Size=ButtonSize.ExtraSmall Outline="true" @onclick="ClearRecordedAudio">حذف صدا</Button>
|
||||
</div>
|
||||
}
|
||||
|
||||
<!-- Recording Status -->
|
||||
@if (IsRecording)
|
||||
{
|
||||
@@ -349,17 +350,18 @@
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
|
||||
}
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@code {
|
||||
|
||||
Common.Dtos.CurrentUserInfo CurrentUser { get; set; }
|
||||
List<Read_GroupDto> _Group = new List<Read_GroupDto>();
|
||||
//-------------------------------------
|
||||
|
@@ -55,3 +55,4 @@ namespace HushianWebApp.Service
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user