houzhongjian
2025-05-29 3880399bef4144fa15264f470a0a51034c0253c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!-- 无聊天对话时,在 message 区域-->
<template>
  <div class="conversation-empty">
    <div class="center-container">
      <div class="title no-data">暂无数据</div>
      <div class="title">欢迎来到转炉煤气调度大模型</div>
    </div>
  </div>
</template>
<script setup lang="ts">
const emits = defineEmits(['onNewConversation'])
 
import roleAvatarDefaultImg from '@/assets/ai/zhuanlu/assistant.png'
 
const roleAvatar = roleAvatarDefaultImg
 
</script>
<style scoped lang="scss">
.conversation-empty {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 100%;
 
  .box-center {
    margin-top: 35%;
    margin-left: 12%;
    display: inline-block;
 
    .tip {
      width: 120px;
      height: 40px;
      padding: 2px 0 0 10px;
      border-radius: 2px;
      font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
      font-weight: bold;
      font-size: 24px;
      text-align: left;
      font-style: normal;
      text-transform: none;
      background: linear-gradient(0deg, #49FFD3 0%, #4585FF 100%);
    }
  }
 
  .conversation-empty {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100%;
 
    .center-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
 
      .title {
        width: 120px;
        height: 40px;
        padding: 2px 0 0 10px;
        border-radius: 2px;
        font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
        font-weight: bold;
        font-size: 24px;
        text-align: left;
        font-style: normal;
        text-transform: none;
        background: linear-gradient(0deg, #49FFD3 0%, #4585FF 100%);
      }
      .no-data {
        color: rgba(143,214,254,0.8) !important;
      }
    }
  }
}
</style>