21 lines
586 B
Plaintext
21 lines
586 B
Plaintext
@model Nop.Web.Models.Catalog.ProductOverviewModel
|
|
|
|
@if (Model != null)
|
|
{
|
|
<div class="ai-question-box">
|
|
<h5>Kérdezz a termékről!</h5>
|
|
<textarea id="ai-question"></textarea>
|
|
<button id="ask-ai-btn" class="btn btn-primary">Kérdezz</button>
|
|
<div id="ai-answer"></div>
|
|
</div>
|
|
|
|
<script>
|
|
$("#ask-ai-btn").click(function() {
|
|
$.post("/AiAssistant/Ask", { productId: "@Model.Id", question: $("#ai-question").val() }, function (data) {
|
|
$("#ai-answer").html(data);
|
|
});
|
|
});
|
|
</script>
|
|
}
|
|
|