2023-02-28 06:19:13 +00:00
|
|
|
|
|
|
|
|
import wePng from '@/assets/image/we.png'
|
2022-03-24 04:15:14 +00:00
|
|
|
export const chatData = [
|
2022-08-05 08:04:07 +00:00
|
|
|
{
|
|
|
|
|
is_self: 0,
|
2022-11-15 15:15:55 +00:00
|
|
|
created_at: '2022-11-15',
|
2023-02-28 06:19:13 +00:00
|
|
|
content: wePng,
|
2022-08-05 08:04:07 +00:00
|
|
|
id: 1,
|
2022-11-15 15:15:55 +00:00
|
|
|
type: 2, // 文字
|
2022-08-05 08:04:07 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
is_self: 1,
|
|
|
|
|
created_at: '2022-03-11',
|
|
|
|
|
content: 'hello 你好呀!',
|
|
|
|
|
id: 2,
|
|
|
|
|
type: 1, // 文字
|
|
|
|
|
},
|
2022-11-15 15:15:55 +00:00
|
|
|
|
2022-03-24 04:15:14 +00:00
|
|
|
]
|