bottomSideder2.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <template>
  2. <div>
  3. <div class="trigger-button">
  4. <div class="icon" @click="openMenu"></div>
  5. </div>
  6. <div v-if="dialogVisible" class="dialog-overlay">
  7. <!-- 左侧折叠区域 -->
  8. <div class="left-side" :class="{ collapsed: isFold }" id="leftSide">
  9. <div
  10. class="addBtn"
  11. :style="{
  12. backgroundImage: `url(${isFold ? '/src/assets/images/vent/home/add.svg' : ''})`,
  13. backgroundColor: isFold ? '' : '#2cb6ff',
  14. width: isFold ? '20px' : 'auto',
  15. }"
  16. @click="fold"
  17. >
  18. <span
  19. class="btn-text-bg"
  20. :style="{
  21. backgroundImage: `url(${!isFold ? '/src/assets/images/vent/home/addB.svg' : ''})`,
  22. }"
  23. ></span>
  24. <span v-if="!isFold" class="btn-text">添加新对话</span>
  25. </div>
  26. <div class="divider0"></div>
  27. <div
  28. v-if="isFold"
  29. class="historyBtn"
  30. :style="{ backgroundImage: `url(${isFold ? '/src/assets/images/vent/home/history.svg' : '/src/assets/images/vent/home/history.svg'})` }"
  31. @click="addNew"
  32. ></div>
  33. <div v-else class="historyBtn1">
  34. <span
  35. class="btn-text-bg"
  36. :style="{
  37. backgroundImage: `url(${!isFold ? '/src/assets/images/vent/home/history.svg' : ''})`,
  38. }"
  39. ></span>
  40. <span v-if="!isFold" class="btn-text">历史对话</span>
  41. <a-list style="width: 100px" :split="false">
  42. <a-list-item style="padding: 5px 0 0 30px; color: #5e7081; font-size: 12px; white-space: nowrap; text-overflow: ellipsis"
  43. >历史数据1</a-list-item
  44. >
  45. <a-list-item style="padding: 5px 0 0 30px; color: #5e7081; font-size: 12px; white-space: nowrap; text-overflow: ellipsis"
  46. >历史数据12</a-list-item
  47. >
  48. <a-list-item style="padding: 5px 0 0 30px; color: #5e7081; font-size: 12px; white-space: nowrap; text-overflow: ellipsis"
  49. >历史数据123</a-list-item
  50. >
  51. </a-list>
  52. </div>
  53. <div
  54. class="foldBtn"
  55. :style="{ backgroundImage: `url(${isFold ? '/src/assets/images/vent/home/Fold.svg' : '/src/assets/images/vent/home/unfold.svg'})` }"
  56. @click="fold"
  57. ></div>
  58. </div>
  59. <!-- 右侧对话框 -->
  60. <div class="right-side">
  61. <div class="input-content">
  62. <!-- 对话区域 -->
  63. <div class="dialog-area">
  64. <div class="ask-message">
  65. <span>提问提问提问</span>
  66. </div>
  67. <div class="answer" style="margin-top: 65px">
  68. <div class="answerIcon"></div>
  69. <div class="answer-message">
  70. <span>回答回答回答回答回答</span>
  71. </div>
  72. </div>
  73. </div>
  74. <!-- 文本输入区域 -->
  75. <div class="input-area">
  76. <textarea v-model="inputText" placeholder="请输入你的问题"> </textarea>
  77. <!-- 底部操作栏 -->
  78. <div class="action-bar">
  79. <!-- 文件上传按钮 -->
  80. <label class="upload-btn">
  81. <div class="send-file" />
  82. <span class="divider"> | </span>
  83. <div class="send-img" />
  84. </label>
  85. <!-- 发送按钮 -->
  86. <div class="send-btn" @keydown.enter.prevent="handleSend"></div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. </template>
  94. <script lang="ts" setup>
  95. import { ref, onMounted, nextTick } from 'vue';
  96. // 响应式变量声明
  97. const dialogVisible = ref(false);
  98. const isFold = ref(false); // 是否折叠
  99. const inputText = ref(''); // 输入框内容
  100. const messages = ref([]); // 消息列表
  101. const openMenu = () => {
  102. dialogVisible.value = !dialogVisible.value;
  103. };
  104. const fold = () => {
  105. isFold.value = !isFold.value;
  106. };
  107. const addNew = () => {
  108. console.log('addNew');
  109. };
  110. const handleSend = () => {
  111. if (inputText.value) {
  112. messages.value.push({ text: inputText.value });
  113. inputText.value = '';
  114. }
  115. };
  116. // 初始化按钮定位
  117. onMounted(() => {});
  118. </script>
  119. <style lang="less" scoped>
  120. @keyframes menuShow {
  121. 0% {
  122. width: 0;
  123. height: 0;
  124. }
  125. 100% {
  126. width: 480px;
  127. height: 100vh;
  128. }
  129. }
  130. .trigger-button {
  131. position: fixed;
  132. bottom: 10px;
  133. right: 10px;
  134. z-index: 1000000;
  135. .icon {
  136. width: 60px;
  137. height: 60px;
  138. position: relative;
  139. background-image: url('/@/assets/images/vent/home/wakeBtn.png');
  140. background-position: center;
  141. background-size: 100% 100%;
  142. }
  143. }
  144. .dialog-overlay {
  145. width: 32%;
  146. height: 55%;
  147. z-index: 999;
  148. display: flex;
  149. position: fixed;
  150. right: 90px;
  151. bottom: 20px;
  152. box-shadow: 0 0 3px 3px #1074c1;
  153. background-color: #09172c;
  154. }
  155. .left-side {
  156. background: #0c2842;
  157. transition: width 0.5s ease; /* 平滑过渡动画 */
  158. width: 120px; /* 展开时宽度 */
  159. position: relative; /* 用于按钮定位 */
  160. }
  161. .left-side.collapsed {
  162. width: 40px; /* 折叠时宽度 */
  163. }
  164. .addBtn {
  165. height: 30px;
  166. position: absolute;
  167. background-size: 100% 100%;
  168. background-position: center;
  169. padding: 2px;
  170. right: 10px;
  171. top: 10px;
  172. left: 10px;
  173. align-items: center;
  174. border-radius: 3px;
  175. }
  176. .btn-text-bg {
  177. width: 14px;
  178. height: 14px;
  179. position: absolute;
  180. background-size: 100% 100%;
  181. right: 10px;
  182. top: 9px;
  183. left: 10px;
  184. bottom: 10px;
  185. }
  186. .btn-text {
  187. margin-left: 3px;
  188. font-size: 12px;
  189. color: #fff;
  190. white-space: nowrap;
  191. margin-left: 30px;
  192. line-height: 26px;
  193. }
  194. .historyBtn {
  195. width: 20px;
  196. height: 20px;
  197. position: absolute;
  198. background-size: 100% 100%;
  199. background-position: center;
  200. padding: 2px;
  201. right: 10px;
  202. top: 100px;
  203. }
  204. .historyBtn1 {
  205. width: 20px;
  206. height: 20px;
  207. position: absolute;
  208. background-size: 100% 100%;
  209. background-position: center;
  210. left: 3px;
  211. top: 80px;
  212. }
  213. .divider0 {
  214. border-bottom: 1px solid #1074c1;
  215. width: auto;
  216. margin: 0 10px;
  217. height: 13%;
  218. display: block;
  219. background: transparent;
  220. }
  221. .foldBtn {
  222. width: 20px;
  223. height: 20px;
  224. position: absolute;
  225. background-size: 100% 100%;
  226. background-position: center;
  227. padding: 2px;
  228. right: 10px;
  229. bottom: 10px;
  230. }
  231. .right-side {
  232. flex: 1; /* 占据剩余空间 */
  233. background: #09172c;
  234. }
  235. .input-content {
  236. display: flex;
  237. flex-direction: column;
  238. justify-content: flex-end; /* 内容底部对齐 */
  239. height: 100%;
  240. padding: 20px; /* 统一内边距 */
  241. }
  242. .ask-message {
  243. float: right;
  244. max-width: 70%;
  245. padding: 10px;
  246. margin: 10px;
  247. border-radius: 5px;
  248. color: #fff;
  249. background: #0c2842;
  250. }
  251. .answer {
  252. display: flex;
  253. flex-direction: row;
  254. }
  255. .answerIcon {
  256. margin-top: 10px;
  257. width: 35px;
  258. height: 35px;
  259. background-image: url('/@/assets/images/vent/home/answerIcon.svg');
  260. background-size: 100% 100%;
  261. }
  262. .answer-message {
  263. float: left;
  264. max-width: 80%;
  265. padding: 10px;
  266. margin: 10px;
  267. border-radius: 5px;
  268. color: #fff;
  269. background: #0c2842;
  270. }
  271. .dialog-area {
  272. flex: 1; /* 占据剩余空间 */
  273. gap: 10px;
  274. overflow-y: auto; /* 垂直滚动条 */
  275. margin-bottom: 10px;
  276. }
  277. .input-area {
  278. background-color: #043256 !important;
  279. display: flex;
  280. flex-direction: column;
  281. gap: 10px;
  282. }
  283. textarea {
  284. background-color: #043256 !important;
  285. width: 100%;
  286. height: 40px;
  287. border: none;
  288. resize: none;
  289. outline: none;
  290. overflow: hidden;
  291. padding: 10px; /* 统一内边距 */
  292. color: #fff;
  293. }
  294. .action-bar {
  295. display: flex;
  296. align-items: center;
  297. gap: 12px;
  298. }
  299. .upload-btn {
  300. display: flex;
  301. cursor: pointer;
  302. padding: 6px 12px;
  303. }
  304. .divider {
  305. color: #ccc;
  306. font-weight: 300;
  307. margin: 0 10px;
  308. }
  309. .send-file {
  310. width: 20px;
  311. height: 20px;
  312. background-image: url('/@/assets/images/vent/home/sendFile.svg');
  313. background-size: 100% 100%;
  314. border-radius: 4px;
  315. cursor: pointer;
  316. }
  317. .send-img {
  318. width: 20px;
  319. height: 20px;
  320. background-image: url('/@/assets/images/vent/home/sendImg.svg');
  321. background-size: 100% 100%;
  322. border-radius: 4px;
  323. cursor: pointer;
  324. }
  325. .send-btn {
  326. width: 20px;
  327. height: 20px;
  328. margin-left: auto;
  329. margin-right: 10px;
  330. background-color: #1074c1;
  331. background-image: url('/@/assets/images/vent/home/send.svg');
  332. background-position: center;
  333. background-size: 100% 100%;
  334. border-radius: 2px;
  335. cursor: pointer;
  336. }
  337. </style>