yangyin
2024-06-26 b4cb88ccd8e26dee58bde383e7c05486afb6fc4a
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<template>
    <div class="pc-prompts">
        <div class="title flex items-center justify-between">
            <div class="flex item-center">
                <span>提问示例</span>
                <span class="split"></span>
                <span class="change cursor-pointer">高级示例 ></span>
            </div>
            <div class="cursor-pointer">
                <span class="mr-1 changeBatch">换一批</span>
                <i class="iconfont icon-shuaxin"></i>
            </div>
        </div>
 
        <div class="main">
            <div
                class="main_item flex items-center cursor-pointer"
                v-for="(item, index) in state.exampleContent"
                :key="item.ID"
                :class="{ main_item_active: item.ID === state.exampleIndex }"
                @click="changeExample(item)"
            >
                <div class="left flex items-center justify-center" :class="['color' + index]">
                    <img :src="item.Icon" alt="" />
                </div>
                <div class="right">
                    <h4>{{ item.Title }}</h4>
                    <p>{{ item.Content }}</p>
                </div>
            </div>
        </div>
    </div>
</template>
 
<script setup lang="ts">
import { reactive } from 'vue';
let state = reactive({
    exampleContent: [
        {
            ID: 1,
            Icon: '/static/images/wave/ChatImg.png',
            Title: '解读李四的反应',
            Content: '张三打了李四一巴掌,李四对张三说:"你是不是没吃饭",李四说这句话含义是?',
        },
        {
            ID: 2,
            Icon: '/static/images/wave/ChatImg.png',
            Title: '解释努力与内卷的区别',
            Content: '怎么解释努力和内卷的区别?',
        },
        {
            ID: 3,
            Icon: '/static/images/wave/ChatImg.png',
            Title: '其他问题',
            Content: '请搜索你想知道的问题',
        },
        {
            ID: 4,
            Icon: '/static/images/wave/ChatImg.png',
            Title: '给宝宝取有文化内涵的名字',
            Content: '请以诗经中的典故给男宝宝取名,姓顾,名字要求3个字,给5个名字供我选择。',
        },
    ],
    exampleIndex: 0,
});
const changeExample = (item) => {
    state.exampleIndex = item.ID;
};
</script>
<style scoped lang="scss">
.pc-prompts {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 40px;
    width: 760px;
    padding: 0;
    font-size: 14px;
    .title {
        color: #999;
        line-height: 14px;
        .split {
            height: 12px;
            width: 2px;
            background-color: #ccc;
            margin: 0 10px;
        }
        span {
            color: rgb(32, 33, 35);
            font-size: 14px;
        }
        .changeBatch {
            color: #999;
            font-size: 12px;
            transition: color 0.2s ease-in-out;
        }
        .change {
            color: #999;
            transition: color 0.2s ease-in-out;
        }
    }
    .main {
        width: calc(100% + 16px);
        display: flex;
        flex-wrap: wrap;
        margin: 4px -8px 0;
        &_item {
            box-sizing: border-box;
            width: calc(50% - 16px);
            margin: 8px;
            padding: 12px;
            border: 1px solid #d9dbde;
            border-radius: 5px;
            background-color: transparent;
            -webkit-transition: border-color 0.2s, background-color 0.2s;
            -o-transition: border-color 0.2s, background-color 0.2s;
            transition: border-color 0.2s, background-color 0.2s;
 
            .left {
                width: 50px;
                height: 50px;
                border-radius: 5px;
            }
            .color0 {
                background: linear-gradient(180deg, #f63c8b, #fd216c);
            }
            .color1 {
                background: linear-gradient(180deg, #0ebfe1, #0ab2d3);
            }
            .color2 {
                background: linear-gradient(180deg, #9647fe, #7b5be8);
            }
            .color3 {
                background: linear-gradient(180deg, #fb894c, #ff7958);
            }
            .right {
                flex: 1;
                min-width: 0;
                margin-left: 12px;
                h4 {
                    color: #202123;
                    font-size: 13px;
                    font-weight: 500;
                    height: 16px;
                    transition: background-color 0.2s;
                }
                p {
                    font-size: 12px;
                    margin-top: 6px;
                    height: 34px;
                    line-height: 17px;
                    color: #8d8e99;
                    overflow: hidden;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                }
            }
        }
        &_item_active {
            border: 1px solid #007aff;
            background-color: #ebeef3;
            .right {
                h4 {
                    color: #007aff;
                }
            }
        }
    }
}
</style>