@ndscnj/roomkit-web-vue3 25.12.2417 → 25.12.2418
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/RoomFooter/VoteControl/MoreControlH5.vue.d.ts +2 -2
- package/es/components/RoomFooter/VoteControl/MoreControlH5.vue.mjs +1 -1
- package/es/components/RoomFooter/VoteControl/MoreControlH5.vue2.mjs +77 -31
- package/es/components/RoomFooter/VoteControl/MoreControlPC.vue.d.ts +1 -5
- package/es/components/RoomFooter/VoteControl/MoreControlPC.vue.mjs +47 -5
- package/es/components/RoomFooter/VoteControl/MoreControlPC.vue2.mjs +1 -56
- package/es/components/RoomFooter/VoteControl/index.d.ts +3 -3
- package/es/components/RoomFooter/VoteControl/index.mjs +2 -2
- package/es/components/RoomFooter/VoteControl/useMoreControlHooks.mjs +1 -3
- package/es/components/RoomFooter/index/index.d.ts +4 -31
- package/es/components/RoomFooter/index/indexH5.vue.d.ts +1 -12
- package/es/components/RoomFooter/index/indexH5.vue.mjs +1 -1
- package/es/components/RoomFooter/index/indexH5.vue2.mjs +5 -20
- package/es/components/RoomSidebar/index.d.ts +1 -17
- package/es/components/RoomSidebar/indexH5.vue.d.ts +1 -10
- package/es/components/RoomSidebar/indexH5.vue.mjs +1 -1
- package/es/components/RoomSidebar/indexH5.vue2.mjs +3 -10
- package/es/components/RoomVote/index.d.ts +6 -2
- package/es/components/RoomVote/indexH5.vue.d.ts +5 -10
- package/es/components/RoomVote/indexH5.vue.mjs +2 -9
- package/es/components/RoomVote/indexH5.vue2.mjs +51 -0
- package/es/components/RoomVote/useRoomMoreHooks.mjs +43 -0
- package/es/conference.vue.mjs +1 -1
- package/es/conference.vue2.mjs +7 -2
- package/es/index.mjs +118 -61
- package/lib/components/Chat/index/indexH5.vue.js +1 -1
- package/lib/components/ManageMember/MemberItem/indexH5.vue.js +1 -1
- package/lib/components/ManageMember/indexH5.vue.js +1 -1
- package/lib/components/RoomFooter/VoteControl/MoreControlH5.vue.d.ts +2 -2
- package/lib/components/RoomFooter/VoteControl/MoreControlH5.vue.js +1 -1
- package/lib/components/RoomFooter/VoteControl/MoreControlH5.vue2.js +76 -30
- package/lib/components/RoomFooter/VoteControl/MoreControlPC.vue.d.ts +1 -5
- package/lib/components/RoomFooter/VoteControl/MoreControlPC.vue.js +47 -5
- package/lib/components/RoomFooter/VoteControl/MoreControlPC.vue2.js +2 -57
- package/lib/components/RoomFooter/VoteControl/index.d.ts +3 -3
- package/lib/components/RoomFooter/VoteControl/index.js +2 -2
- package/lib/components/RoomFooter/VoteControl/useMoreControlHooks.js +1 -3
- package/lib/components/RoomFooter/index/index.d.ts +4 -31
- package/lib/components/RoomFooter/index/indexH5.vue.d.ts +1 -12
- package/lib/components/RoomFooter/index/indexH5.vue.js +2 -2
- package/lib/components/RoomFooter/index/indexH5.vue2.js +4 -19
- package/lib/components/RoomInvite/indexH5.vue.js +1 -1
- package/lib/components/RoomMore/indexH5.vue.js +1 -1
- package/lib/components/RoomSidebar/index.d.ts +1 -17
- package/lib/components/RoomSidebar/indexH5.vue.d.ts +1 -10
- package/lib/components/RoomSidebar/indexH5.vue.js +2 -2
- package/lib/components/RoomSidebar/indexH5.vue2.js +2 -9
- package/lib/components/RoomVote/index.d.ts +6 -2
- package/lib/components/RoomVote/indexH5.vue.d.ts +5 -10
- package/lib/components/RoomVote/indexH5.vue.js +2 -9
- package/lib/components/RoomVote/indexH5.vue2.js +51 -0
- package/lib/components/RoomVote/useRoomMoreHooks.js +43 -0
- package/lib/conference.vue.js +1 -1
- package/lib/conference.vue2.js +7 -2
- package/lib/index.js +118 -61
- package/package.json +1 -1
- package/src/TUIRoom/components/RoomFooter/VoteControl/MoreControlH5.vue +108 -26
- package/src/TUIRoom/components/RoomFooter/VoteControl/MoreControlPC.vue +4 -13
- package/src/TUIRoom/components/RoomFooter/VoteControl/useMoreControlHooks.ts +1 -2
- package/src/TUIRoom/components/RoomFooter/index/indexH5.vue +2 -15
- package/src/TUIRoom/components/RoomSidebar/indexH5.vue +0 -5
- package/src/TUIRoom/components/RoomVote/indexH5.vue +118 -61
- package/src/TUIRoom/conference.vue +4 -1
- package/es/assets/imgs/vote-icon.png.mjs +0 -4
- package/lib/assets/imgs/vote-icon.png.js +0 -4
|
@@ -1,84 +1,141 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="
|
|
3
|
-
<
|
|
2
|
+
<div class="contact-container-main">
|
|
3
|
+
<div class="contact-title-main">
|
|
4
|
+
<div>{{ t('Contact us') }}</div>
|
|
5
|
+
<span v-tap="handleCloseContact" class="cancel">{{ t('Cancel') }}</span>
|
|
6
|
+
</div>
|
|
7
|
+
<div
|
|
8
|
+
v-for="item in contactContentList"
|
|
9
|
+
:key="item.id"
|
|
10
|
+
class="contact-content-main"
|
|
11
|
+
>
|
|
12
|
+
<span class="contact-title">{{ t(item.title) }}</span>
|
|
13
|
+
<span class="contact-content">{{ item.content }}</span>
|
|
14
|
+
<IconCopy v-tap="() => onCopy(item.copyLink)" class="copy" />
|
|
15
|
+
</div>
|
|
16
|
+
<span class="contact-bottom">
|
|
17
|
+
{{
|
|
18
|
+
t(
|
|
19
|
+
'If you have any questions, please feel free to join our QQ group or send an email'
|
|
20
|
+
)
|
|
21
|
+
}}
|
|
22
|
+
</span>
|
|
4
23
|
</div>
|
|
5
24
|
</template>
|
|
6
25
|
|
|
7
26
|
<script setup lang="ts">
|
|
27
|
+
import useRoomMoreControl from './useRoomMoreHooks';
|
|
28
|
+
import { IconCopy } from '@tencentcloud/uikit-base-component-vue3';
|
|
29
|
+
import vTap from '../../directives/vTap';
|
|
30
|
+
|
|
31
|
+
const { t, onCopy, contactContentList } = useRoomMoreControl();
|
|
32
|
+
|
|
33
|
+
const emit = defineEmits(['on-close-contact']);
|
|
34
|
+
|
|
35
|
+
function handleCloseContact() {
|
|
36
|
+
emit('on-close-contact');
|
|
37
|
+
}
|
|
8
38
|
</script>
|
|
9
39
|
|
|
10
40
|
<style lang="scss" scoped>
|
|
11
|
-
|
|
12
|
-
padding:
|
|
41
|
+
span {
|
|
42
|
+
padding-right: 5px;
|
|
43
|
+
font-size: 12px;
|
|
44
|
+
font-weight: 500;
|
|
45
|
+
line-height: 17px;
|
|
46
|
+
}
|
|
13
47
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
48
|
+
.contact-container-main {
|
|
49
|
+
position: fixed;
|
|
50
|
+
bottom: 0;
|
|
51
|
+
display: flex;
|
|
52
|
+
flex-direction: column;
|
|
53
|
+
width: 100%;
|
|
54
|
+
padding-bottom: 4vh;
|
|
55
|
+
border-radius: 15px 15px 0 0;
|
|
56
|
+
animation-name: popup;
|
|
57
|
+
animation-duration: 200ms;
|
|
58
|
+
background-color: var(--bg-color-operate);
|
|
17
59
|
|
|
18
|
-
|
|
19
|
-
|
|
60
|
+
@keyframes popup {
|
|
61
|
+
from {
|
|
62
|
+
transform: scaleY(0);
|
|
63
|
+
transform-origin: bottom;
|
|
20
64
|
}
|
|
21
65
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
padding-left: 8px;
|
|
26
|
-
font-size: 14px;
|
|
27
|
-
font-weight: 400;
|
|
28
|
-
line-height: 22px;
|
|
29
|
-
color: var(--text-color-primary);
|
|
66
|
+
to {
|
|
67
|
+
transform: scaleY(1);
|
|
68
|
+
transform-origin: bottom;
|
|
30
69
|
}
|
|
31
70
|
}
|
|
32
71
|
|
|
33
|
-
.
|
|
34
|
-
position: relative;
|
|
72
|
+
.contact-title-main {
|
|
35
73
|
display: flex;
|
|
36
|
-
flex-direction:
|
|
74
|
+
flex-direction: row;
|
|
75
|
+
align-items: center;
|
|
76
|
+
padding: 30px 0 20px 25px;
|
|
77
|
+
font-family: 'PingFang SC';
|
|
78
|
+
font-size: 20px;
|
|
79
|
+
font-style: normal;
|
|
80
|
+
font-weight: 500;
|
|
81
|
+
line-height: 24px;
|
|
82
|
+
color: var(--text-color-primary);
|
|
83
|
+
}
|
|
37
84
|
|
|
38
|
-
|
|
39
|
-
|
|
85
|
+
.contact-content-main {
|
|
86
|
+
display: flex;
|
|
87
|
+
flex-direction: row;
|
|
88
|
+
align-items: center;
|
|
89
|
+
width: 90%;
|
|
90
|
+
height: 15%;
|
|
91
|
+
padding: 0 0 0 25px;
|
|
92
|
+
margin-bottom: 10px;
|
|
93
|
+
}
|
|
40
94
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
95
|
+
.contact-title,
|
|
96
|
+
.contact-content {
|
|
97
|
+
width: 28%;
|
|
98
|
+
font-family: 'PingFang SC';
|
|
99
|
+
font-size: 14px;
|
|
100
|
+
font-style: normal;
|
|
101
|
+
font-weight: 400;
|
|
102
|
+
line-height: 20px;
|
|
103
|
+
white-space: nowrap;
|
|
104
|
+
color: var(--text-color-primary);
|
|
105
|
+
}
|
|
49
106
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
font-size: 14px;
|
|
59
|
-
font-weight: 500;
|
|
60
|
-
line-height: 22px;
|
|
61
|
-
text-overflow: ellipsis;
|
|
62
|
-
white-space: nowrap;
|
|
63
|
-
border-radius: 8px;
|
|
64
|
-
outline: none;
|
|
65
|
-
transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
66
|
-
color: var(--text-color-primary);
|
|
67
|
-
background-color: var(--bg-color-input);
|
|
68
|
-
border: 1px solid var(--stroke-color-module);
|
|
69
|
-
}
|
|
107
|
+
.contact-content {
|
|
108
|
+
width: 62%;
|
|
109
|
+
overflow: hidden;
|
|
110
|
+
font-size: 14px;
|
|
111
|
+
text-overflow: ellipsis;
|
|
112
|
+
white-space: nowrap;
|
|
113
|
+
color: var(--text-color-secondary);
|
|
114
|
+
}
|
|
70
115
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
}
|
|
116
|
+
.contact-bottom {
|
|
117
|
+
width: 90%;
|
|
118
|
+
padding-left: 40px;
|
|
119
|
+
font-family: 'PingFang SC';
|
|
120
|
+
font-size: 12px;
|
|
121
|
+
font-style: normal;
|
|
122
|
+
font-weight: 400;
|
|
123
|
+
line-height: 17px;
|
|
124
|
+
text-align: center;
|
|
125
|
+
color: var(--text-color-secondary);
|
|
82
126
|
}
|
|
127
|
+
|
|
128
|
+
.copy {
|
|
129
|
+
margin-left: 30px;
|
|
130
|
+
color: var(--text-color-link);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.cancel {
|
|
135
|
+
flex: 1;
|
|
136
|
+
padding-right: 30px;
|
|
137
|
+
font-size: 16px;
|
|
138
|
+
font-weight: 400;
|
|
139
|
+
text-align: end;
|
|
83
140
|
}
|
|
84
141
|
</style>
|
|
@@ -18,8 +18,11 @@
|
|
|
18
18
|
@show-overlay="handleShowOverlay"
|
|
19
19
|
@on-vote="onVote"
|
|
20
20
|
>
|
|
21
|
+
<template #content>
|
|
22
|
+
<slot name="content"></slot>
|
|
23
|
+
</template>
|
|
21
24
|
</room-footer>
|
|
22
|
-
<room-sidebar
|
|
25
|
+
<room-sidebar>
|
|
23
26
|
<template #content>
|
|
24
27
|
<slot name="content"></slot>
|
|
25
28
|
</template>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
const _imports_0 = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAKhSURBVFiF7ZWxftMwEIf/F3lgI0yl1VDzBNwv8sBGusHWbt2IR6a2T9DyBC1P0HRkKmxsKVM7WI76BkxJx3RjiHMMOMW4tmO70Ilbkp9P0vfJ0p0VHhjMzFrrS631s8lkctF0vnooXCk1AvAcQF9rTU0lWgtk4CCitwAYwG5TiVYCWXiSJFtxHF+tra196nQ6b5pKNBZgZl8pdbmEO+ccANzc3PxoI9FIIIWPADzJwpfRRqK2QAbeLYK3laglkIH7IvJ+PB5/rRrfRGKlQA4exnE8rCNdV6JSoC28iQT9TXiv1xssFguXvx/M3FVKjQH4RLQVRdGdRKcpnJm7RXOCIDgiolOl1F5BejlnNp/PZ9nEPYEquDHmXCk1ZmY/DxeRQwAuSZKDkvUKq+eegFLquOK1nwHwlVKjpUQOvuWcu9thdjNEtFNUuvcEiOg6/X2dz1lrP4tIuJQIguC4DlxEwuy5/7Hh/IPJZHKhtSYA+xsbG/50Ov2SzU+nU7e+vn5LRLsAXtWBV13gwjKsIXGltf62PPO2cCzLkJm7nudxPikiewC2AQyttWHVQnk4gCERnZWNnc/nzjk3o8yntbC8MlEpkYPXjR0yxowAsIh8LBtFRC8BbBPRSRRFB/l87rafLBaL21VkInoHAJ6I+ETk4jg+qppgjDkVkf0gCG6jKLobmz9za22tdm2M2QQwKOyERZG+/qGIHAZBcITfLfY8hR80/VYAgNdksLU2NMYglXgqIn0ATEQfrLUnTeErBXq93qCoIeFXheynf2cismmMOS0Zdx3HcalcqQAzd4nouEZ1dAEMypJE9B1AcwHn3IyZX9QQWBWzqmTlEaQdrnKBh0btKvgv8K/CS29pP23JjxkMwHlJkoRpN+s/soBLkiT8CfdGvsMQPqX9AAAAAElFTkSuQmCC";
|
|
2
|
-
export {
|
|
3
|
-
_imports_0 as default
|
|
4
|
-
};
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
const _imports_0 = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAKhSURBVFiF7ZWxftMwEIf/F3lgI0yl1VDzBNwv8sBGusHWbt2IR6a2T9DyBC1P0HRkKmxsKVM7WI76BkxJx3RjiHMMOMW4tmO70Ilbkp9P0vfJ0p0VHhjMzFrrS631s8lkctF0vnooXCk1AvAcQF9rTU0lWgtk4CCitwAYwG5TiVYCWXiSJFtxHF+tra196nQ6b5pKNBZgZl8pdbmEO+ccANzc3PxoI9FIIIWPADzJwpfRRqK2QAbeLYK3laglkIH7IvJ+PB5/rRrfRGKlQA4exnE8rCNdV6JSoC28iQT9TXiv1xssFguXvx/M3FVKjQH4RLQVRdGdRKcpnJm7RXOCIDgiolOl1F5BejlnNp/PZ9nEPYEquDHmXCk1ZmY/DxeRQwAuSZKDkvUKq+eegFLquOK1nwHwlVKjpUQOvuWcu9thdjNEtFNUuvcEiOg6/X2dz1lrP4tIuJQIguC4DlxEwuy5/7Hh/IPJZHKhtSYA+xsbG/50Ov2SzU+nU7e+vn5LRLsAXtWBV13gwjKsIXGltf62PPO2cCzLkJm7nudxPikiewC2AQyttWHVQnk4gCERnZWNnc/nzjk3o8yntbC8MlEpkYPXjR0yxowAsIh8LBtFRC8BbBPRSRRFB/l87rafLBaL21VkInoHAJ6I+ETk4jg+qppgjDkVkf0gCG6jKLobmz9za22tdm2M2QQwKOyERZG+/qGIHAZBcITfLfY8hR80/VYAgNdksLU2NMYglXgqIn0ATEQfrLUnTeErBXq93qCoIeFXheynf2cismmMOS0Zdx3HcalcqQAzd4nouEZ1dAEMypJE9B1AcwHn3IyZX9QQWBWzqmTlEaQdrnKBh0btKvgv8K/CS29pP23JjxkMwHlJkoRpN+s/soBLkiT8CfdGvsMQPqX9AAAAAElFTkSuQmCC";
|
|
4
|
-
exports.default = _imports_0;
|