|
@@ -20,7 +20,7 @@
|
|
|
<div class="line-box"></div>
|
|
|
<div class="button-box">
|
|
|
<div class="button-item"><span class="content">语音会议</span></div>
|
|
|
- <div class="button-item"><span class="content">视频会商</span></div>
|
|
|
+ <div class="button-item" @click="handleMultiPersonVideoCall"><span class="content">视频会商</span></div>
|
|
|
</div>
|
|
|
</CommonPanel>
|
|
|
</template>
|
|
@@ -29,6 +29,8 @@
|
|
|
import { ref } from "vue";
|
|
|
import CommonPanel from "../../common/CommonPanel.vue";
|
|
|
import CarImage from "../../../../../assets/img/people-icon.png";
|
|
|
+const emit = defineEmits(['handleVideoCallClick'])
|
|
|
+
|
|
|
const leftServiceList = [
|
|
|
{
|
|
|
name: "上海市疾病预防控制中心",
|
|
@@ -110,9 +112,9 @@ const renderContent = (h, { node, data, store }) => {
|
|
|
data[serviceKey]
|
|
|
),
|
|
|
h("div", { class: "imgbox" }, [
|
|
|
- h("div", { class: "img1", onclick: (e) => {e.stopPropagation()} }, ""),
|
|
|
- h("div", { class: "img2", onclick: (e) => {e.stopPropagation()} }, ""),
|
|
|
- h("div", { class: "img3", onclick: (e) => {e.stopPropagation()} }, ""),
|
|
|
+ h("div", { class: "img1", onClick: (event) => handleVoiceCallClick(event, data) }, ""),
|
|
|
+ h("div", { class: "img2", onClick: (event) => handleSoundClick(event, data) }, ""),
|
|
|
+ h("div", { class: "img3", onClick: (event) => handleVideoCallClick(event, data) }, ""),
|
|
|
]),
|
|
|
]);
|
|
|
}
|
|
@@ -121,6 +123,16 @@ const renderContent = (h, { node, data, store }) => {
|
|
|
h("span", { class: "node-label" }, [data[serviceKey]]),
|
|
|
]);
|
|
|
};
|
|
|
+
|
|
|
+// 单人视频
|
|
|
+function handleVideoCallClick(event, data) {
|
|
|
+ emit('handleVideoCallClick',data)
|
|
|
+}
|
|
|
+
|
|
|
+// 多人视频通话
|
|
|
+function handleMultiPersonVideoCall() {
|
|
|
+ emit('handleVideoCallClick')
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|