You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

_ChatTemplates.cshtml 1.5 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <script id="outputErrorTemplate" type="text/html">
  2. <i class="form-control text-danger">{{text}}</i>
  3. </script>
  4. <script id="outputInfoTemplate" type="text/html">
  5. <i class="form-control text-success">{{text}}</i>
  6. </script>
  7. <script id="outputUserTemplate" type="text/html">
  8. <div class="d-flex flex-row form-control bg-light">
  9. <div class="m-2 me-4">
  10. <img src="~/image/human.png" width="60"/>
  11. </div>
  12. <div class="d-flex flex-column flex-fill justify-content-between">
  13. <span class="content" style="resize:none" >{{text}}</span>
  14. <div class="d-flex justify-content-end">
  15. <i>{{date}}</i>
  16. </div>
  17. </div>
  18. </div>
  19. </script>
  20. <script id="outputBotTemplate" type="text/html">
  21. <div class="d-flex flex-row form-control">
  22. <div class="m-2 me-4">
  23. <img src="~/image/robot.png" width="60"/>
  24. </div>
  25. <div id="{{uniqueId}}" class="d-flex flex-column flex-fill justify-content-between">
  26. <span class="content"><img src="~/image/loading.gif" width="30" /></span>
  27. <div class="d-flex justify-content-end">
  28. <div class="d-flex flex-column align-items-end">
  29. <i class="date"></i>
  30. <i>
  31. <small class="signature"></small>
  32. </i>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. </script>
  38. <script id="signatureTemplate" type="text/html">
  39. <span>{{content}}</span>
  40. </script>