inquire-dialogue.vue
866 字节
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
<template>
<view class="inquire-group">
<image class="avatar" src="/static/images/useCoupon.png"></image>
<view class="dialogue">
<view class="top">小红书文案助手</view>
<view class="inquire">
小红书文案助手为您服务,请输入您的问题。
</view>
</view>
</view>
</template>
<script setup>
import { onLoad } from '@dcloudio/uni-app'
onLoad(() => {
})
</script>
<style lang="scss">
.inquire-group {
@include flex();
.avatar {
@include common-icon-wh(96rpx);
margin-right: 20rpx;
}
.dialogue {
.top {
font-size: 24rpx;
}
.inquire {
width: 462rpx;
padding: 32rpx;
margin-top: 8rpx;
box-sizing: border-box;
border-radius: 0 16rpx 16rpx 16rpx;
background: #242228ff;
}
}
}
</style>