diff --git a/src/actions/ConversationActions.js b/src/actions/ConversationActions.js
index 1be1b28..9ba3357 100644
--- a/src/actions/ConversationActions.js
+++ b/src/actions/ConversationActions.js
@@ -3,7 +3,7 @@ import { groupBy } from '@/utils/utils';
import { fetchJSON, postJSON } from '@/utils/request'
import { parseRenderMessageList } from '@/lib/msgUtils';
-const API_HOST = 'https://p9axztuwd7x8a7.mycht.cn/whatsapp_callback';
+const API_HOST = 'https://p9axztuwd7x8a7.mycht.cn/whatsapp_callback_cn';
export const fetchTemplates = async () => {
const data = await fetchJSON(`${API_HOST}/listtemplates`);
diff --git a/src/stores/ConversationStore.js b/src/stores/ConversationStore.js
index c815290..9072c66 100644
--- a/src/stores/ConversationStore.js
+++ b/src/stores/ConversationStore.js
@@ -7,7 +7,7 @@ import { devtools } from 'zustand/middleware';
// const WS_URL = 'ws://202.103.68.144:8888/whatever/';
// const WS_URL = 'ws://120.79.9.217:10022/whatever/';
-const WS_URL = 'wss://p9axztuwd7x8a7.mycht.cn/whatsapp_callback'; // prod:
+const WS_URL = 'wss://p9axztuwd7x8a7.mycht.cn/whatsapp_callback_cn'; // prod:
const initialConversationState = {
// websocket: null,
diff --git a/src/stores/OrderStore.js b/src/stores/OrderStore.js
index d63adbb..7e168b5 100644
--- a/src/stores/OrderStore.js
+++ b/src/stores/OrderStore.js
@@ -2,7 +2,7 @@ import { create } from 'zustand'
import { devtools } from 'zustand/middleware'
import { fetchJSON, postJSON } from '@/utils/request'
-const API_HOST = 'https://p9axztuwd7x8a7.mycht.cn/whatsapp_callback';
+const API_HOST = 'https://p9axztuwd7x8a7.mycht.cn/whatsapp_callback_cn';
const useOrderStore = create((set, get) => ({
@@ -35,4 +35,4 @@ const useOrderStore = create((set, get) => ({
}))
-export default useOrderStore
\ No newline at end of file
+export default useOrderStore
\ No newline at end of file
diff --git a/src/views/ChatHistory.jsx b/src/views/ChatHistory.jsx
index dc608c9..f4f3528 100644
--- a/src/views/ChatHistory.jsx
+++ b/src/views/ChatHistory.jsx
@@ -53,16 +53,28 @@ const SearchForm = memo(function ({ onSubmit }) {
(option?.label ?? '').toLowerCase().includes(input.toLowerCase())}
options={[
{
- value: 'Coco',
- label: 'Coco',
+ value: '杨新玲',
+ label: '杨新玲',
},
{
- value: 'Ann',
- label: 'Ann',
+ value: '骆梅玉',
+ label: '骆梅玉',
},
{
- value: 'Lora',
- label: 'Lora',
+ value: '秦宇尘',
+ label: '秦宇尘',
+ },
+ {
+ value: '莫梦瑶',
+ label: '莫梦瑶',
+ },
+ {
+ value: '秦雯萱',
+ label: '秦雯萱',
+ },
+ {
+ value: '王露加',
+ label: '王露加',
},
]}
/>
@@ -76,16 +88,24 @@ const SearchForm = memo(function ({ onSubmit }) {
(option?.label ?? '').toLowerCase().includes(input.toLowerCase())}
options={[
{
- value: 'jack',
- label: 'Jack',
+ value: 'Denise',
+ label: 'Denise',
+ },
+ {
+ value: 'Kennedy',
+ label: 'Kennedy',
+ },
+ {
+ value: 'Harsh',
+ label: 'Harsh',
},
{
- value: 'lucy',
- label: 'Lucy',
+ value: 'SMLiew',
+ label: 'SMLiew',
},
{
- value: 'tom',
- label: 'Tom',
+ value: 'See Kok Ching',
+ label: 'See Kok Ching',
},
]}
/>
diff --git a/src/views/Conversations/Components/CustomerProfile.jsx b/src/views/Conversations/Components/CustomerProfile.jsx
index 5fba7eb..c54d462 100644
--- a/src/views/Conversations/Components/CustomerProfile.jsx
+++ b/src/views/Conversations/Components/CustomerProfile.jsx
@@ -77,12 +77,12 @@ const CustomerProfile = (() => {