@ndscnj/roomkit-web-vue3 25.12.24165 → 25.12.24166
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/assets/imgs/vote-icon.png.mjs +4 -0
- 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 +32 -76
- package/es/components/RoomFooter/VoteControl/MoreControlPC.vue.mjs +5 -53
- package/es/components/RoomFooter/VoteControl/MoreControlPC.vue2.mjs +58 -1
- package/es/components/RoomFooter/VoteControl/index.d.ts +0 -4
- package/es/components/RoomFooter/VoteControl/index.mjs +2 -2
- package/es/components/RoomSidebar/indexPC.vue.d.ts +1 -0
- package/es/components/RoomSidebar/indexPC.vue.mjs +3 -0
- package/es/components/RoomVote/index.d.ts +17 -5
- package/es/components/RoomVote/indexH5.vue.d.ts +10 -5
- package/es/components/RoomVote/indexH5.vue.mjs +9 -2
- package/es/conference.vue.d.ts +1 -0
- package/es/conference.vue.mjs +1 -1
- package/es/conference.vue2.mjs +4 -6
- package/es/index.mjs +59 -116
- package/lib/assets/imgs/vote-icon.png.js +4 -0
- 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 +30 -74
- package/lib/components/RoomFooter/VoteControl/MoreControlPC.vue.js +5 -53
- package/lib/components/RoomFooter/VoteControl/MoreControlPC.vue2.js +59 -2
- package/lib/components/RoomFooter/VoteControl/index.d.ts +0 -4
- package/lib/components/RoomFooter/VoteControl/index.js +2 -2
- package/lib/components/RoomFooter/index/indexH5.vue.js +1 -1
- package/lib/components/RoomInvite/indexH5.vue.js +1 -1
- package/lib/components/RoomMore/indexH5.vue.js +1 -1
- package/lib/components/RoomSidebar/indexH5.vue.js +1 -1
- package/lib/components/RoomSidebar/indexPC.vue.d.ts +1 -0
- package/lib/components/RoomSidebar/indexPC.vue.js +3 -0
- package/lib/components/RoomVote/index.d.ts +17 -5
- package/lib/components/RoomVote/indexH5.vue.d.ts +10 -5
- package/lib/components/RoomVote/indexH5.vue.js +9 -2
- package/lib/conference.vue.d.ts +1 -0
- package/lib/conference.vue.js +1 -1
- package/lib/conference.vue2.js +4 -6
- package/lib/index.js +59 -116
- package/package.json +1 -1
- package/src/TUIRoom/components/RoomFooter/VoteControl/MoreControlH5.vue +27 -108
- package/src/TUIRoom/components/RoomFooter/VoteControl/MoreControlPC.vue +7 -1
- package/src/TUIRoom/components/RoomSidebar/indexPC.vue +3 -0
- package/src/TUIRoom/components/RoomVote/indexH5.vue +61 -118
- package/src/TUIRoom/conference.vue +3 -3
- package/es/components/RoomVote/indexH5.vue2.mjs +0 -51
- package/es/components/RoomVote/useRoomMoreHooks.mjs +0 -43
- package/lib/components/RoomVote/indexH5.vue2.js +0 -51
- package/lib/components/RoomVote/useRoomMoreHooks.js +0 -43
|
@@ -1,141 +1,84 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="
|
|
3
|
-
<
|
|
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>
|
|
2
|
+
<div class="more-container">
|
|
3
|
+
<slot name="contentH5"></slot>
|
|
23
4
|
</div>
|
|
24
5
|
</template>
|
|
25
6
|
|
|
26
7
|
<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
|
-
}
|
|
38
8
|
</script>
|
|
39
9
|
|
|
40
10
|
<style lang="scss" scoped>
|
|
41
|
-
|
|
42
|
-
padding
|
|
43
|
-
font-size: 12px;
|
|
44
|
-
font-weight: 500;
|
|
45
|
-
line-height: 17px;
|
|
46
|
-
}
|
|
11
|
+
.more-container {
|
|
12
|
+
padding: 20px;
|
|
47
13
|
|
|
48
|
-
.
|
|
49
|
-
|
|
50
|
-
|
|
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);
|
|
14
|
+
.more-title {
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
59
17
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
transform: scaleY(0);
|
|
63
|
-
transform-origin: bottom;
|
|
18
|
+
.email-icon {
|
|
19
|
+
color: var(--uikit-color-gray-7);
|
|
64
20
|
}
|
|
65
21
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
22
|
+
.more-notice {
|
|
23
|
+
width: 100%;
|
|
24
|
+
height: 22px;
|
|
25
|
+
padding-left: 8px;
|
|
26
|
+
font-size: 14px;
|
|
27
|
+
font-weight: 400;
|
|
28
|
+
line-height: 22px;
|
|
29
|
+
color: var(--text-color-primary);
|
|
69
30
|
}
|
|
70
31
|
}
|
|
71
32
|
|
|
72
|
-
.
|
|
33
|
+
.more-item {
|
|
34
|
+
position: relative;
|
|
73
35
|
display: flex;
|
|
74
|
-
flex-direction:
|
|
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
|
-
}
|
|
36
|
+
flex-direction: column;
|
|
84
37
|
|
|
85
|
-
|
|
86
|
-
|
|
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
|
-
}
|
|
38
|
+
&:not(:first-child) {
|
|
39
|
+
margin-top: 20px;
|
|
94
40
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
white-space: nowrap;
|
|
104
|
-
color: var(--text-color-primary);
|
|
105
|
-
}
|
|
41
|
+
.item-title {
|
|
42
|
+
width: 100%;
|
|
43
|
+
padding-bottom: 8px;
|
|
44
|
+
font-size: 14px;
|
|
45
|
+
font-weight: 400;
|
|
46
|
+
line-height: 22px;
|
|
47
|
+
color: var(--text-color-primary);
|
|
48
|
+
}
|
|
106
49
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
50
|
+
.more-content {
|
|
51
|
+
position: relative;
|
|
52
|
+
box-sizing: border-box;
|
|
53
|
+
display: inline-block;
|
|
54
|
+
flex: 1;
|
|
55
|
+
height: 42px;
|
|
56
|
+
padding: 10px 30px 10px 16px;
|
|
57
|
+
overflow: hidden;
|
|
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
|
+
}
|
|
115
70
|
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
.copy {
|
|
129
|
-
margin-left: 30px;
|
|
130
|
-
color: var(--text-color-link);
|
|
71
|
+
.copy-icon {
|
|
72
|
+
position: absolute;
|
|
73
|
+
top: 45px;
|
|
74
|
+
right: 10px;
|
|
75
|
+
display: flex;
|
|
76
|
+
align-items: center;
|
|
77
|
+
justify-content: center;
|
|
78
|
+
cursor: pointer;
|
|
79
|
+
color: var(--text-color-link);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
131
82
|
}
|
|
132
83
|
}
|
|
133
|
-
|
|
134
|
-
.cancel {
|
|
135
|
-
flex: 1;
|
|
136
|
-
padding-right: 30px;
|
|
137
|
-
font-size: 16px;
|
|
138
|
-
font-weight: 400;
|
|
139
|
-
text-align: end;
|
|
140
|
-
}
|
|
141
84
|
</style>
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
@show-overlay="handleShowOverlay"
|
|
19
19
|
@on-vote="onVote"
|
|
20
20
|
>
|
|
21
|
-
<template #content>
|
|
22
|
-
<slot name="content"></slot>
|
|
23
|
-
</template>
|
|
24
21
|
</room-footer>
|
|
25
22
|
<room-sidebar @on-vote="onVote">
|
|
26
23
|
<template #content>
|
|
27
24
|
<slot name="content"></slot>
|
|
28
25
|
</template>
|
|
26
|
+
<template #contentH5>
|
|
27
|
+
<slot name="contentH5"></slot>
|
|
28
|
+
</template>
|
|
29
29
|
</room-sidebar>
|
|
30
30
|
<room-setting />
|
|
31
31
|
<room-overlay />
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { defineComponent, createElementBlock, openBlock, createElementVNode, withDirectives, toDisplayString, unref, createTextVNode, Fragment, renderList, createVNode } from "vue";
|
|
2
|
-
import useRoomMoreHooks from "./useRoomMoreHooks.mjs";
|
|
3
|
-
import { IconCopy } from "@tencentcloud/uikit-base-component-vue3";
|
|
4
|
-
import vTap from "../../directives/vTap.mjs";
|
|
5
|
-
const _hoisted_1 = { class: "contact-container-main" };
|
|
6
|
-
const _hoisted_2 = { class: "contact-title-main" };
|
|
7
|
-
const _hoisted_3 = { class: "cancel" };
|
|
8
|
-
const _hoisted_4 = { class: "contact-title" };
|
|
9
|
-
const _hoisted_5 = { class: "contact-content" };
|
|
10
|
-
const _hoisted_6 = { class: "contact-bottom" };
|
|
11
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
12
|
-
__name: "indexH5",
|
|
13
|
-
emits: ["on-close-contact"],
|
|
14
|
-
setup(__props, { emit: __emit }) {
|
|
15
|
-
const { t, onCopy, contactContentList } = useRoomMoreHooks();
|
|
16
|
-
const emit = __emit;
|
|
17
|
-
function handleCloseContact() {
|
|
18
|
-
emit("on-close-contact");
|
|
19
|
-
}
|
|
20
|
-
return (_ctx, _cache) => {
|
|
21
|
-
return openBlock(), createElementBlock("div", _hoisted_1, [
|
|
22
|
-
createElementVNode("div", _hoisted_2, [
|
|
23
|
-
createElementVNode("div", null, toDisplayString(unref(t)("Contact us")), 1),
|
|
24
|
-
withDirectives((openBlock(), createElementBlock("span", _hoisted_3, [
|
|
25
|
-
createTextVNode(toDisplayString(unref(t)("Cancel")), 1)
|
|
26
|
-
])), [
|
|
27
|
-
[unref(vTap), handleCloseContact]
|
|
28
|
-
])
|
|
29
|
-
]),
|
|
30
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(contactContentList), (item) => {
|
|
31
|
-
return openBlock(), createElementBlock("div", {
|
|
32
|
-
key: item.id,
|
|
33
|
-
class: "contact-content-main"
|
|
34
|
-
}, [
|
|
35
|
-
createElementVNode("span", _hoisted_4, toDisplayString(unref(t)(item.title)), 1),
|
|
36
|
-
createElementVNode("span", _hoisted_5, toDisplayString(item.content), 1),
|
|
37
|
-
withDirectives(createVNode(unref(IconCopy), { class: "copy" }, null, 512), [
|
|
38
|
-
[unref(vTap), () => unref(onCopy)(item.copyLink)]
|
|
39
|
-
])
|
|
40
|
-
]);
|
|
41
|
-
}), 128)),
|
|
42
|
-
createElementVNode("span", _hoisted_6, toDisplayString(unref(t)(
|
|
43
|
-
"If you have any questions, please feel free to join our QQ group or send an email"
|
|
44
|
-
)), 1)
|
|
45
|
-
]);
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
});
|
|
49
|
-
export {
|
|
50
|
-
_sfc_main as default
|
|
51
|
-
};
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { computed } from "vue";
|
|
2
|
-
import { TUIToast, TOAST_TYPE } from "@tencentcloud/uikit-base-component-vue3";
|
|
3
|
-
import i18n, { useI18n } from "../../locales/index.mjs";
|
|
4
|
-
import "../../utils/environment.mjs";
|
|
5
|
-
import { clipBoard } from "../../utils/adapter.mjs";
|
|
6
|
-
function useRoomMoreHooks() {
|
|
7
|
-
const { t } = useI18n();
|
|
8
|
-
const groupNumber = "770645461";
|
|
9
|
-
const email = "chaooliang@tencent.com";
|
|
10
|
-
async function onCopy(value) {
|
|
11
|
-
try {
|
|
12
|
-
await clipBoard(value);
|
|
13
|
-
TUIToast({
|
|
14
|
-
message: t("Copied successfully"),
|
|
15
|
-
type: TOAST_TYPE.SUCCESS
|
|
16
|
-
});
|
|
17
|
-
} catch (error) {
|
|
18
|
-
TUIToast({
|
|
19
|
-
message: t("Copied failure"),
|
|
20
|
-
type: TOAST_TYPE.ERROR
|
|
21
|
-
});
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
const isZH = computed(() => i18n.global.locale.value === "zh-CN");
|
|
25
|
-
const contactContentList = [
|
|
26
|
-
{ id: 1, title: "group chat", content: groupNumber, copyLink: groupNumber },
|
|
27
|
-
{ id: 2, title: "Email", content: email, copyLink: email }
|
|
28
|
-
];
|
|
29
|
-
const handleClick = () => {
|
|
30
|
-
window.open("https://zhiliao.qq.com/s/c5GY7HIM62CK", "_blank");
|
|
31
|
-
};
|
|
32
|
-
return {
|
|
33
|
-
t,
|
|
34
|
-
onCopy,
|
|
35
|
-
contactContentList,
|
|
36
|
-
email,
|
|
37
|
-
handleClick,
|
|
38
|
-
isZH
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
export {
|
|
42
|
-
useRoomMoreHooks as default
|
|
43
|
-
};
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
const Vue = require("vue");
|
|
4
|
-
const useRoomMoreHooks = require("./useRoomMoreHooks.js");
|
|
5
|
-
const uikitBaseComponentVue3 = require("@tencentcloud/uikit-base-component-vue3");
|
|
6
|
-
const vTap = require("../../directives/vTap.js");
|
|
7
|
-
const _hoisted_1 = { class: "contact-container-main" };
|
|
8
|
-
const _hoisted_2 = { class: "contact-title-main" };
|
|
9
|
-
const _hoisted_3 = { class: "cancel" };
|
|
10
|
-
const _hoisted_4 = { class: "contact-title" };
|
|
11
|
-
const _hoisted_5 = { class: "contact-content" };
|
|
12
|
-
const _hoisted_6 = { class: "contact-bottom" };
|
|
13
|
-
const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
|
|
14
|
-
__name: "indexH5",
|
|
15
|
-
emits: ["on-close-contact"],
|
|
16
|
-
setup(__props, { emit: __emit }) {
|
|
17
|
-
const { t, onCopy, contactContentList } = useRoomMoreHooks.default();
|
|
18
|
-
const emit = __emit;
|
|
19
|
-
function handleCloseContact() {
|
|
20
|
-
emit("on-close-contact");
|
|
21
|
-
}
|
|
22
|
-
return (_ctx, _cache) => {
|
|
23
|
-
return Vue.openBlock(), Vue.createElementBlock("div", _hoisted_1, [
|
|
24
|
-
Vue.createElementVNode("div", _hoisted_2, [
|
|
25
|
-
Vue.createElementVNode("div", null, Vue.toDisplayString(Vue.unref(t)("Contact us")), 1),
|
|
26
|
-
Vue.withDirectives((Vue.openBlock(), Vue.createElementBlock("span", _hoisted_3, [
|
|
27
|
-
Vue.createTextVNode(Vue.toDisplayString(Vue.unref(t)("Cancel")), 1)
|
|
28
|
-
])), [
|
|
29
|
-
[Vue.unref(vTap.default), handleCloseContact]
|
|
30
|
-
])
|
|
31
|
-
]),
|
|
32
|
-
(Vue.openBlock(true), Vue.createElementBlock(Vue.Fragment, null, Vue.renderList(Vue.unref(contactContentList), (item) => {
|
|
33
|
-
return Vue.openBlock(), Vue.createElementBlock("div", {
|
|
34
|
-
key: item.id,
|
|
35
|
-
class: "contact-content-main"
|
|
36
|
-
}, [
|
|
37
|
-
Vue.createElementVNode("span", _hoisted_4, Vue.toDisplayString(Vue.unref(t)(item.title)), 1),
|
|
38
|
-
Vue.createElementVNode("span", _hoisted_5, Vue.toDisplayString(item.content), 1),
|
|
39
|
-
Vue.withDirectives(Vue.createVNode(Vue.unref(uikitBaseComponentVue3.IconCopy), { class: "copy" }, null, 512), [
|
|
40
|
-
[Vue.unref(vTap.default), () => Vue.unref(onCopy)(item.copyLink)]
|
|
41
|
-
])
|
|
42
|
-
]);
|
|
43
|
-
}), 128)),
|
|
44
|
-
Vue.createElementVNode("span", _hoisted_6, Vue.toDisplayString(Vue.unref(t)(
|
|
45
|
-
"If you have any questions, please feel free to join our QQ group or send an email"
|
|
46
|
-
)), 1)
|
|
47
|
-
]);
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
});
|
|
51
|
-
exports.default = _sfc_main;
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
const Vue = require("vue");
|
|
4
|
-
const uikitBaseComponentVue3 = require("@tencentcloud/uikit-base-component-vue3");
|
|
5
|
-
const index = require("../../locales/index.js");
|
|
6
|
-
require("../../utils/environment.js");
|
|
7
|
-
const adapter = require("../../utils/adapter.js");
|
|
8
|
-
function useRoomMoreHooks() {
|
|
9
|
-
const { t } = index.useI18n();
|
|
10
|
-
const groupNumber = "770645461";
|
|
11
|
-
const email = "chaooliang@tencent.com";
|
|
12
|
-
async function onCopy(value) {
|
|
13
|
-
try {
|
|
14
|
-
await adapter.clipBoard(value);
|
|
15
|
-
uikitBaseComponentVue3.TUIToast({
|
|
16
|
-
message: t("Copied successfully"),
|
|
17
|
-
type: uikitBaseComponentVue3.TOAST_TYPE.SUCCESS
|
|
18
|
-
});
|
|
19
|
-
} catch (error) {
|
|
20
|
-
uikitBaseComponentVue3.TUIToast({
|
|
21
|
-
message: t("Copied failure"),
|
|
22
|
-
type: uikitBaseComponentVue3.TOAST_TYPE.ERROR
|
|
23
|
-
});
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
const isZH = Vue.computed(() => index.default.global.locale.value === "zh-CN");
|
|
27
|
-
const contactContentList = [
|
|
28
|
-
{ id: 1, title: "group chat", content: groupNumber, copyLink: groupNumber },
|
|
29
|
-
{ id: 2, title: "Email", content: email, copyLink: email }
|
|
30
|
-
];
|
|
31
|
-
const handleClick = () => {
|
|
32
|
-
window.open("https://zhiliao.qq.com/s/c5GY7HIM62CK", "_blank");
|
|
33
|
-
};
|
|
34
|
-
return {
|
|
35
|
-
t,
|
|
36
|
-
onCopy,
|
|
37
|
-
contactContentList,
|
|
38
|
-
email,
|
|
39
|
-
handleClick,
|
|
40
|
-
isZH
|
|
41
|
-
};
|
|
42
|
-
}
|
|
43
|
-
exports.default = useRoomMoreHooks;
|