Houjie
2025-04-11 1bf977929dd324f3ac64b70debd8a79443c54392
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
<template>
    <view>
        <cu-custom bgColor="bg-gradual-pink" :isBack="true"><block slot="backText">返回</block><block slot="content">聊天</block></cu-custom>
        <view class="cu-chat">
            <view class="cu-item self">
                <view class="main">
                    <view class="content bg-green shadow">
                        <text>喵喵喵!喵喵喵!喵喵喵!喵喵!喵喵!!喵!喵喵喵!</text>
                    </view>
                </view>
                <view class="cu-avatar radius" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big107000.jpg);"></view>
                <view class="date">2018年3月23日 13:23</view>
            </view>
            <view class="cu-info round">对方撤回一条消息!</view>
            <view class="cu-item">
                <view class="cu-avatar radius" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big143004.jpg);"></view>
                <view class="main">
                    <view class="content shadow">
                        <text>喵喵喵!喵喵喵!</text>
                    </view>
                </view>
                <view class="date "> 13:23</view>
            </view>
            <view class="cu-info">
                <text class="cuIcon-roundclosefill text-red "></text> 对方拒绝了你的消息
            </view>
            <view class="cu-info">
                对方开启了好友验证,你还不是他(她)的好友。请先发送好友验证请求,对方验证通过后,才能聊天。
                <text class="text-blue">发送好友验证</text>
            </view>
            <view class="cu-item self">
                <view class="main">
                    <image src="https://ossweb-img.qq.com/images/lol/web201310/skin/big10006.jpg" class="radius" mode="widthFix"></image>
                </view>
                <view class="cu-avatar radius" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big107000.jpg);"></view>
                <view class="date"> 13:23</view>
            </view>
            <view class="cu-item self">
                <view class="main">
                    <view class="action text-bold text-grey">
                        3"
                    </view>
                    <view class="content shadow">
                        <text class="cuIcon-sound text-xxl padding-right-xl"> </text>
                    </view>
                </view>
                <view class="cu-avatar radius" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big107000.jpg);"></view>
                <view class="date">13:23</view>
            </view>
            <view class="cu-item self">
                <view class="main">
                    <view class="action">
                        <text class="cuIcon-locationfill text-orange text-xxl"></text>
                    </view>
                    <view class="content shadow">
                        喵星球,喵喵市
                    </view>
                </view>
                <view class="cu-avatar radius" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big107000.jpg);"></view>
                <view class="date">13:23</view>
            </view>
            <view class="cu-item">
                <view class="cu-avatar radius" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big143004.jpg);"></view>
                <view class="main">
                    <view class="content shadow">
                        @#$^&**
                    </view>
                    <view class="action text-grey">
                        <text class="cuIcon-warnfill text-red text-xxl"></text> <text class="text-sm margin-left-sm">翻译错误</text>
                    </view>
                </view>
                <view class="date">13:23</view>
            </view>
        </view>
 
        <view class="cu-bar foot input" :style="[{bottom:InputBottom+'px'}]">
            <view class="action">
                <text class="cuIcon-sound text-grey"></text>
            </view>
            <input class="solid-bottom" :adjust-position="false" :focus="false" maxlength="300" cursor-spacing="10"
             @focus="InputFocus" @blur="InputBlur"></input>
            <view class="action">
                <text class="cuIcon-emojifill text-grey"></text>
            </view>
            <button class="cu-btn bg-green shadow">发送</button>
        </view>
 
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                InputBottom: 0
            };
        },
        methods: {
            InputFocus(e) {
                this.InputBottom = e.detail.height
            },
            InputBlur(e) {
                this.InputBottom = 0
            }
        }
    }
</script>
 
<style>
page{
  padding-bottom: 100upx;
}
</style>