index.vue 1021 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view class="container">
  3. 农业知识页面(待开发)
  4. <!-- 使用iframe方式嵌入,仅在H5下有效 -->
  5. <iframe
  6. class="dify-iframe"
  7. src="https://your-dify-server.com/embed/chat?token=xxx"
  8. frameborder="0"
  9. ></iframe>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. mounted() {
  15. // 设置配置
  16. window.difyChatbotConfig = {
  17. token: 'OFaLSsPTnueswy16',
  18. baseUrl: 'http://121.4.16.100'
  19. };
  20. // 注入脚本
  21. const script = document.createElement('script');
  22. script.src = 'http://121.4.16.100/embed.min.js';
  23. script.id = 'OFaLSsPTnueswy16';
  24. script.defer = true;
  25. document.body.appendChild(script);
  26. }
  27. }
  28. </script>
  29. <style scoped>
  30. .dify-iframe {
  31. width: 100%;
  32. height: 100vh;
  33. border: none;
  34. }
  35. #dify-chatbot-bubble-button {
  36. background-color: #1C64F2 !important;
  37. }
  38. #dify-chatbot-bubble-window {
  39. width: 24rem !important;
  40. height: 40rem !important;
  41. }
  42. .container {
  43. padding: 40rpx;
  44. font-size: 32rpx;
  45. }
  46. </style>