123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- <template>
- <div class="chat-container">
- <div class="header">
- <div class="toggle-buttons">
- <button :class="['toggle-btn', { active: selectedPlatform === 'whatsapp' }]" @click="selectPlatform('whatsapp')">
- <img src="@/assets/onlineChat/whatsapp-icon.png" alt="" />
- WhatsApp
- </button>
- <button :class="['toggle-btn', { active: selectedPlatform === 'facebook' }]" @click="selectPlatform('facebook')">
- <img src="@/assets/onlineChat/facebook-icon.png" alt="" />
- Facebook
- </button>
- </div>
- </div>
- <!-- 主体内容区 -->
- <div class="main-content">
- <!-- 左侧面板 -->
- <div class="left-panel">
- <!-- 聊天列表 -->
- <div class="chat-list">
- <div
- v-for="chat in filteredChats"
- :key="chat.id"
- :class="['chat-item', { active: selectedChatId === chat.id }]"
- @click="selectChat(chat.id)"
- >
- <a-avatar :src="chat.avatar" />
- <div class="chat-info">
- <div class="chat-header">
- <span class="name">{{ chat.name }}</span>
- <span class="time">{{ chat.lastMessageTime }}</span>
- </div>
- <div class="last-message">{{ chat.lastMessage }}</div>
- </div>
- </div>
- </div>
- </div>
- <!-- 右侧对话详情 -->
- <div class="chat-detail" v-if="selectedChatId">
- <!-- 对话头部信息 -->
- <div class="chat-header">
- <div class="chat-user-info">
- <a-avatar :src="currentChat.avatar" />
- <span class="user-name">{{ currentChat.name }}</span>
- </div>
- </div>
- <!-- 聊天记录区域 -->
- <div class="chat-messages">
- <div v-for="message in currentChatMessages" :key="message.id" :class="['message', message.type]">
- <a-avatar :src="message.avatar" />
- <div class="message-content">
- <div class="message-info">
- <span class="sender">{{ message.sender }}</span>
- <span class="time">{{ message.time }}</span>
- </div>
- <div class="message-text">{{ message.content }}</div>
- </div>
- </div>
- </div>
- <!-- 回复输入框 -->
- <div class="chat-input">
- <a-textarea v-model:value="replyMessage" placeholder="请输入消息..." :auto-size="{ minRows: 2, maxRows: 5 }" />
- <a-button type="primary" @click="sendMessage">发送</a-button>
- </div>
- </div>
- <!-- 未选择对话时的提示 -->
- <div class="no-chat-selected" v-else>
- <MessageOutlined style="font-size: 48px" />
- <p>快来选择联系人进入会话吧</p>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { DownOutlined, MessageOutlined, SearchOutlined } from '@ant-design/icons-vue';
- export default {
- components: {
- DownOutlined,
- SearchOutlined,
- MessageOutlined,
- },
- data() {
- return {
- selectedPlatform: 'whatsapp', // 默认选中WhatsApp
- showAccountDropdown: false,
- currentAccount: {
- id: 1,
- avatar: '@/assets/onlineChat/whatsapp-icon.png',
- name: 'Adweb AI',
- },
- accounts: [
- {
- id: 1,
- avatar: '@/assets/onlineChat/whatsapp-icon.png',
- name: 'Adweb AI',
- },
- {
- id: 2,
- avatar: '@/assets/onlineChat/whatsapp-icon.png',
- name: 'Adweb AI 2',
- },
- ],
- searchKeyword: '',
- currentTab: 'all',
- selectedChatId: null,
- chats: [
- {
- id: 1,
- name: 'John Doe',
- avatar: '/path/to/avatar1.jpg',
- lastMessage: 'Hello, how are you?',
- lastMessageTime: '10:30',
- },
- {
- id: 2,
- name: 'Jane Smith',
- avatar: '/path/to/avatar2.jpg',
- lastMessage: 'See you tomorrow!',
- lastMessageTime: '09:15',
- },
- ],
- messages: {
- 1: [
- {
- id: 1,
- type: 'received',
- sender: 'John Doe',
- avatar: '/path/to/avatar1.jpg',
- content: 'Hello, how are you?',
- time: '10:30',
- },
- {
- id: 2,
- type: 'sent',
- sender: 'Me',
- avatar: '/path/to/my-avatar.jpg',
- content: "I'm good, thanks!",
- time: '10:31',
- },
- ],
- 2: [
- // messages for chat 2
- ],
- },
- replyMessage: '',
- };
- },
- computed: {
- filteredChats() {
- return this.chats.filter((chat) => chat.name.toLowerCase().includes(this.searchKeyword.toLowerCase()));
- },
- currentChatMessages() {
- return this.messages[this.selectedChatId] || [];
- },
- currentChat() {
- return this.chats.find((chat) => chat.id === this.selectedChatId) || {};
- },
- },
- methods: {
- selectPlatform(platform) {
- this.selectedPlatform = platform;
- },
- selectChat(chatId) {
- this.selectedChatId = chatId;
- },
- switchAccount(account) {
- this.currentAccount = account;
- this.showAccountDropdown = false;
- },
- sendMessage() {
- if (!this.replyMessage.trim()) return;
- const newMessage = {
- id: Date.now(),
- type: 'sent',
- sender: 'Me',
- avatar: this.currentAccount.avatar,
- content: this.replyMessage,
- time: new Date().toLocaleTimeString('zh-CN', { hour: '2-digit', minute: '2-digit' }),
- };
- if (!this.messages[this.selectedChatId]) {
- this.messages[this.selectedChatId] = [];
- }
- this.messages[this.selectedChatId].push(newMessage);
- this.replyMessage = '';
- },
- },
- };
- </script>
- <style scoped>
- .chat-container {
- padding: 20px;
- }
- .header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20px;
- }
- .toggle-buttons {
- display: flex;
- gap: 10px;
- }
- .toggle-btn {
- padding: 8px 16px;
- border: 1px solid #dcdfe6;
- background-color: #fff;
- border-radius: 20px;
- cursor: pointer;
- transition: all 0.3s;
- display: flex;
- align-items: center;
- gap: 8px;
- }
- .toggle-btn:hover {
- background-color: #f5f7fa;
- }
- .toggle-btn.active {
- background-color: #409eff;
- color: #fff;
- border-color: #409eff;
- }
- /* 图标样式 */
- .icon-whatsapp,
- .icon-whatsapp-business,
- .icon-facebook {
- display: inline-block;
- width: 20px;
- height: 20px;
- background-size: contain;
- background-repeat: no-repeat;
- }
- .social-management-btn {
- padding: 8px 16px;
- border: 1px solid #dcdfe6;
- background-color: #fff;
- border-radius: 20px;
- cursor: pointer;
- transition: all 0.3s;
- display: flex;
- align-items: center;
- gap: 8px;
- }
- .social-management-btn:hover {
- background-color: #f5f7fa;
- }
- .main-content {
- display: flex;
- height: calc(100vh - 220px);
- margin-top: 20px;
- background: #fff;
- border-radius: 4px;
- border: 1px solid #e4e7ed;
- }
- .left-panel {
- width: 300px;
- border-right: 1px solid #e4e7ed;
- display: flex;
- flex-direction: column;
- }
- .current-account {
- padding: 16px;
- border-bottom: 1px solid #e4e7ed;
- display: flex;
- align-items: center;
- gap: 8px;
- cursor: pointer;
- position: relative;
- }
- .current-account .avatar {
- width: 32px;
- height: 32px;
- border-radius: 50%;
- }
- .chat-list {
- flex: 1;
- overflow-y: auto;
- }
- .chat-item {
- display: flex;
- padding: 12px 16px;
- cursor: pointer;
- transition: background-color 0.3s;
- }
- .chat-item:hover {
- background-color: #f5f7fa;
- }
- .chat-item.active {
- background-color: #ecf5ff;
- }
- .chat-info {
- margin-left: 12px;
- flex: 1;
- }
- .chat-header {
- display: flex;
- justify-content: space-between;
- margin-bottom: 4px;
- }
- .chat-header .time {
- font-size: 12px;
- color: #909399;
- }
- .last-message {
- font-size: 13px;
- color: #606266;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .chat-detail {
- flex: 1;
- display: flex;
- flex-direction: column;
- height: 100%;
- }
- .chat-header {
- padding: 16px 20px;
- border-bottom: 1px solid #e4e7ed;
- }
- .chat-user-info {
- display: flex;
- align-items: center;
- gap: 12px;
- }
- .user-name {
- font-size: 16px;
- font-weight: 500;
- }
- .chat-messages {
- flex: 1;
- padding: 20px;
- overflow-y: auto;
- }
- .chat-input {
- padding: 16px 20px;
- border-top: 1px solid #e4e7ed;
- display: flex;
- gap: 12px;
- align-items: flex-end;
- }
- .chat-input .ant-textarea-wrapper {
- flex: 1;
- }
- .chat-input .ant-btn {
- height: 40px;
- padding: 0 24px;
- }
- .message {
- display: flex;
- margin-bottom: 20px;
- }
- .message.sent {
- flex-direction: row-reverse;
- }
- .message-content {
- margin: 0 12px;
- max-width: 60%;
- }
- .message.sent .message-content {
- text-align: right;
- }
- .message-info {
- margin-bottom: 4px;
- }
- .message-text {
- padding: 12px;
- background: #f5f7fa;
- border-radius: 4px;
- }
- .message.sent .message-text {
- background: #409eff;
- color: white;
- }
- .no-chat-selected {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- color: #909399;
- }
- .no-chat-selected .anticon {
- font-size: 48px;
- margin-bottom: 16px;
- color: #bfbfbf;
- }
- /* 调整一些样式以匹配 Ant Design 风格 */
- .search-box .ant-input-affix-wrapper {
- border-radius: 4px;
- }
- .chat-item .ant-avatar {
- width: 40px;
- height: 40px;
- }
- .dropdown-icon {
- font-size: 12px;
- color: #909399;
- transition: transform 0.3s;
- }
- .dropdown-icon.is-open {
- transform: rotate(180deg);
- }
- .account-dropdown {
- position: absolute;
- top: 100%;
- left: 0;
- right: 0;
- background: #fff;
- border: 1px solid #e4e7ed;
- border-radius: 4px;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
- z-index: 10;
- }
- .account-option {
- display: flex;
- align-items: center;
- gap: 8px;
- padding: 8px 16px;
- cursor: pointer;
- }
- .account-option:hover {
- background-color: #f5f7fa;
- }
- </style>
|