jssz-meeting-component 1.1.13 → 1.1.15

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/dist/index.esm.js CHANGED
@@ -17,7 +17,7 @@ var __privateWrapper = (obj, member, setter, getter) => ({
17
17
  return __privateGet(obj, member, getter);
18
18
  }
19
19
  });
20
- import { createBlock, openBlock, Transition, withCtx, createElementBlock, createCommentVNode, normalizeStyle, normalizeClass, createElementVNode, toDisplayString, reactive, createApp, effectScope, ref, markRaw, toRaw as toRaw$1, watch, unref, computed, isRef as isRef$1, isReactive as isReactive$1, toRef, hasInjectionContext, inject, getCurrentInstance, nextTick, getCurrentScope, onScopeDispose, toRefs, createStaticVNode, defineComponent, resolveDynamicComponent, onBeforeUnmount, Teleport, withDirectives, withModifiers, renderSlot, vShow, vModelText, createVNode, Fragment, renderList, onMounted, resolveDirective, createTextVNode, onUnmounted, withKeys, resolveComponent, TransitionGroup, mergeProps, vModelSelect } from "vue";
20
+ import { createBlock, openBlock, Transition, withCtx, createElementBlock, createCommentVNode, normalizeStyle, normalizeClass, createElementVNode, toDisplayString, reactive, createApp, effectScope, ref, markRaw, toRaw as toRaw$1, watch, unref, computed, isRef as isRef$1, isReactive as isReactive$1, toRef, hasInjectionContext, inject, getCurrentInstance, nextTick, getCurrentScope, onScopeDispose, toRefs, createStaticVNode, defineComponent, resolveDynamicComponent, onBeforeUnmount, withDirectives, withModifiers, renderSlot, vShow, vModelText, createVNode, Fragment, renderList, onMounted, resolveDirective, createTextVNode, onUnmounted, Teleport, withKeys, resolveComponent, TransitionGroup, mergeProps, vModelSelect } from "vue";
21
21
  const draggable = {
22
22
  mounted(el2, binding) {
23
23
  const options = {
@@ -163,8 +163,8 @@ const _export_sfc = (sfc, props) => {
163
163
  }
164
164
  return target2;
165
165
  };
166
- const _hoisted_1$16 = { class: "loading-spinner" };
167
- const _sfc_main$1b = {
166
+ const _hoisted_1$17 = { class: "loading-spinner" };
167
+ const _sfc_main$1c = {
168
168
  __name: "Loading",
169
169
  props: {
170
170
  visible: Boolean,
@@ -186,7 +186,7 @@ const _sfc_main$1b = {
186
186
  class: normalizeClass(["loading-mask", { "is-fullscreen": __props.fullscreen }]),
187
187
  style: normalizeStyle({ backgroundColor: __props.background, zIndex: __props.zIndex })
188
188
  }, [
189
- createElementVNode("div", _hoisted_1$16, [
189
+ createElementVNode("div", _hoisted_1$17, [
190
190
  _cache[0] || (_cache[0] = createElementVNode("svg", {
191
191
  class: "spinner",
192
192
  xmlns: "http://www.w3.org/2000/svg",
@@ -220,7 +220,7 @@ const _sfc_main$1b = {
220
220
  };
221
221
  }
222
222
  };
223
- const Loading = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["__scopeId", "data-v-585832f8"]]);
223
+ const Loading = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["__scopeId", "data-v-ba22629b"]]);
224
224
  function createDirective(globalOptions = {}) {
225
225
  function createInstance2(el2, binding) {
226
226
  const fullscreen = el2 === document.body;
@@ -20420,7 +20420,7 @@ async function readMyInfo() {
20420
20420
  async function initializeMeetingMQTT(options = {}) {
20421
20421
  const myInfo = options.myInfo || await readMyInfo();
20422
20422
  const loginDevice = toText(myInfo.currentDevice).trim();
20423
- const brokerUrl = "wss://testdcs.jingshuosz.cn" + DEFAULT_MQTT_PATH;
20423
+ const brokerUrl = "wss://dcs.jingshuosz.cn" + DEFAULT_MQTT_PATH;
20424
20424
  const responseTopic = buildResponseTopic(loginDevice);
20425
20425
  const nextRuntime = {
20426
20426
  brokerUrl,
@@ -20941,6 +20941,358 @@ const getUserAvatar = (user) => {
20941
20941
  var _a25, _b25, _c2, _d;
20942
20942
  return ((_a25 = user == null ? void 0 : user.member) == null ? void 0 : _a25.avatar) || ((_c2 = (_b25 = user == null ? void 0 : user.member) == null ? void 0 : _b25.name) == null ? void 0 : _c2.charAt(0)) || ((_d = user == null ? void 0 : user.memberName) == null ? void 0 : _d.charAt(0)) || "?";
20943
20943
  };
20944
+ function createEmptyMetricDetails() {
20945
+ return {
20946
+ localAudios: [],
20947
+ localVideos: [],
20948
+ remoteAudios: [],
20949
+ remoteVideos: []
20950
+ };
20951
+ }
20952
+ const DEFAULT_NETWORK_QUALITY_STATE = {
20953
+ level: "unknown",
20954
+ label: "--",
20955
+ score: 0,
20956
+ stats: null,
20957
+ details: createEmptyMetricDetails(),
20958
+ summary: "暂无网络数据",
20959
+ updatedAt: 0,
20960
+ metricTime: 0,
20961
+ isStale: false,
20962
+ isOffline: false
20963
+ };
20964
+ const NETWORK_METRIC_POLL_INTERVAL = 2e3;
20965
+ const METRIC_STALE_THRESHOLD_MS = 15e3;
20966
+ const STALE_CONFIRMATION_COUNT = 2;
20967
+ let lastMetricSignature = "";
20968
+ let lastMetricChangeAt = 0;
20969
+ let lastMetricTime = 0;
20970
+ let staleHitCount = 0;
20971
+ const networkQualityState = reactive({
20972
+ ...DEFAULT_NETWORK_QUALITY_STATE
20973
+ });
20974
+ let networkMetricTimer = null;
20975
+ let metricGetterRef = null;
20976
+ function readMetricEntry(metric, key) {
20977
+ if (!metric) return void 0;
20978
+ const mapMetric = metric;
20979
+ if (typeof mapMetric.get === "function") {
20980
+ return mapMetric.get(key);
20981
+ }
20982
+ return mapMetric[key];
20983
+ }
20984
+ function isMetricObject(value) {
20985
+ return !!value && typeof value === "object" && !Array.isArray(value);
20986
+ }
20987
+ function hasMetricTimestamp(value) {
20988
+ return isMetricObject(value) && typeof value.timestamp === "number";
20989
+ }
20990
+ function normalizeMetricList(input) {
20991
+ if (!input) return [];
20992
+ if (Array.isArray(input)) {
20993
+ return input.flatMap((item) => normalizeMetricList(item));
20994
+ }
20995
+ if (input instanceof Map) {
20996
+ return Array.from(input.values()).flatMap(
20997
+ (item) => normalizeMetricList(item)
20998
+ );
20999
+ }
21000
+ if (!isMetricObject(input)) {
21001
+ return [];
21002
+ }
21003
+ const record = input;
21004
+ if (hasMetricTimestamp(record)) {
21005
+ return [record];
21006
+ }
21007
+ if (hasMetricTimestamp(record.stats)) {
21008
+ return [{ ...record, ...record.stats }];
21009
+ }
21010
+ return Object.values(record).flatMap((item) => normalizeMetricList(item));
21011
+ }
21012
+ function normalizeLossRate(lossRate) {
21013
+ if (typeof lossRate !== "number" || Number.isNaN(lossRate)) {
21014
+ return 0;
21015
+ }
21016
+ if (lossRate <= 1) {
21017
+ return lossRate * 100;
21018
+ }
21019
+ return lossRate;
21020
+ }
21021
+ function scoreDelay(delay) {
21022
+ if (delay <= 120) return 100;
21023
+ if (delay <= 200) return 80;
21024
+ if (delay <= 300) return 60;
21025
+ if (delay <= 450) return 30;
21026
+ return 0;
21027
+ }
21028
+ function scoreLoss(lossRate) {
21029
+ if (lossRate <= 2) return 100;
21030
+ if (lossRate <= 5) return 75;
21031
+ if (lossRate <= 8) return 55;
21032
+ if (lossRate <= 12) return 25;
21033
+ return 0;
21034
+ }
21035
+ function scoreUpLevel(upLevel) {
21036
+ if (typeof upLevel !== "number" || Number.isNaN(upLevel)) {
21037
+ return 70;
21038
+ }
21039
+ if (upLevel <= 0) {
21040
+ return 70;
21041
+ }
21042
+ if (upLevel >= 5) return 100;
21043
+ if (upLevel >= 4) return 85;
21044
+ if (upLevel >= 3) return 70;
21045
+ if (upLevel >= 2) return 50;
21046
+ if (upLevel >= 1) return 25;
21047
+ return 0;
21048
+ }
21049
+ function evaluateNetworkQuality(stats) {
21050
+ console.log(stats);
21051
+ const delay = Number(stats.delay || 0);
21052
+ const lossUp = normalizeLossRate(stats.lossrate_up);
21053
+ const lossDown = normalizeLossRate(stats.lossrate_down);
21054
+ const maxLossRate = Math.max(lossUp, lossDown);
21055
+ const upLevel = Number(stats.up_level);
21056
+ const delayScore = scoreDelay(delay);
21057
+ const lossScore = scoreLoss(maxLossRate);
21058
+ const upLevelScore = scoreUpLevel(upLevel);
21059
+ const score = Math.round(
21060
+ delayScore * 0.45 + lossScore * 0.4 + upLevelScore * 0.15
21061
+ );
21062
+ const hardPoor = delay >= 450 || maxLossRate >= 12 || !Number.isNaN(upLevel) && upLevel > 0 && upLevel <= 1;
21063
+ const hardExcellent = delay <= 150 && maxLossRate <= 3 && (Number.isNaN(upLevel) || upLevel <= 0 || upLevel >= 4);
21064
+ let level = "good";
21065
+ let label = "良";
21066
+ if (hardPoor || score < 50) {
21067
+ level = "poor";
21068
+ label = "差";
21069
+ } else if (hardExcellent || score >= 80) {
21070
+ level = "excellent";
21071
+ label = "优";
21072
+ }
21073
+ return {
21074
+ level,
21075
+ label,
21076
+ score,
21077
+ stats,
21078
+ details: createEmptyMetricDetails(),
21079
+ summary: `延迟 ${delay}ms / 最大丢包 ${maxLossRate.toFixed(1)}% / 上行等级 ${Number.isNaN(upLevel) ? "--" : upLevel}`
21080
+ };
21081
+ }
21082
+ function buildNetworkMetricDetails(metric) {
21083
+ return {
21084
+ localAudios: normalizeMetricList(
21085
+ readMetricEntry(metric, "local_audios")
21086
+ ),
21087
+ localVideos: normalizeMetricList(
21088
+ readMetricEntry(metric, "local_videos")
21089
+ ),
21090
+ remoteAudios: normalizeMetricList(
21091
+ readMetricEntry(metric, "remote_raudios") ?? readMetricEntry(metric, "remote_audios")
21092
+ ),
21093
+ remoteVideos: normalizeMetricList(
21094
+ readMetricEntry(metric, "remote_videos")
21095
+ )
21096
+ };
21097
+ }
21098
+ function resetNetworkQualityState() {
21099
+ lastMetricSignature = "";
21100
+ lastMetricChangeAt = 0;
21101
+ lastMetricTime = 0;
21102
+ staleHitCount = 0;
21103
+ Object.assign(networkQualityState, {
21104
+ ...DEFAULT_NETWORK_QUALITY_STATE,
21105
+ details: createEmptyMetricDetails()
21106
+ });
21107
+ }
21108
+ function setNetworkQualityOffline() {
21109
+ lastMetricSignature = "";
21110
+ lastMetricChangeAt = 0;
21111
+ lastMetricTime = 0;
21112
+ staleHitCount = 0;
21113
+ Object.assign(networkQualityState, {
21114
+ ...DEFAULT_NETWORK_QUALITY_STATE,
21115
+ level: "poor",
21116
+ label: "差",
21117
+ details: createEmptyMetricDetails(),
21118
+ summary: "网络连接已断开",
21119
+ isOffline: true,
21120
+ isStale: true
21121
+ });
21122
+ }
21123
+ function formatNetworkLossRate(value) {
21124
+ if (typeof value !== "number" || Number.isNaN(value)) {
21125
+ return "--";
21126
+ }
21127
+ const normalized = value <= 1 ? value * 100 : value;
21128
+ return `${normalized.toFixed(1)}%`;
21129
+ }
21130
+ function formatNetworkNumber(value, suffix = "") {
21131
+ if (typeof value !== "number" || Number.isNaN(value)) {
21132
+ return "--";
21133
+ }
21134
+ return `${value}${suffix}`;
21135
+ }
21136
+ function formatMetricBytes(value) {
21137
+ if (typeof value !== "number" || Number.isNaN(value)) {
21138
+ return "--";
21139
+ }
21140
+ if (value >= 1024 * 1024) {
21141
+ return `${(value / (1024 * 1024)).toFixed(2)} MB`;
21142
+ }
21143
+ if (value >= 1024) {
21144
+ return `${(value / 1024).toFixed(2)} KB`;
21145
+ }
21146
+ return `${value} B`;
21147
+ }
21148
+ function formatNetworkUpdatedAt(timestamp) {
21149
+ if (!timestamp) {
21150
+ return "--";
21151
+ }
21152
+ const date = new Date(timestamp);
21153
+ const hours = `${date.getHours()}`.padStart(2, "0");
21154
+ const minutes = `${date.getMinutes()}`.padStart(2, "0");
21155
+ const seconds = `${date.getSeconds()}`.padStart(2, "0");
21156
+ return `${hours}:${minutes}:${seconds}`;
21157
+ }
21158
+ function formatMetricTimestamp(timestamp) {
21159
+ if (typeof timestamp !== "number" || Number.isNaN(timestamp)) {
21160
+ return "--";
21161
+ }
21162
+ const ms = timestamp > 1e12 ? timestamp : timestamp * 1e3;
21163
+ return formatNetworkUpdatedAt(ms);
21164
+ }
21165
+ function formatMetricDimension(width, height) {
21166
+ if (typeof width !== "number" || Number.isNaN(width) || typeof height !== "number" || Number.isNaN(height)) {
21167
+ return "--";
21168
+ }
21169
+ return `${width} x ${height}`;
21170
+ }
21171
+ function formatMetricReason(value) {
21172
+ if (!value) {
21173
+ return "--";
21174
+ }
21175
+ return value;
21176
+ }
21177
+ function formatMetricRawValue(value) {
21178
+ if (typeof value !== "number" || Number.isNaN(value)) {
21179
+ return "--";
21180
+ }
21181
+ return `${value}`;
21182
+ }
21183
+ function getNetworkSignalBars(level) {
21184
+ switch (level) {
21185
+ case "excellent":
21186
+ return 4;
21187
+ case "good":
21188
+ return 3;
21189
+ case "poor":
21190
+ return 1;
21191
+ default:
21192
+ return 0;
21193
+ }
21194
+ }
21195
+ function buildMetricSignature(metricTime, stats) {
21196
+ return JSON.stringify([
21197
+ metricTime,
21198
+ stats.delay,
21199
+ stats.bitrate_up,
21200
+ stats.bitrate_down,
21201
+ stats.lossrate_up,
21202
+ stats.lossrate_down,
21203
+ stats.up_level,
21204
+ stats.pkt_up,
21205
+ stats.pkt_down,
21206
+ stats.pkt_loss_up,
21207
+ stats.pkt_loss_down
21208
+ ]);
21209
+ }
21210
+ function updateNetworkQuality(getMetric = metricGetterRef) {
21211
+ try {
21212
+ if (!getMetric) {
21213
+ resetNetworkQualityState();
21214
+ return;
21215
+ }
21216
+ if (typeof navigator !== "undefined" && navigator.onLine === false) {
21217
+ setNetworkQualityOffline();
21218
+ return;
21219
+ }
21220
+ const metric = getMetric();
21221
+ const metricTime = Number(readMetricEntry(metric, "time") || 0);
21222
+ const stats = readMetricEntry(metric, "network");
21223
+ if (!stats) {
21224
+ resetNetworkQualityState();
21225
+ return;
21226
+ }
21227
+ const now = Date.now();
21228
+ let hasFreshHeartbeat = false;
21229
+ if (metricTime > 0) {
21230
+ hasFreshHeartbeat = metricTime !== lastMetricTime;
21231
+ if (hasFreshHeartbeat) {
21232
+ lastMetricTime = metricTime;
21233
+ lastMetricChangeAt = now;
21234
+ staleHitCount = 0;
21235
+ }
21236
+ } else {
21237
+ const metricSignature = buildMetricSignature(metricTime, stats);
21238
+ hasFreshHeartbeat = metricSignature !== lastMetricSignature;
21239
+ if (hasFreshHeartbeat) {
21240
+ lastMetricSignature = metricSignature;
21241
+ lastMetricChangeAt = now;
21242
+ staleHitCount = 0;
21243
+ }
21244
+ }
21245
+ if (lastMetricChangeAt === 0) {
21246
+ lastMetricChangeAt = now;
21247
+ }
21248
+ const staleByFrozenMetric = lastMetricChangeAt > 0 && now - lastMetricChangeAt >= METRIC_STALE_THRESHOLD_MS;
21249
+ if (staleByFrozenMetric) {
21250
+ staleHitCount += 1;
21251
+ if (staleHitCount < STALE_CONFIRMATION_COUNT) {
21252
+ return;
21253
+ }
21254
+ Object.assign(networkQualityState, {
21255
+ ...DEFAULT_NETWORK_QUALITY_STATE,
21256
+ level: "poor",
21257
+ label: "差",
21258
+ details: createEmptyMetricDetails(),
21259
+ metricTime,
21260
+ updatedAt: networkQualityState.updatedAt,
21261
+ isStale: true,
21262
+ summary: "网络数据已停止更新"
21263
+ });
21264
+ return;
21265
+ }
21266
+ staleHitCount = 0;
21267
+ const details = buildNetworkMetricDetails(metric);
21268
+ Object.assign(networkQualityState, evaluateNetworkQuality(stats), {
21269
+ details,
21270
+ updatedAt: now,
21271
+ metricTime,
21272
+ isStale: false,
21273
+ isOffline: false
21274
+ });
21275
+ } catch (_2) {
21276
+ resetNetworkQualityState();
21277
+ }
21278
+ }
21279
+ function startNetworkQualityPolling(getMetric) {
21280
+ metricGetterRef = getMetric;
21281
+ stopNetworkQualityPolling();
21282
+ metricGetterRef = getMetric;
21283
+ updateNetworkQuality(getMetric);
21284
+ networkMetricTimer = window.setInterval(() => {
21285
+ updateNetworkQuality(getMetric);
21286
+ }, NETWORK_METRIC_POLL_INTERVAL);
21287
+ }
21288
+ function stopNetworkQualityPolling() {
21289
+ if (networkMetricTimer) {
21290
+ window.clearInterval(networkMetricTimer);
21291
+ networkMetricTimer = null;
21292
+ }
21293
+ metricGetterRef = null;
21294
+ resetNetworkQualityState();
21295
+ }
20944
21296
  class SpeechDetector {
20945
21297
  constructor() {
20946
21298
  __publicField(this, "audioContext");
@@ -35870,7 +36222,7 @@ const srtc = new fn({
35870
36222
  logTarget: an.NONE
35871
36223
  });
35872
36224
  srtc.onNotifyChannelEvent = async (evt) => {
35873
- var _a25, _b25, _c2, _d, _e2, _f2, _g2, _h, _i2, _j, _k, _l2, _m;
36225
+ var _a25, _b25, _c2, _d, _e2, _f2, _g2, _h, _i2, _j, _k, _l2, _m, _n;
35874
36226
  switch (evt.type) {
35875
36227
  case Kr.USER_TRACK_ADD: {
35876
36228
  const payload = evt.data;
@@ -36005,9 +36357,14 @@ srtc.onNotifyChannelEvent = async (evt) => {
36005
36357
  case Kr.TRACK_AUTOPLAY_FAIL:
36006
36358
  break;
36007
36359
  case Kr.DISCONNECTED:
36360
+ if (((_l2 = evt.data) == null ? void 0 : _l2.reason) === 1) {
36361
+ resetNetworkQualityState();
36362
+ } else {
36363
+ setNetworkQualityOffline();
36364
+ }
36008
36365
  break;
36009
36366
  case Kr.CHANNEL_UPDATE:
36010
- isChannelShare.value = ((_m = (_l2 = evt.data) == null ? void 0 : _l2.props) == null ? void 0 : _m.share_state) || false;
36367
+ isChannelShare.value = ((_n = (_m = evt.data) == null ? void 0 : _m.props) == null ? void 0 : _n.share_state) || false;
36011
36368
  break;
36012
36369
  }
36013
36370
  };
@@ -36017,6 +36374,7 @@ async function joinRoom() {
36017
36374
  );
36018
36375
  await srtc.join(meetingInfo.meetingToken);
36019
36376
  await afterJoin();
36377
+ startNetworkQualityPolling(() => srtc.getStreamMetric());
36020
36378
  }
36021
36379
  async function afterJoin() {
36022
36380
  const _joinTime = sessionStorage.getItem("joinTime");
@@ -36533,6 +36891,7 @@ async function closeScreen() {
36533
36891
  }
36534
36892
  }
36535
36893
  function logoutRoomAction() {
36894
+ stopNetworkQualityPolling();
36536
36895
  srtc.leave();
36537
36896
  meetingStore$1.clearMembers();
36538
36897
  try {
@@ -36777,8 +37136,8 @@ function uninstallMeetingMessageHandlers() {
36777
37136
  }
36778
37137
  function checkTimeSync() {
36779
37138
  }
36780
- const _sfc_main$1a = {};
36781
- const _hoisted_1$15 = {
37139
+ const _sfc_main$1b = {};
37140
+ const _hoisted_1$16 = {
36782
37141
  t: "1754374039448",
36783
37142
  class: "icon",
36784
37143
  viewBox: "0 0 1024 1024",
@@ -36789,7 +37148,7 @@ const _hoisted_1$15 = {
36789
37148
  height: "200"
36790
37149
  };
36791
37150
  function _sfc_render$G(_ctx, _cache) {
36792
- return openBlock(), createElementBlock("svg", _hoisted_1$15, [..._cache[0] || (_cache[0] = [
37151
+ return openBlock(), createElementBlock("svg", _hoisted_1$16, [..._cache[0] || (_cache[0] = [
36793
37152
  createElementVNode("path", {
36794
37153
  d: "M889.130667 390.869333a42.666667 42.666667 0 0 0-60.330667-60.330666L512 647.338667 195.2 330.538667a42.666667 42.666667 0 0 0-60.330667 60.330666l346.965334 346.965334a42.666667 42.666667 0 0 0 60.330666 0L889.173333 390.826667z",
36795
37154
  fill: "currentColor",
@@ -36797,9 +37156,9 @@ function _sfc_render$G(_ctx, _cache) {
36797
37156
  }, null, -1)
36798
37157
  ])]);
36799
37158
  }
36800
- const DownArrowIcon = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["render", _sfc_render$G]]);
36801
- const _sfc_main$19 = {};
36802
- const _hoisted_1$14 = {
37159
+ const DownArrowIcon = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["render", _sfc_render$G]]);
37160
+ const _sfc_main$1a = {};
37161
+ const _hoisted_1$15 = {
36803
37162
  t: "1754375677572",
36804
37163
  class: "icon",
36805
37164
  viewBox: "0 0 1024 1024",
@@ -36810,7 +37169,7 @@ const _hoisted_1$14 = {
36810
37169
  height: "200"
36811
37170
  };
36812
37171
  function _sfc_render$F(_ctx, _cache) {
36813
- return openBlock(), createElementBlock("svg", _hoisted_1$14, [..._cache[0] || (_cache[0] = [
37172
+ return openBlock(), createElementBlock("svg", _hoisted_1$15, [..._cache[0] || (_cache[0] = [
36814
37173
  createElementVNode("path", {
36815
37174
  d: "M889.130667 633.130667a42.666667 42.666667 0 0 1-60.330667 60.330666L512 376.661333l-316.8 316.8a42.666667 42.666667 0 1 1-60.330667-60.330666l346.965334-346.965334a42.666667 42.666667 0 0 1 60.330666 0l346.965334 346.965334z",
36816
37175
  fill: "currentColor",
@@ -36818,9 +37177,9 @@ function _sfc_render$F(_ctx, _cache) {
36818
37177
  }, null, -1)
36819
37178
  ])]);
36820
37179
  }
36821
- const UpArrowIcon = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["render", _sfc_render$F]]);
36822
- const _sfc_main$18 = {};
36823
- const _hoisted_1$13 = {
37180
+ const UpArrowIcon = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["render", _sfc_render$F]]);
37181
+ const _sfc_main$19 = {};
37182
+ const _hoisted_1$14 = {
36824
37183
  t: "1753862439543",
36825
37184
  class: "icon",
36826
37185
  viewBox: "0 0 1024 1024",
@@ -36829,7 +37188,7 @@ const _hoisted_1$13 = {
36829
37188
  "p-id": "5721"
36830
37189
  };
36831
37190
  function _sfc_render$E(_ctx, _cache) {
36832
- return openBlock(), createElementBlock("svg", _hoisted_1$13, [..._cache[0] || (_cache[0] = [
37191
+ return openBlock(), createElementBlock("svg", _hoisted_1$14, [..._cache[0] || (_cache[0] = [
36833
37192
  createElementVNode("path", {
36834
37193
  d: "M511.752 70.5c-86.605 0-156.835 69.734-156.835 155.747l0 273.812c0 86.013 70.23 155.748 156.835 155.748 86.602 0 156.832-69.735 156.832-155.748L668.584 226.247C668.584 140.234 598.354 70.5 511.752 70.5L511.752 70.5 511.752 70.5zM243.854 461.102c-18.051 0-32.649 14.496-32.649 32.451 0 2.269 0.197 4.436 0.689 6.506l-0.689 0c0 151.605 113.922 276.578 261.386 295.713l0 80.687-52.275 0c-21.702 0-39.257 17.458-39.257 38.964 0 21.499 17.555 38.957 39.257 38.957l182.969 0c21.701 0 39.256-17.458 39.256-38.957 0-21.506-17.555-38.964-39.256-38.964L551.01 876.459l0-80.687c143.119-18.543 254.383-137.002 260.691-282.688 0.396-2.072 0.695-4.243 0.695-6.512 0-0.79-0.197-1.479-0.197-2.167 0-1.483 0.197-2.86 0.197-4.345l-0.695 0c-3.058-14.795-16.172-25.94-32.057-25.94-15.782 0-28.999 11.145-32.057 25.94l-0.688 0c0 129.019-105.344 233.572-235.249 233.572-129.903 0-235.249-104.554-235.249-233.572l-0.689 0c0.396-2.07 0.689-4.237 0.689-6.506C276.503 475.598 261.906 461.102 243.854 461.102L243.854 461.102 243.854 461.102zM243.854 461.102",
36835
37194
  fill: "currentColor",
@@ -36837,9 +37196,9 @@ function _sfc_render$E(_ctx, _cache) {
36837
37196
  }, null, -1)
36838
37197
  ])]);
36839
37198
  }
36840
- const MicrophoneIcon = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["render", _sfc_render$E]]);
36841
- const _sfc_main$17 = {};
36842
- const _hoisted_1$12 = {
37199
+ const MicrophoneIcon = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["render", _sfc_render$E]]);
37200
+ const _sfc_main$18 = {};
37201
+ const _hoisted_1$13 = {
36843
37202
  t: "1753862439543",
36844
37203
  class: "icon",
36845
37204
  viewBox: "0 0 1024 1024",
@@ -36848,7 +37207,7 @@ const _hoisted_1$12 = {
36848
37207
  "p-id": "5721"
36849
37208
  };
36850
37209
  function _sfc_render$D(_ctx, _cache) {
36851
- return openBlock(), createElementBlock("svg", _hoisted_1$12, [..._cache[0] || (_cache[0] = [
37210
+ return openBlock(), createElementBlock("svg", _hoisted_1$13, [..._cache[0] || (_cache[0] = [
36852
37211
  createElementVNode("path", {
36853
37212
  d: "M511.752 70.5c-86.605 0-156.835 69.734-156.835 155.747l0 273.812c0 86.013 70.23 155.748 156.835 155.748 86.602 0 156.832-69.735 156.832-155.748L668.584 226.247C668.584 140.234 598.354 70.5 511.752 70.5L511.752 70.5 511.752 70.5zM243.854 461.102c-18.051 0-32.649 14.496-32.649 32.451 0 2.269 0.197 4.436 0.689 6.506l-0.689 0c0 151.605 113.922 276.578 261.386 295.713l0 80.687-52.275 0c-21.702 0-39.257 17.458-39.257 38.964 0 21.499 17.555 38.957 39.257 38.957l182.969 0c21.701 0 39.256-17.458 39.256-38.957 0-21.506-17.555-38.964-39.256-38.964L551.01 876.459l0-80.687c143.119-18.543 254.383-137.002 260.691-282.688 0.396-2.072 0.695-4.243 0.695-6.512 0-0.79-0.197-1.479-0.197-2.167 0-1.483 0.197-2.86 0.197-4.345l-0.695 0c-3.058-14.795-16.172-25.94-32.057-25.940-15.782 0-28.999 11.145-32.057 25.94l-0.688 0c0 129.019-105.344 233.572-235.249 233.572-129.903 0-235.249-104.554-235.249-233.572l-0.689 0c0.396-2.07 0.689-4.237 0.689-6.506C276.503 475.598 261.906 461.102 243.854 461.102L243.854 461.102 243.854 461.102zM243.854 461.102",
36854
37213
  fill: "currentColor",
@@ -36865,9 +37224,9 @@ function _sfc_render$D(_ctx, _cache) {
36865
37224
  }, null, -1)
36866
37225
  ])]);
36867
37226
  }
36868
- const MicrophoneSlashIcon = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["render", _sfc_render$D]]);
36869
- const _sfc_main$16 = {};
36870
- const _hoisted_1$11 = {
37227
+ const MicrophoneSlashIcon = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["render", _sfc_render$D]]);
37228
+ const _sfc_main$17 = {};
37229
+ const _hoisted_1$12 = {
36871
37230
  t: "1753863855158",
36872
37231
  class: "icon",
36873
37232
  viewBox: "0 0 1024 1024",
@@ -36876,7 +37235,7 @@ const _hoisted_1$11 = {
36876
37235
  "p-id": "27803"
36877
37236
  };
36878
37237
  function _sfc_render$C(_ctx, _cache) {
36879
- return openBlock(), createElementBlock("svg", _hoisted_1$11, [..._cache[0] || (_cache[0] = [
37238
+ return openBlock(), createElementBlock("svg", _hoisted_1$12, [..._cache[0] || (_cache[0] = [
36880
37239
  createElementVNode("path", {
36881
37240
  d: "M868.032 287.808a64 64 0 0 1 101.056 51.648l2.624 302.592a64 64 0 0 1-102.752 51.456l-206.912-157.536a64 64 0 0 1 1.728-103.104l204.256-145.056z",
36882
37241
  fill: "currentColor",
@@ -36889,9 +37248,9 @@ function _sfc_render$C(_ctx, _cache) {
36889
37248
  }, null, -1)
36890
37249
  ])]);
36891
37250
  }
36892
- const CameraIcon = /* @__PURE__ */ _export_sfc(_sfc_main$16, [["render", _sfc_render$C]]);
36893
- const _sfc_main$15 = {};
36894
- const _hoisted_1$10 = {
37251
+ const CameraIcon = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["render", _sfc_render$C]]);
37252
+ const _sfc_main$16 = {};
37253
+ const _hoisted_1$11 = {
36895
37254
  t: "1753863855158",
36896
37255
  class: "icon",
36897
37256
  viewBox: "0 0 1024 1024",
@@ -36900,7 +37259,7 @@ const _hoisted_1$10 = {
36900
37259
  "p-id": "27803"
36901
37260
  };
36902
37261
  function _sfc_render$B(_ctx, _cache) {
36903
- return openBlock(), createElementBlock("svg", _hoisted_1$10, [..._cache[0] || (_cache[0] = [
37262
+ return openBlock(), createElementBlock("svg", _hoisted_1$11, [..._cache[0] || (_cache[0] = [
36904
37263
  createElementVNode("path", {
36905
37264
  d: "M868.032 287.808a64 64 0 0 1 101.056 51.648l2.624 302.592a64 64 0 0 1-102.752 51.456l-206.912-157.536a64 64 0 0 1 1.728-103.104l204.256-145.056z",
36906
37265
  fill: "currentColor",
@@ -36922,9 +37281,9 @@ function _sfc_render$B(_ctx, _cache) {
36922
37281
  }, null, -1)
36923
37282
  ])]);
36924
37283
  }
36925
- const CameraSlashIcon = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["render", _sfc_render$B]]);
36926
- const _sfc_main$14 = {};
36927
- const _hoisted_1$$ = {
37284
+ const CameraSlashIcon = /* @__PURE__ */ _export_sfc(_sfc_main$16, [["render", _sfc_render$B]]);
37285
+ const _sfc_main$15 = {};
37286
+ const _hoisted_1$10 = {
36928
37287
  t: "1754376473419",
36929
37288
  class: "icon",
36930
37289
  viewBox: "0 0 1024 1024",
@@ -36935,7 +37294,7 @@ const _hoisted_1$$ = {
36935
37294
  height: "200"
36936
37295
  };
36937
37296
  function _sfc_render$A(_ctx, _cache) {
36938
- return openBlock(), createElementBlock("svg", _hoisted_1$$, [..._cache[0] || (_cache[0] = [
37297
+ return openBlock(), createElementBlock("svg", _hoisted_1$10, [..._cache[0] || (_cache[0] = [
36939
37298
  createElementVNode("path", {
36940
37299
  d: "M174.97790503 141.21142578h235.91546655c9.3092649 0 17.22930884 3.29754663 23.86395264 9.88769508 6.5505979 6.59509253 9.86792016 14.52996803 9.86792016 23.79968309 0 9.27465844-3.31237817 17.30841065-9.86792016 23.79968238-6.63464379 6.69891334-14.55468773 9.88769508-23.86395264 9.88769508H256.31903076l211.96746802 211.82409667c6.67419434 6.69891334 10.00140405 14.63378883 10.00140405 23.90350389 0 9.37353516-3.32720971 17.30346656-10.00140405 23.8985591-6.67419434 6.59509253-14.68322754 9.88769508-23.96777343 9.88769579-8.9483645 0-16.91290307-3.29260253-23.95788527-9.78387499l-211.69555688-211.92297339v154.53973364c0 9.37353516-3.29260253 17.30346656-9.89758324 23.89855981-6.59014916 6.59509253-14.53491211 9.89263916-23.82934546 9.89263916-9.30432153 0-17.25402856-3.29754663-23.83923364-9.88769507-6.60003662-6.59509253-9.88769508-14.52996803-9.88769508-23.9035039V175.00262475c0-9.26971435 3.28765845-17.20458984 9.88769508-23.89855981C157.67938257 144.6127932 165.63403297 141.21142578 174.9334104 141.21142578h0.04449463z m404.45617677 404.27325415c9.30432153 0 17.30346656 3.29754663 23.95788597 9.9915166l211.96252465 212.02679419v-154.64355445c0-9.26971435 3.31237817-17.20458984 9.87780762-23.794739 6.60003662-6.59509253 14.52008057-9.88769508 23.85406447-9.88769508 9.3092649 0 17.21942138 3.29260253 23.83428955 9.88769508C879.47619605 595.64990234 882.78857422 603.58972192 882.78857422 612.85449219v236.03411889c0 9.26971435-3.32720971 17.20458984-10.00140405 23.90350317-6.67419434 6.69396997-14.68817163 9.99151587-23.96777344 9.99151588h-235.92040991c-9.3092649 0-17.25402856-3.29754663-23.82934547-9.88769507-6.6049807-6.59509253-9.88275171-14.52996803-9.88275171-23.79968238 0-9.27465844 3.27777099-17.20458984 9.87780763-23.79968309 6.58520508-6.59509253 14.52502465-9.88769508 23.83428955-9.88769508h154.56939673L555.50585961 603.37713623c-6.46655273-6.90161156-9.70971656-14.83154297-9.70971727-24.00238061 0-9.27465844 3.30743408-17.30841065 9.86792016-23.90350318 6.60992408-6.69396997 14.55468773-10.09533667 23.82934547-10.09533667l-0.05932617 0.09887671z",
36941
37300
  "p-id": "7095",
@@ -36943,9 +37302,9 @@ function _sfc_render$A(_ctx, _cache) {
36943
37302
  }, null, -1)
36944
37303
  ])]);
36945
37304
  }
36946
- const ExpandIcon = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["render", _sfc_render$A]]);
36947
- const _sfc_main$13 = {};
36948
- const _hoisted_1$_ = {
37305
+ const ExpandIcon = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["render", _sfc_render$A]]);
37306
+ const _sfc_main$14 = {};
37307
+ const _hoisted_1$$ = {
36949
37308
  t: "1754298104659",
36950
37309
  class: "icon",
36951
37310
  viewBox: "0 0 1024 1024",
@@ -36955,7 +37314,7 @@ const _hoisted_1$_ = {
36955
37314
  "data-spm-anchor-id": "a313x.search_index.0.i3.37153a814680OH"
36956
37315
  };
36957
37316
  function _sfc_render$z(_ctx, _cache) {
36958
- return openBlock(), createElementBlock("svg", _hoisted_1$_, [..._cache[0] || (_cache[0] = [
37317
+ return openBlock(), createElementBlock("svg", _hoisted_1$$, [..._cache[0] || (_cache[0] = [
36959
37318
  createElementVNode("path", {
36960
37319
  d: "M512 466.944l233.472-233.472a31.744 31.744 0 0 1 45.056 45.056L557.056 512l233.472 233.472a31.744 31.744 0 0 1-45.056 45.056L512 557.056l-233.472 233.472a31.744 31.744 0 0 1-45.056-45.056L466.944 512 233.472 278.528a31.744 31.744 0 0 1 45.056-45.056z",
36961
37320
  fill: "currentColor",
@@ -36963,9 +37322,9 @@ function _sfc_render$z(_ctx, _cache) {
36963
37322
  }, null, -1)
36964
37323
  ])]);
36965
37324
  }
36966
- const CloseIcon = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["render", _sfc_render$z]]);
36967
- const _sfc_main$12 = {};
36968
- const _hoisted_1$Z = {
37325
+ const CloseIcon = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["render", _sfc_render$z]]);
37326
+ const _sfc_main$13 = {};
37327
+ const _hoisted_1$_ = {
36969
37328
  t: "1754371851482",
36970
37329
  class: "icon",
36971
37330
  viewBox: "0 0 1024 1024",
@@ -36976,7 +37335,7 @@ const _hoisted_1$Z = {
36976
37335
  height: "200"
36977
37336
  };
36978
37337
  function _sfc_render$y(_ctx, _cache) {
36979
- return openBlock(), createElementBlock("svg", _hoisted_1$Z, [..._cache[0] || (_cache[0] = [
37338
+ return openBlock(), createElementBlock("svg", _hoisted_1$_, [..._cache[0] || (_cache[0] = [
36980
37339
  createElementVNode("path", {
36981
37340
  d: "M863.7 552.5H160.3c-10.6 0-19.2-8.6-19.2-19.2v-41.7c0-10.6 8.6-19.2 19.2-19.2h703.3c10.6 0 19.2 8.6 19.2 19.2v41.7c0 10.6-8.5 19.2-19.1 19.2z",
36982
37341
  "p-id": "2388",
@@ -36984,9 +37343,9 @@ function _sfc_render$y(_ctx, _cache) {
36984
37343
  }, null, -1)
36985
37344
  ])]);
36986
37345
  }
36987
- const MinimizeIcon = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["render", _sfc_render$y]]);
36988
- const _sfc_main$11 = {};
36989
- const _hoisted_1$Y = {
37346
+ const MinimizeIcon = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["render", _sfc_render$y]]);
37347
+ const _sfc_main$12 = {};
37348
+ const _hoisted_1$Z = {
36990
37349
  t: "1753863696578",
36991
37350
  class: "icon",
36992
37351
  viewBox: "0 0 1024 1024",
@@ -36995,7 +37354,7 @@ const _hoisted_1$Y = {
36995
37354
  "p-id": "23605"
36996
37355
  };
36997
37356
  function _sfc_render$x(_ctx, _cache) {
36998
- return openBlock(), createElementBlock("svg", _hoisted_1$Y, [..._cache[0] || (_cache[0] = [
37357
+ return openBlock(), createElementBlock("svg", _hoisted_1$Z, [..._cache[0] || (_cache[0] = [
36999
37358
  createElementVNode("path", {
37000
37359
  d: "M787.328 941.909333c21.845333 0 39.424 18.858667 39.424 41.045334V1024H196.693333v-41.045333s17.578667-41.045333 39.466667-41.045334zM905.130667 0C970.709333 0 1023.488 54.912 1024 122.581333v573.568c0 68.266667-53.333333 123.178667-118.357333 123.178667h-275.584v41.045333c0 19.968-17.578667 41.045333-39.424 41.045334h-157.269334c-21.845333 0-39.424-18.346667-39.424-41.045334v-41.045333h-275.626666c-65.536 0-118.314667-55.466667-118.314667-123.178667V122.581333C0 54.912 52.778667 0 118.357333 0z m0 694.485333c-22.4 0-40.533333 19.413333-40.533334 42.709334 0 23.893333 18.133333 42.752 40.533334 42.752 22.912 0 41.045333-19.456 41.045333-42.752 0-23.850667-18.645333-42.666667-41.045333-42.666667z m0.512-612.949333H118.357333c-21.888 0-39.466667 18.346667-39.466666 41.045333v491.52c0 22.698667 17.578667 41.002667 39.466666 41.002667h787.285334c21.888 0 39.466667-18.304 39.466666-41.045333V122.581333c0-22.741333-17.578667-41.045333-39.466666-41.045333z m-355.541334 78.08c4.821333 0 11.264 2.858667 18.602667 8.362667 4.650667 3.882667 13.141333 10.752 25.216 20.693333l41.514667 34.048a5493.802667 5493.802667 0 0 1 87.210666 72.789333c8.746667 7.253333 16.938667 15.189333 24.533334 23.722667 5.333333 6.016 8.021333 11.733333 8.021333 16.64a15.701333 15.701333 0 0 1-5.845333 12.928c-6.144 5.248-13.994667 11.52-24.32 19.242667a13436.842667 13436.842667 0 0 1-94.165334 72.661333c-15.36 11.733333-28.288 21.418667-39.338666 29.610667a420.437333 420.437333 0 0 1-23.296 16.426666c-12.586667 7.936-19.754667 9.642667-23.594667 9.642667a9.898667 9.898667 0 0 1-2.389333-0.298667c-5.248-1.706667-6.912-4.181333-7.68-5.973333V408.405333a12.202667 12.202667 0 0 0-11.946667-12.373333h-2.730667c-36.522667 0-68.821333 4.181333-96.170666 12.458667-27.904 8.448-52.778667 21.333333-73.813334 38.272a254.464 254.464 0 0 0-55.04 63.061333c-8.874667 14.805333-17.749333 31.232-25.898666 48.725333-0.085333-4.266667-0.170667-9.002667-0.170667-14.165333 0-38.954667 5.717333-75.861333 17.066667-109.482667a270.08 270.08 0 0 1 48.64-88.234666 225.066667 225.066667 0 0 1 76.245333-58.794667c28.586667-13.653333 61.354667-20.522667 97.237333-20.522667h3.541334c1.322667-0.042667 2.645333 0 3.925333 0.213334 2.133333 0.341333 4.693333 0.512 7.893333 0.512 3.157333 0 6.229333-1.28 8.533334-3.626667a12.8 12.8 0 0 0 3.413333-8.832l-0.682667-75.477333c1.024-11.946667 6.4-16.64 10.325334-19.072a9.173333 9.173333 0 0 1 5.162666-1.493334z",
37001
37360
  "p-id": "23606",
@@ -37003,9 +37362,9 @@ function _sfc_render$x(_ctx, _cache) {
37003
37362
  }, null, -1)
37004
37363
  ])]);
37005
37364
  }
37006
- const ShareScrrenIcon = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["render", _sfc_render$x]]);
37007
- const _sfc_main$10 = {};
37008
- const _hoisted_1$X = {
37365
+ const ShareScrrenIcon = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["render", _sfc_render$x]]);
37366
+ const _sfc_main$11 = {};
37367
+ const _hoisted_1$Y = {
37009
37368
  t: "1753863817781",
37010
37369
  class: "icon",
37011
37370
  viewBox: "0 0 1024 1024",
@@ -37014,7 +37373,7 @@ const _hoisted_1$X = {
37014
37373
  "p-id": "26706"
37015
37374
  };
37016
37375
  function _sfc_render$w(_ctx, _cache) {
37017
- return openBlock(), createElementBlock("svg", _hoisted_1$X, [..._cache[0] || (_cache[0] = [
37376
+ return openBlock(), createElementBlock("svg", _hoisted_1$Y, [..._cache[0] || (_cache[0] = [
37018
37377
  createElementVNode("path", {
37019
37378
  d: "M497.265778 804.522667c0 85.504 34.986667 162.816 91.306666 218.510222-25.031111 0.625778-50.176 0.910222-75.093333 0.910222-246.840889 0-513.536-26.624-513.536-143.985778v-32.256c0-86.072889 181.987556-173.283556 337.180445-221.184 11.207111-3.470222 85.390222-46.990222 34.816-95.345777-84.878222-76.856889-115.313778-158.776889-117.475556-263.566223 0-163.498667 109.340444-267.662222 257.422222-267.662222 148.138667 0 254.748444 104.049778 254.748445 267.662222-2.446222 104.504889-29.411556 186.083556-113.493334 262.883556a103.253333 103.253333 0 0 0-9.045333 11.946667 306.972444 306.972444 0 0 0-146.830222 262.087111z m307.2 219.420444a219.363556 219.363556 0 1 1 0-438.784 219.363556 219.363556 0 0 1 0 438.784z m-43.861334-263.338667h-58.538666a43.861333 43.861333 0 1 0 0 87.779556h58.538666v58.538667a43.804444 43.804444 0 1 0 87.779556 0v-58.538667h58.538667a43.804444 43.804444 0 1 0 0-87.779556h-58.538667v-58.481777a43.918222 43.918222 0 1 0-87.779556 0v58.481777z",
37020
37379
  fill: "currentColor",
@@ -37022,9 +37381,9 @@ function _sfc_render$w(_ctx, _cache) {
37022
37381
  }, null, -1)
37023
37382
  ])]);
37024
37383
  }
37025
- const InviteIcon = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["render", _sfc_render$w]]);
37026
- const _sfc_main$$ = {};
37027
- const _hoisted_1$W = {
37384
+ const InviteIcon = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["render", _sfc_render$w]]);
37385
+ const _sfc_main$10 = {};
37386
+ const _hoisted_1$X = {
37028
37387
  t: "1753863952223",
37029
37388
  class: "icon",
37030
37389
  viewBox: "0 0 1025 1024",
@@ -37033,7 +37392,7 @@ const _hoisted_1$W = {
37033
37392
  "p-id": "32469"
37034
37393
  };
37035
37394
  function _sfc_render$v(_ctx, _cache) {
37036
- return openBlock(), createElementBlock("svg", _hoisted_1$W, [..._cache[0] || (_cache[0] = [
37395
+ return openBlock(), createElementBlock("svg", _hoisted_1$X, [..._cache[0] || (_cache[0] = [
37037
37396
  createElementVNode("path", {
37038
37397
  d: "M344.626 600.536c8.607-3.256 19.065-6.233 31.491-14.042 18.109-11.379 32.062-34.843-1.603-63.595-111.384-160.502-70.843-267.145-53.924-307.317-14.133-5.496-30.208-8.747-48.608-8.747h-5.787c-106.593 0-134.923 96.947-137.085 151.323-1.43 128.215 76.955 179.192 76.955 179.192s4.883 6.742 4.883 26.297c0 4.458-2.906 17.813-7.921 21.847-43.752 35.43-189.787 72.341-199.992 148.665-5.395 22.053-2.168 44.959-1.106 66.186 23.896 18.349 100.454 33.905 100.454 33.905s6.356-19.31 12.808-51.222c9.536-47.171 73.357-123.507 229.435-182.492z m676.565 132.952c-10.484-76.229-160.407-113.09-205.271-148.474-5.151-4.033-8.11-17.367-8.11-21.813 0-19.539 4.972-26.27 4.972-26.27s80.384-50.909 78.882-178.961c-2.191-54.311-36.079-151.135-140.477-151.135h-5.937c-22.504 0-41.425 4.278-57.578 11.272 22.338 74.782 49.177 212.002-63.755 303.96-44.306 66.052 103.281 104.794 80.341 94.485C837.807 676.57 873.75 722.614 883.537 770.22c8.172 39.733 12.808 64.031 12.808 64.031s100.058-15.272 125.936-34.66c1.116-21.204 4.422-44.078-1.09-66.103zM585.685 587.176c-6.312-5.016-9.943-21.612-9.943-27.136 0-24.28 6.077-32.626 6.077-32.626-0.111 0.072 98.734-53.379 96.79-222.424-2.692-67.509-44.256-187.833-172.348-187.833h-7.285c-134.018 0-169.661 120.323-172.366 187.833-1.809 159.138 96.768 222.424 96.768 222.424s11.954 13.634 11.954 37.916c0 5.53-9.485 16.824-15.787 21.847-55.013 43.982-253.102 88.31-265.943 183.044-9.943 40.19-68.755 103.929 126.791 129.589 53.869 7.067 127.043 11.245 225.859 11.245 453.509 0 359.745-87.859 346.999-139.37-12.849-94.73-212.535-140.529-267.566-184.509z",
37039
37398
  "p-id": "32470",
@@ -37041,9 +37400,9 @@ function _sfc_render$v(_ctx, _cache) {
37041
37400
  }, null, -1)
37042
37401
  ])]);
37043
37402
  }
37044
- const MemberIcon = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["render", _sfc_render$v]]);
37045
- const _sfc_main$_ = {};
37046
- const _hoisted_1$V = {
37403
+ const MemberIcon = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["render", _sfc_render$v]]);
37404
+ const _sfc_main$$ = {};
37405
+ const _hoisted_1$W = {
37047
37406
  t: "1753864379446",
37048
37407
  class: "icon",
37049
37408
  viewBox: "0 0 1024 1024",
@@ -37052,7 +37411,7 @@ const _hoisted_1$V = {
37052
37411
  "p-id": "35667"
37053
37412
  };
37054
37413
  function _sfc_render$u(_ctx, _cache) {
37055
- return openBlock(), createElementBlock("svg", _hoisted_1$V, [..._cache[0] || (_cache[0] = [
37414
+ return openBlock(), createElementBlock("svg", _hoisted_1$W, [..._cache[0] || (_cache[0] = [
37056
37415
  createElementVNode("path", {
37057
37416
  d: "M896 128H128A85.426667 85.426667 0 0 0 42.666667 213.333333v512a85.426667 85.426667 0 0 0 85.333333 85.333334v106.666666a21.333333 21.333333 0 0 0 36.42 15.086667L286.166667 810.666667H896a85.426667 85.426667 0 0 0 85.333333-85.333334V213.333333a85.426667 85.426667 0 0 0-85.333333-85.333333zM298.666667 512a42.666667 42.666667 0 1 1 42.666666-42.666667 42.666667 42.666667 0 0 1-42.666666 42.666667z m213.333333 0a42.666667 42.666667 0 1 1 42.666667-42.666667 42.666667 42.666667 0 0 1-42.666667 42.666667z m213.333333 0a42.666667 42.666667 0 1 1 42.666667-42.666667 42.666667 42.666667 0 0 1-42.666667 42.666667z",
37058
37417
  fill: "currentColor",
@@ -37060,9 +37419,9 @@ function _sfc_render$u(_ctx, _cache) {
37060
37419
  }, null, -1)
37061
37420
  ])]);
37062
37421
  }
37063
- const ChatIcon = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["render", _sfc_render$u]]);
37064
- const _sfc_main$Z = {};
37065
- const _hoisted_1$U = {
37422
+ const ChatIcon = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["render", _sfc_render$u]]);
37423
+ const _sfc_main$_ = {};
37424
+ const _hoisted_1$V = {
37066
37425
  t: "1754293305905",
37067
37426
  class: "icon",
37068
37427
  viewBox: "0 0 1024 1024",
@@ -37071,7 +37430,7 @@ const _hoisted_1$U = {
37071
37430
  "p-id": "2467"
37072
37431
  };
37073
37432
  function _sfc_render$t(_ctx, _cache) {
37074
- return openBlock(), createElementBlock("svg", _hoisted_1$U, [..._cache[0] || (_cache[0] = [
37433
+ return openBlock(), createElementBlock("svg", _hoisted_1$V, [..._cache[0] || (_cache[0] = [
37075
37434
  createElementVNode("path", {
37076
37435
  d: "M98.461538 546.953846c0-12.228923 9.176615-18.215385 20.401231-13.272615l86.390154 37.927384c11.224615 4.923077 20.401231 18.944 20.401231 31.172923v49.368616h144.738461l27.963077-60.435692 85.543385 39.778461-40.448 87.433846a47.241846 47.241846 0 0 1-42.870154 27.313231h-174.966154v49.368615c0 12.248615-9.156923 26.249846-20.401231 31.172923l-86.350769 37.96677C107.638154 869.651692 98.461538 863.704615 98.461538 851.456z m814.67077 3.328l-58.978462 126.070154-84.381538-39.227077 143.36-86.843077zM361.491692 161.673846L947.593846 434.136615c22.193231 10.358154 23.236923 29.184 2.284308 41.865847l-262.833231 159.232c-20.952615 12.681846-56.280615 14.611692-78.513231 4.292923l-386.500923-179.672616a44.563692 44.563692 0 0 1-21.582769-59.076923l101.769846-217.6a44.780308 44.780308 0 0 1 59.273846-21.504z",
37077
37436
  fill: "currentColor",
@@ -37079,9 +37438,9 @@ function _sfc_render$t(_ctx, _cache) {
37079
37438
  }, null, -1)
37080
37439
  ])]);
37081
37440
  }
37082
- const MonitorIcon = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["render", _sfc_render$t]]);
37083
- const _sfc_main$Y = {};
37084
- const _hoisted_1$T = {
37441
+ const MonitorIcon = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["render", _sfc_render$t]]);
37442
+ const _sfc_main$Z = {};
37443
+ const _hoisted_1$U = {
37085
37444
  t: "1753863785787",
37086
37445
  class: "icon",
37087
37446
  viewBox: "0 0 1024 1024",
@@ -37090,7 +37449,7 @@ const _hoisted_1$T = {
37090
37449
  "p-id": "25608"
37091
37450
  };
37092
37451
  function _sfc_render$s(_ctx, _cache) {
37093
- return openBlock(), createElementBlock("svg", _hoisted_1$T, [..._cache[0] || (_cache[0] = [
37452
+ return openBlock(), createElementBlock("svg", _hoisted_1$U, [..._cache[0] || (_cache[0] = [
37094
37453
  createElementVNode("path", {
37095
37454
  d: "M512 42.666667c259.2 0 469.333333 210.133333 469.333333 469.333333s-210.133333 469.333333-469.333333 469.333333S42.666667 771.2 42.666667 512 252.8 42.666667 512 42.666667z m0 85.333333C299.925333 128 128 299.925333 128 512s171.925333 384 384 384 384-171.925333 384-384S724.074667 128 512 128z m0 234.666667a149.333333 149.333333 0 1 1 0 298.666666 149.333333 149.333333 0 0 1 0-298.666666z",
37096
37455
  fill: "currentColor",
@@ -37098,9 +37457,9 @@ function _sfc_render$s(_ctx, _cache) {
37098
37457
  }, null, -1)
37099
37458
  ])]);
37100
37459
  }
37101
- const TranscribeIcon = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["render", _sfc_render$s]]);
37102
- const _sfc_main$X = {};
37103
- const _hoisted_1$S = {
37460
+ const TranscribeIcon = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["render", _sfc_render$s]]);
37461
+ const _sfc_main$Y = {};
37462
+ const _hoisted_1$T = {
37104
37463
  width: "24",
37105
37464
  height: "24",
37106
37465
  viewBox: "0 0 24 24",
@@ -37108,7 +37467,7 @@ const _hoisted_1$S = {
37108
37467
  xmlns: "http://www.w3.org/2000/svg"
37109
37468
  };
37110
37469
  function _sfc_render$r(_ctx, _cache) {
37111
- return openBlock(), createElementBlock("svg", _hoisted_1$S, [..._cache[0] || (_cache[0] = [
37470
+ return openBlock(), createElementBlock("svg", _hoisted_1$T, [..._cache[0] || (_cache[0] = [
37112
37471
  createElementVNode("rect", {
37113
37472
  x: "3",
37114
37473
  y: "3",
@@ -37151,9 +37510,9 @@ function _sfc_render$r(_ctx, _cache) {
37151
37510
  }, null, -1)
37152
37511
  ])]);
37153
37512
  }
37154
- const GridIcon4 = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["render", _sfc_render$r]]);
37155
- const _sfc_main$W = {};
37156
- const _hoisted_1$R = {
37513
+ const GridIcon4 = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["render", _sfc_render$r]]);
37514
+ const _sfc_main$X = {};
37515
+ const _hoisted_1$S = {
37157
37516
  width: "24",
37158
37517
  height: "24",
37159
37518
  viewBox: "0 0 24 24",
@@ -37161,13 +37520,13 @@ const _hoisted_1$R = {
37161
37520
  xmlns: "http://www.w3.org/2000/svg"
37162
37521
  };
37163
37522
  function _sfc_render$q(_ctx, _cache) {
37164
- return openBlock(), createElementBlock("svg", _hoisted_1$R, [..._cache[0] || (_cache[0] = [
37523
+ return openBlock(), createElementBlock("svg", _hoisted_1$S, [..._cache[0] || (_cache[0] = [
37165
37524
  createStaticVNode('<rect x="2" y="2" width="6" height="6" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="9" y="2" width="6" height="6" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="16" y="2" width="6" height="6" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="2" y="9" width="6" height="6" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="9" y="9" width="6" height="6" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="16" y="9" width="6" height="6" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="2" y="16" width="6" height="6" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="9" y="16" width="6" height="6" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="16" y="16" width="6" height="6" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect>', 9)
37166
37525
  ])]);
37167
37526
  }
37168
- const GridIcon9 = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["render", _sfc_render$q]]);
37169
- const _sfc_main$V = {};
37170
- const _hoisted_1$Q = {
37527
+ const GridIcon9 = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["render", _sfc_render$q]]);
37528
+ const _sfc_main$W = {};
37529
+ const _hoisted_1$R = {
37171
37530
  width: "24",
37172
37531
  height: "24",
37173
37532
  viewBox: "0 0 24 24",
@@ -37175,13 +37534,13 @@ const _hoisted_1$Q = {
37175
37534
  xmlns: "http://www.w3.org/2000/svg"
37176
37535
  };
37177
37536
  function _sfc_render$p(_ctx, _cache) {
37178
- return openBlock(), createElementBlock("svg", _hoisted_1$Q, [..._cache[0] || (_cache[0] = [
37537
+ return openBlock(), createElementBlock("svg", _hoisted_1$R, [..._cache[0] || (_cache[0] = [
37179
37538
  createStaticVNode('<rect x="1" y="3" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="6.5" y="3" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="12" y="3" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="17.5" y="3" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="1" y="8" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="6.5" y="8" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="12" y="8" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="17.5" y="8" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="1" y="13" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="6.5" y="13" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="12" y="13" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect><rect x="17.5" y="13" width="5" height="4" rx="0.5" stroke="currentColor" stroke-width="1.2" fill="none"></rect>', 12)
37180
37539
  ])]);
37181
37540
  }
37182
- const GridIcon12 = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["render", _sfc_render$p]]);
37183
- const _sfc_main$U = {};
37184
- const _hoisted_1$P = {
37541
+ const GridIcon12 = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["render", _sfc_render$p]]);
37542
+ const _sfc_main$V = {};
37543
+ const _hoisted_1$Q = {
37185
37544
  t: "1754983552519",
37186
37545
  class: "icon",
37187
37546
  viewBox: "0 0 1024 1024",
@@ -37192,7 +37551,7 @@ const _hoisted_1$P = {
37192
37551
  height: "200"
37193
37552
  };
37194
37553
  function _sfc_render$o(_ctx, _cache) {
37195
- return openBlock(), createElementBlock("svg", _hoisted_1$P, [..._cache[0] || (_cache[0] = [
37554
+ return openBlock(), createElementBlock("svg", _hoisted_1$Q, [..._cache[0] || (_cache[0] = [
37196
37555
  createElementVNode("path", {
37197
37556
  d: "M830.450526 853.759999q-11.722105 8.791579-27.351579 8.791579-19.536842 0-33.701053-14.164211t-14.164211-33.701053q0-21.490526 16.606316-36.143158 0.976842-0.976842 1.953684-1.465263t1.953684-1.465263l0.976842-0.976842q27.351579-18.56 50.795789-43.957895t41.027368-55.191579 27.351579-63.494737 9.768421-69.84421q0-73.263158-37.12-133.827368t-92.8-99.637895q-20.513684-14.652632-20.513684-39.073684 0-19.536842 14.164211-33.701053t33.701053-14.164211q16.606316 0 29.305263 10.745263 36.143158 25.397895 67.402105 59.098947t53.726316 73.263158 35.166316 84.496842 12.698947 92.8q0 48.842105-12.698947 93.776842t-35.654737 84.985263-54.214737 73.751579-68.378947 59.098947zM775.747368 415.157894q20.513684 28.328421 32.72421 57.145263t12.210526 69.84421q0 39.073684-12.698947 70.332632t-32.235789 56.656842q-7.814737 10.745263-16.606316 19.048421t-22.467368 8.303158q-17.583158 0-29.793684-12.698947t-12.210526-30.282105q0-7.814737 2.930526-15.629474l-0.976842 0q4.884211-10.745263 11.722105-20.513684t13.187368-20.025263 10.745263-23.444211 4.395789-31.747368q0-17.583158-4.395789-30.770526t-10.745263-23.932632-13.187368-20.513684-10.745263-20.513684q-2.930526-6.837895-2.930526-15.629474 0-17.583158 12.210526-30.282105t29.793684-12.698947q13.675789 0 22.467368 8.303158t16.606316 19.048421zM460.227368 995.402104q-49.818947-44.934737-105.498947-93.776842t-103.545263-89.869474q-55.68-46.888421-111.36-92.8-10.745263 0.976842-21.490526 0.976842-8.791579 0.976842-18.56 0.976842l-16.606316 0q-26.374737 0-42.981053-16.117895t-16.606316-38.585263l0-246.16421 0.976842 0-0.976842-0.976842q0-27.351579 17.094737-44.934737t42.492632-17.583158l55.68 0q89.869474-76.193684 163.132631-136.757895 31.258947-26.374737 61.541053-51.28421t54.703158-45.423158 41.027368-34.189474 20.513684-16.606316q29.305263-21.490526 47.376842-19.536842t28.328421 17.583158 14.164211 38.096842 3.907368 41.027368l0 788.311578 0 2.930526q0 18.56-6.837895 39.562105t-21.002105 33.212632-35.654737 10.256842-49.818947-28.328421z",
37198
37557
  "p-id": "2402",
@@ -37200,9 +37559,9 @@ function _sfc_render$o(_ctx, _cache) {
37200
37559
  }, null, -1)
37201
37560
  ])]);
37202
37561
  }
37203
- const SpeakerIcon = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["render", _sfc_render$o]]);
37204
- const _sfc_main$T = {};
37205
- const _hoisted_1$O = {
37562
+ const SpeakerIcon = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["render", _sfc_render$o]]);
37563
+ const _sfc_main$U = {};
37564
+ const _hoisted_1$P = {
37206
37565
  t: "1754983552519",
37207
37566
  class: "icon",
37208
37567
  viewBox: "0 0 1024 1024",
@@ -37213,7 +37572,7 @@ const _hoisted_1$O = {
37213
37572
  height: "200"
37214
37573
  };
37215
37574
  function _sfc_render$n(_ctx, _cache) {
37216
- return openBlock(), createElementBlock("svg", _hoisted_1$O, [..._cache[0] || (_cache[0] = [
37575
+ return openBlock(), createElementBlock("svg", _hoisted_1$P, [..._cache[0] || (_cache[0] = [
37217
37576
  createElementVNode("path", {
37218
37577
  d: "M830.450526 853.759999q-11.722105 8.791579-27.351579 8.791579-19.536842 0-33.701053-14.164211t-14.164211-33.701053q0-21.490526 16.606316-36.143158 0.976842-0.976842 1.953684-1.465263t1.953684-1.465263l0.976842-0.976842q27.351579-18.56 50.795789-43.957895t41.027368-55.191579 27.351579-63.494737 9.768421-69.84421q0-73.263158-37.12-133.827368t-92.8-99.637895q-20.513684-14.652632-20.513684-39.073684 0-19.536842 14.164211-33.701053t33.701053-14.164211q16.606316 0 29.305263 10.745263 36.143158 25.397895 67.402105 59.098947t53.726316 73.263158 35.166316 84.496842 12.698947 92.8q0 48.842105-12.698947 93.776842t-35.654737 84.985263-54.214737 73.751579-68.378947 59.098947zM775.747368 415.157894q20.513684 28.328421 32.72421 57.145263t12.210526 69.84421q0 39.073684-12.698947 70.332632t-32.235789 56.656842q-7.814737 10.745263-16.606316 19.048421t-22.467368 8.303158q-17.583158 0-29.793684-12.698947t-12.210526-30.282105q0-7.814737 2.930526-15.629474l-0.976842 0q4.884211-10.745263 11.722105-20.513684t13.187368-20.025263 10.745263-23.444211 4.395789-31.747368q0-17.583158-4.395789-30.770526t-10.745263-23.932632-13.187368-20.513684-10.745263-20.513684q-2.930526-6.837895-2.930526-15.629474 0-17.583158 12.210526-30.282105t29.793684-12.698947q13.675789 0 22.467368 8.303158t16.606316 19.048421zM460.227368 995.402104q-49.818947-44.934737-105.498947-93.776842t-103.545263-89.869474q-55.68-46.888421-111.36-92.8-10.745263 0.976842-21.490526 0.976842-8.791579 0.976842-18.56 0.976842l-16.606316 0q-26.374737 0-42.981053-16.117895t-16.606316-38.585263l0-246.16421 0.976842 0-0.976842-0.976842q0-27.351579 17.094737-44.934737t42.492632-17.583158l55.68 0q89.869474-76.193684 163.132631-136.757895 31.258947-26.374737 61.541053-51.28421t54.703158-45.423158 41.027368-34.189474 20.513684-16.606316q29.305263-21.490526 47.376842-19.536842t28.328421 17.583158 14.164211 38.096842 3.907368 41.027368l0 788.311578 0 2.930526q0 18.56-6.837895 39.562105t-21.002105 33.212632-35.654737 10.256842-49.818947-28.328421z",
37219
37578
  "p-id": "2402",
@@ -37230,14 +37589,14 @@ function _sfc_render$n(_ctx, _cache) {
37230
37589
  }, null, -1)
37231
37590
  ])]);
37232
37591
  }
37233
- const SpeakerSlashIcon = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["render", _sfc_render$n]]);
37234
- const _sfc_main$S = {};
37592
+ const SpeakerSlashIcon = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["render", _sfc_render$n]]);
37593
+ const _sfc_main$T = {};
37235
37594
  function _sfc_render$m(_ctx, _cache) {
37236
37595
  return null;
37237
37596
  }
37238
- const AvatarIcon = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["render", _sfc_render$m]]);
37239
- const _sfc_main$R = {};
37240
- const _hoisted_1$N = {
37597
+ const AvatarIcon = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["render", _sfc_render$m]]);
37598
+ const _sfc_main$S = {};
37599
+ const _hoisted_1$O = {
37241
37600
  t: "1753860122205",
37242
37601
  class: "icon",
37243
37602
  viewBox: "0 0 1024 1024",
@@ -37246,7 +37605,7 @@ const _hoisted_1$N = {
37246
37605
  "p-id": "4465"
37247
37606
  };
37248
37607
  function _sfc_render$l(_ctx, _cache) {
37249
- return openBlock(), createElementBlock("svg", _hoisted_1$N, [..._cache[0] || (_cache[0] = [
37608
+ return openBlock(), createElementBlock("svg", _hoisted_1$O, [..._cache[0] || (_cache[0] = [
37250
37609
  createElementVNode("path", {
37251
37610
  d: "M868.7 571.4H157.3c-32.7 0-59.3-26.5-59.3-59.3 0-32.7 26.5-59.3 59.3-59.3h711.4c32.7 0 59.3 26.5 59.3 59.3s-26.5 59.3-59.3 59.3z",
37252
37611
  "p-id": "4466",
@@ -37254,9 +37613,9 @@ function _sfc_render$l(_ctx, _cache) {
37254
37613
  }, null, -1)
37255
37614
  ])]);
37256
37615
  }
37257
- const RetractIcon = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["render", _sfc_render$l]]);
37258
- const _sfc_main$Q = {};
37259
- const _hoisted_1$M = {
37616
+ const RetractIcon = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["render", _sfc_render$l]]);
37617
+ const _sfc_main$R = {};
37618
+ const _hoisted_1$N = {
37260
37619
  t: "1754379555430",
37261
37620
  class: "icon",
37262
37621
  viewBox: "0 0 1024 1024",
@@ -37267,7 +37626,7 @@ const _hoisted_1$M = {
37267
37626
  height: "200"
37268
37627
  };
37269
37628
  function _sfc_render$k(_ctx, _cache) {
37270
- return openBlock(), createElementBlock("svg", _hoisted_1$M, [..._cache[0] || (_cache[0] = [
37629
+ return openBlock(), createElementBlock("svg", _hoisted_1$N, [..._cache[0] || (_cache[0] = [
37271
37630
  createElementVNode("path", {
37272
37631
  d: "M512 6.4C505.6 0 492.8 0 480 0s-25.6 0-32 6.4c-12.8 6.4-19.2 19.2-25.6 25.6L6.4 761.6c-12.8 19.2-12.8 44.8 0 64 6.4 12.8 12.8 12.8 25.6 19.2s19.2 6.4 32 6.4h819.2c12.8 0 25.6 0 32-6.4 12.8-6.4 19.2-12.8 25.6-19.2 12.8-19.2 12.8-44.8 0-64L537.6 32C531.2 25.6 524.8 12.8 512 6.4z",
37273
37632
  fill: "currentColor",
@@ -37275,9 +37634,9 @@ function _sfc_render$k(_ctx, _cache) {
37275
37634
  }, null, -1)
37276
37635
  ])]);
37277
37636
  }
37278
- const TriangleIcon = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["render", _sfc_render$k]]);
37279
- const _sfc_main$P = {};
37280
- const _hoisted_1$L = {
37637
+ const TriangleIcon = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["render", _sfc_render$k]]);
37638
+ const _sfc_main$Q = {};
37639
+ const _hoisted_1$M = {
37281
37640
  t: "1754533725953",
37282
37641
  class: "icon",
37283
37642
  viewBox: "0 0 1024 1024",
@@ -37286,7 +37645,7 @@ const _hoisted_1$L = {
37286
37645
  "p-id": "13313"
37287
37646
  };
37288
37647
  function _sfc_render$j(_ctx, _cache) {
37289
- return openBlock(), createElementBlock("svg", _hoisted_1$L, [..._cache[0] || (_cache[0] = [
37648
+ return openBlock(), createElementBlock("svg", _hoisted_1$M, [..._cache[0] || (_cache[0] = [
37290
37649
  createElementVNode("path", {
37291
37650
  d: "M128 384h85.33V213.33H384V128H128zM640 128v85.33h170.67V384H896V128zM810.67 810.67H640V896h256V640h-85.33zM213.33 640H128v256h256v-85.33H213.33z",
37292
37651
  "p-id": "13314",
@@ -37294,9 +37653,9 @@ function _sfc_render$j(_ctx, _cache) {
37294
37653
  }, null, -1)
37295
37654
  ])]);
37296
37655
  }
37297
- const FullscreenIcon = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["render", _sfc_render$j]]);
37298
- const _sfc_main$O = {};
37299
- const _hoisted_1$K = {
37656
+ const FullscreenIcon = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["render", _sfc_render$j]]);
37657
+ const _sfc_main$P = {};
37658
+ const _hoisted_1$L = {
37300
37659
  t: "1754531776529",
37301
37660
  class: "icon",
37302
37661
  viewBox: "0 0 1024 1024",
@@ -37307,7 +37666,7 @@ const _hoisted_1$K = {
37307
37666
  height: "200"
37308
37667
  };
37309
37668
  function _sfc_render$i(_ctx, _cache) {
37310
- return openBlock(), createElementBlock("svg", _hoisted_1$K, [..._cache[0] || (_cache[0] = [
37669
+ return openBlock(), createElementBlock("svg", _hoisted_1$L, [..._cache[0] || (_cache[0] = [
37311
37670
  createElementVNode("path", {
37312
37671
  d: "M1024 512c0-282.763636-229.236364-512-512-512C229.236364 0 0 229.236364 0 512c0 282.763636 229.236364 512 512 512C794.763636 1024 1024 794.763636 1024 512zM523.636364 232.727273c32.116364 0 58.181818 26.065455 58.181818 58.181818 0 32.116364-26.065455 58.181818-58.181818 58.181818C491.52 349.090909 465.454545 323.025455 465.454545 290.909091 465.454545 258.792727 491.52 232.727273 523.636364 232.727273zM395.636364 768 465.454545 768l0-325.818182L395.636364 442.181818l0-46.545455 186.181818 0 0 372.363636L651.636364 768l0 46.545455L395.636364 814.545455 395.636364 768z",
37313
37672
  fill: "#bfbfbf",
@@ -37315,9 +37674,9 @@ function _sfc_render$i(_ctx, _cache) {
37315
37674
  }, null, -1)
37316
37675
  ])]);
37317
37676
  }
37318
- const InfoIcon = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["render", _sfc_render$i]]);
37319
- const _sfc_main$N = {};
37320
- const _hoisted_1$J = {
37677
+ const InfoIcon = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["render", _sfc_render$i]]);
37678
+ const _sfc_main$O = {};
37679
+ const _hoisted_1$K = {
37321
37680
  t: "1754532066558",
37322
37681
  class: "icon",
37323
37682
  viewBox: "0 0 1024 1024",
@@ -37326,7 +37685,7 @@ const _hoisted_1$J = {
37326
37685
  "p-id": "11142"
37327
37686
  };
37328
37687
  function _sfc_render$h(_ctx, _cache) {
37329
- return openBlock(), createElementBlock("svg", _hoisted_1$J, [..._cache[0] || (_cache[0] = [
37688
+ return openBlock(), createElementBlock("svg", _hoisted_1$K, [..._cache[0] || (_cache[0] = [
37330
37689
  createElementVNode("path", {
37331
37690
  d: "M725.333333 384h-85.333333V128h85.333333v170.666667h170.666667v85.333333h-170.666667zM298.666667 384H128V298.666667h170.666667V128h85.333333v256H298.666667z m426.666666 341.333333v170.666667h-85.333333v-256h256v85.333333h-170.666667zM298.666667 725.333333H128v-85.333333h256v256H298.666667v-170.666667z",
37332
37691
  fill: "currentColor",
@@ -37334,9 +37693,9 @@ function _sfc_render$h(_ctx, _cache) {
37334
37693
  }, null, -1)
37335
37694
  ])]);
37336
37695
  }
37337
- const NoFullscreenIcon = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["render", _sfc_render$h]]);
37338
- const _sfc_main$M = {};
37339
- const _hoisted_1$I = {
37696
+ const NoFullscreenIcon = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["render", _sfc_render$h]]);
37697
+ const _sfc_main$N = {};
37698
+ const _hoisted_1$J = {
37340
37699
  t: "1754534312592",
37341
37700
  class: "icon",
37342
37701
  viewBox: "0 0 1024 1024",
@@ -37347,7 +37706,7 @@ const _hoisted_1$I = {
37347
37706
  height: "200"
37348
37707
  };
37349
37708
  function _sfc_render$g(_ctx, _cache) {
37350
- return openBlock(), createElementBlock("svg", _hoisted_1$I, [..._cache[0] || (_cache[0] = [
37709
+ return openBlock(), createElementBlock("svg", _hoisted_1$J, [..._cache[0] || (_cache[0] = [
37351
37710
  createElementVNode("path", {
37352
37711
  d: "M812.3 959.4H213.7c-81.6 0-148-66.4-148-148V212.9c0-81.6 66.4-148 148-148h598.5c81.6 0 148 66.4 148 148v598.5C960.3 893 893.9 959.4 812.3 959.4zM213.7 120.9c-50.7 0-92 41.3-92 92v598.5c0 50.7 41.3 92 92 92h598.5c50.7 0 92-41.3 92-92V212.9c0-50.7-41.3-92-92-92H213.7z",
37353
37712
  fill: "currentColor",
@@ -37355,9 +37714,9 @@ function _sfc_render$g(_ctx, _cache) {
37355
37714
  }, null, -1)
37356
37715
  ])]);
37357
37716
  }
37358
- const MaximizeIcon = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["render", _sfc_render$g]]);
37359
- const _sfc_main$L = {};
37360
- const _hoisted_1$H = {
37717
+ const MaximizeIcon = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["render", _sfc_render$g]]);
37718
+ const _sfc_main$M = {};
37719
+ const _hoisted_1$I = {
37361
37720
  t: "1754536488242",
37362
37721
  class: "icon",
37363
37722
  viewBox: "0 0 1024 1024",
@@ -37368,7 +37727,7 @@ const _hoisted_1$H = {
37368
37727
  height: "200"
37369
37728
  };
37370
37729
  function _sfc_render$f(_ctx, _cache) {
37371
- return openBlock(), createElementBlock("svg", _hoisted_1$H, [..._cache[0] || (_cache[0] = [
37730
+ return openBlock(), createElementBlock("svg", _hoisted_1$I, [..._cache[0] || (_cache[0] = [
37372
37731
  createElementVNode("path", {
37373
37732
  d: "M959.720175 0H294.216115a63.960025 63.960025 0 0 0-63.960025 63.960025v127.92005H64.279825a63.960025 63.960025 0 0 0-63.960025 63.960025v703.560275a63.960025 63.960025 0 0 0 63.960025 63.960025h703.560275a63.960025 63.960025 0 0 0 63.960025-63.960025v-166.935665h127.92005a63.960025 63.960025 0 0 0 63.960025-63.960025V63.960025a63.960025 63.960025 0 0 0-63.960025-63.960025z m-191.880075 728.504685V959.400375H64.279825V255.8401h703.560275z m189.321674 0H831.800125V255.8401a63.960025 63.960025 0 0 0-63.960025-63.960025H294.216115V63.960025H959.720175z",
37374
37733
  fill: "currentColor",
@@ -37376,9 +37735,9 @@ function _sfc_render$f(_ctx, _cache) {
37376
37735
  }, null, -1)
37377
37736
  ])]);
37378
37737
  }
37379
- const CancelMaximizeIcon = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["render", _sfc_render$f]]);
37380
- const _sfc_main$K = {};
37381
- const _hoisted_1$G = {
37738
+ const CancelMaximizeIcon = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["render", _sfc_render$f]]);
37739
+ const _sfc_main$L = {};
37740
+ const _hoisted_1$H = {
37382
37741
  t: "1754549086063",
37383
37742
  class: "icon",
37384
37743
  viewBox: "0 0 1024 1024",
@@ -37389,7 +37748,7 @@ const _hoisted_1$G = {
37389
37748
  height: "200"
37390
37749
  };
37391
37750
  function _sfc_render$e(_ctx, _cache) {
37392
- return openBlock(), createElementBlock("svg", _hoisted_1$G, [..._cache[0] || (_cache[0] = [
37751
+ return openBlock(), createElementBlock("svg", _hoisted_1$H, [..._cache[0] || (_cache[0] = [
37393
37752
  createElementVNode("path", {
37394
37753
  d: "M938.666667 426.624V853.333333a42.666667 42.666667 0 0 1-42.666667 42.666667h-341.333333V426.624h384z m-469.333334 256V896H128a42.666667 42.666667 0 0 1-42.666667-42.666667v-170.709333h384zM469.333333 128v469.290667H85.333333V170.666667a42.666667 42.666667 0 0 1 42.666667-42.666667h341.333333z m426.666667 0a42.666667 42.666667 0 0 1 42.666667 42.666667v170.624h-384V128h341.333333z",
37395
37754
  fill: "currentColor",
@@ -37397,9 +37756,9 @@ function _sfc_render$e(_ctx, _cache) {
37397
37756
  }, null, -1)
37398
37757
  ])]);
37399
37758
  }
37400
- const LayoutIcon = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["render", _sfc_render$e]]);
37401
- const _sfc_main$J = {};
37402
- const _hoisted_1$F = {
37759
+ const LayoutIcon = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["render", _sfc_render$e]]);
37760
+ const _sfc_main$K = {};
37761
+ const _hoisted_1$G = {
37403
37762
  width: "24",
37404
37763
  height: "24",
37405
37764
  viewBox: "0 0 24 24",
@@ -37407,13 +37766,13 @@ const _hoisted_1$F = {
37407
37766
  xmlns: "http://www.w3.org/2000/svg"
37408
37767
  };
37409
37768
  function _sfc_render$d(_ctx, _cache) {
37410
- return openBlock(), createElementBlock("svg", _hoisted_1$F, [..._cache[0] || (_cache[0] = [
37769
+ return openBlock(), createElementBlock("svg", _hoisted_1$G, [..._cache[0] || (_cache[0] = [
37411
37770
  createStaticVNode('<rect x="2" y="3" width="14" height="10" rx="1" stroke="currentColor" stroke-width="2" fill="none"></rect><rect x="17" y="3" width="5" height="3" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="17" y="7" width="5" height="3" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="17" y="11" width="5" height="3" rx="0.5" stroke="currentColor" stroke-width="1.5" fill="none"></rect><rect x="2" y="15" width="20" height="2" rx="1" stroke="currentColor" stroke-width="1.5" fill="none"></rect><circle cx="6" cy="16" r="0.5" fill="currentColor"></circle><circle cx="9" cy="16" r="0.5" fill="currentColor"></circle><circle cx="12" cy="16" r="0.5" fill="currentColor"></circle>', 8)
37412
37771
  ])]);
37413
37772
  }
37414
- const BigVideoIcon = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["render", _sfc_render$d]]);
37415
- const _sfc_main$I = {};
37416
- const _hoisted_1$E = {
37773
+ const BigVideoIcon = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["render", _sfc_render$d]]);
37774
+ const _sfc_main$J = {};
37775
+ const _hoisted_1$F = {
37417
37776
  t: "1755220421264",
37418
37777
  class: "icon",
37419
37778
  viewBox: "0 0 1024 1024",
@@ -37424,7 +37783,7 @@ const _hoisted_1$E = {
37424
37783
  height: "200"
37425
37784
  };
37426
37785
  function _sfc_render$c(_ctx, _cache) {
37427
- return openBlock(), createElementBlock("svg", _hoisted_1$E, [..._cache[0] || (_cache[0] = [
37786
+ return openBlock(), createElementBlock("svg", _hoisted_1$F, [..._cache[0] || (_cache[0] = [
37428
37787
  createElementVNode("path", {
37429
37788
  d: "M57.856 600.106667a52.394667 52.394667 0 0 1 0-73.813334c245.674667-246.613333 645.034667-246.613333 891.648 0 20.266667 20.394667 20.266667 53.333333 0 73.770667l-89.514667 89.557333a51.84 51.84 0 0 1-73.301333 0.426667 411.562667 411.562667 0 0 0-101.973333-74.24 51.584 51.584 0 0 1-28.373334-46.464l-0.512-100.693333c-99.413333-29.781333-205.354667-29.866667-304.810666-0.170667v100.138667c-0.128 19.626667-11.093333 37.589333-28.586667 46.634666a394.154667 394.154667 0 0 0-101.589333 74.069334c-20.48 20.224-53.376 20.224-73.813334-0.042667l-89.173333-89.173333z",
37430
37789
  fill: "currentColor",
@@ -37432,9 +37791,9 @@ function _sfc_render$c(_ctx, _cache) {
37432
37791
  }, null, -1)
37433
37792
  ])]);
37434
37793
  }
37435
- const PhoneIcon = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["render", _sfc_render$c]]);
37436
- const _sfc_main$H = {};
37437
- const _hoisted_1$D = {
37794
+ const PhoneIcon = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["render", _sfc_render$c]]);
37795
+ const _sfc_main$I = {};
37796
+ const _hoisted_1$E = {
37438
37797
  t: "1755583188558",
37439
37798
  class: "icon",
37440
37799
  viewBox: "0 0 1024 1024",
@@ -37445,7 +37804,7 @@ const _hoisted_1$D = {
37445
37804
  height: "200"
37446
37805
  };
37447
37806
  function _sfc_render$b(_ctx, _cache) {
37448
- return openBlock(), createElementBlock("svg", _hoisted_1$D, [..._cache[0] || (_cache[0] = [
37807
+ return openBlock(), createElementBlock("svg", _hoisted_1$E, [..._cache[0] || (_cache[0] = [
37449
37808
  createElementVNode("path", {
37450
37809
  d: "M92.416 120.576h59.136v791.296H92.416z",
37451
37810
  "p-id": "5728",
@@ -37458,9 +37817,9 @@ function _sfc_render$b(_ctx, _cache) {
37458
37817
  }, null, -1)
37459
37818
  ])]);
37460
37819
  }
37461
- const TreeIcon = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["render", _sfc_render$b]]);
37462
- const _sfc_main$G = {};
37463
- const _hoisted_1$C = {
37820
+ const TreeIcon = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["render", _sfc_render$b]]);
37821
+ const _sfc_main$H = {};
37822
+ const _hoisted_1$D = {
37464
37823
  t: "1755585953894",
37465
37824
  class: "icon",
37466
37825
  viewBox: "0 0 1024 1024",
@@ -37471,7 +37830,7 @@ const _hoisted_1$C = {
37471
37830
  height: "200"
37472
37831
  };
37473
37832
  function _sfc_render$a(_ctx, _cache) {
37474
- return openBlock(), createElementBlock("svg", _hoisted_1$C, [..._cache[0] || (_cache[0] = [
37833
+ return openBlock(), createElementBlock("svg", _hoisted_1$D, [..._cache[0] || (_cache[0] = [
37475
37834
  createElementVNode("path", {
37476
37835
  d: "M512 888c-13.6 0-24-10.4-24-24s10.4-24 24-24c180.8 0 328-147.2 328-328 0-83.2-31.2-162.4-88-224-8.8-9.6-8-24.8 1.6-33.6s24.8-8 33.6 1.6c64.8 70.4 100.8 161.6 100.8 256 0 207.2-168.8 376-376 376zM256.8 778.4c-6.4 0-12.8-2.4-17.6-7.2C172.8 700.8 136 608.8 136 512c0-207.2 168.8-376 376-376 13.6 0 24 10.4 24 24s-10.4 24-24 24c-180.8 0-328 147.2-328 328 0 84 32 164.8 90.4 225.6 8.8 9.6 8.8 24.8-0.8 33.6-4.8 4.8-11.2 7.2-16.8 7.2z",
37477
37836
  fill: "currentColor",
@@ -37484,9 +37843,9 @@ function _sfc_render$a(_ctx, _cache) {
37484
37843
  }, null, -1)
37485
37844
  ])]);
37486
37845
  }
37487
- const RefreshIcon = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["render", _sfc_render$a]]);
37488
- const _sfc_main$F = {};
37489
- const _hoisted_1$B = {
37846
+ const RefreshIcon = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["render", _sfc_render$a]]);
37847
+ const _sfc_main$G = {};
37848
+ const _hoisted_1$C = {
37490
37849
  id: "Isolation_Mode",
37491
37850
  xmlns: "http://www.w3.org/2000/svg",
37492
37851
  "data-name": "Isolation Mode",
@@ -37495,16 +37854,16 @@ const _hoisted_1$B = {
37495
37854
  height: "22"
37496
37855
  };
37497
37856
  function _sfc_render$9(_ctx, _cache) {
37498
- return openBlock(), createElementBlock("svg", _hoisted_1$B, [..._cache[0] || (_cache[0] = [
37857
+ return openBlock(), createElementBlock("svg", _hoisted_1$C, [..._cache[0] || (_cache[0] = [
37499
37858
  createElementVNode("path", {
37500
37859
  d: "M18.9,16.776A10.539,10.539,0,1,0,16.776,18.9l5.1,5.1L24,21.88ZM10.5,18A7.5,7.5,0,1,1,18,10.5,7.507,7.507,0,0,1,10.5,18Z",
37501
37860
  fill: "currentColor"
37502
37861
  }, null, -1)
37503
37862
  ])]);
37504
37863
  }
37505
- const SearchIcon = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["render", _sfc_render$9]]);
37506
- const _sfc_main$E = {};
37507
- const _hoisted_1$A = {
37864
+ const SearchIcon = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["render", _sfc_render$9]]);
37865
+ const _sfc_main$F = {};
37866
+ const _hoisted_1$B = {
37508
37867
  t: "1755764282216",
37509
37868
  class: "icon",
37510
37869
  viewBox: "0 0 1024 1024",
@@ -37515,7 +37874,7 @@ const _hoisted_1$A = {
37515
37874
  height: "200"
37516
37875
  };
37517
37876
  function _sfc_render$8(_ctx, _cache) {
37518
- return openBlock(), createElementBlock("svg", _hoisted_1$A, [..._cache[0] || (_cache[0] = [
37877
+ return openBlock(), createElementBlock("svg", _hoisted_1$B, [..._cache[0] || (_cache[0] = [
37519
37878
  createElementVNode("path", {
37520
37879
  d: "M416 320l192 192-192 192v-384z",
37521
37880
  fill: "#A8ABB2",
@@ -37523,9 +37882,9 @@ function _sfc_render$8(_ctx, _cache) {
37523
37882
  }, null, -1)
37524
37883
  ])]);
37525
37884
  }
37526
- const RetangleRightIcon = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["render", _sfc_render$8]]);
37527
- const _sfc_main$D = {};
37528
- const _hoisted_1$z = {
37885
+ const RetangleRightIcon = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["render", _sfc_render$8]]);
37886
+ const _sfc_main$E = {};
37887
+ const _hoisted_1$A = {
37529
37888
  t: "1756886248026",
37530
37889
  class: "icon",
37531
37890
  viewBox: "0 0 1024 1024",
@@ -37536,7 +37895,7 @@ const _hoisted_1$z = {
37536
37895
  height: "200"
37537
37896
  };
37538
37897
  function _sfc_render$7(_ctx, _cache) {
37539
- return openBlock(), createElementBlock("svg", _hoisted_1$z, [..._cache[0] || (_cache[0] = [
37898
+ return openBlock(), createElementBlock("svg", _hoisted_1$A, [..._cache[0] || (_cache[0] = [
37540
37899
  createElementVNode("path", {
37541
37900
  d: "M863.328262 481.340895l-317.344013 0.099772L545.984249 162.816826c0-17.664722-14.336138-32.00086-32.00086-32.00086s-31.99914 14.336138-31.99914 32.00086l0 318.400215-322.368714-0.17718c-0.032684 0-0.063647 0-0.096331 0-17.632039 0-31.935493 14.239806-32.00086 31.904529-0.096331 17.664722 14.208843 32.031824 31.871845 32.095471l322.59234 0.17718 0 319.167424c0 17.695686 14.336138 32.00086 31.99914 32.00086s32.00086-14.303454 32.00086-32.00086L545.982529 545.440667l317.087703-0.099772c0.063647 0 0.096331 0 0.127295 0 17.632039 0 31.935493-14.239806 32.00086-31.904529S880.960301 481.404542 863.328262 481.340895z",
37542
37901
  fill: "currentColor",
@@ -37544,9 +37903,9 @@ function _sfc_render$7(_ctx, _cache) {
37544
37903
  }, null, -1)
37545
37904
  ])]);
37546
37905
  }
37547
- const PlusSignIcon = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["render", _sfc_render$7]]);
37548
- const _sfc_main$C = {};
37549
- const _hoisted_1$y = {
37906
+ const PlusSignIcon = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["render", _sfc_render$7]]);
37907
+ const _sfc_main$D = {};
37908
+ const _hoisted_1$z = {
37550
37909
  t: "1757469564413",
37551
37910
  class: "icon",
37552
37911
  viewBox: "0 0 1034 1024",
@@ -37557,7 +37916,7 @@ const _hoisted_1$y = {
37557
37916
  height: "200"
37558
37917
  };
37559
37918
  function _sfc_render$6(_ctx, _cache) {
37560
- return openBlock(), createElementBlock("svg", _hoisted_1$y, [..._cache[0] || (_cache[0] = [
37919
+ return openBlock(), createElementBlock("svg", _hoisted_1$z, [..._cache[0] || (_cache[0] = [
37561
37920
  createElementVNode("path", {
37562
37921
  d: "M749.452 992.97c-86.885-22.756-222.384-87.92-310.304-149.98-100.33-71.37-100.33-69.301-28.961-140.67 33.099-33.1 63.095-61.027 67.232-61.027s31.03 16.55 61.026 36.202 59.992 36.202 67.233 36.202c8.275 0 41.374-22.756 73.438-51.717 32.065-27.927 66.198-51.717 75.507-51.717 18.618 0 226.521 88.953 247.208 105.503 8.275 7.24 12.412 47.58 12.412 131.361 0 113.778-2.068 123.087-23.79 143.774-19.652 18.618-36.201 22.756-96.193 21.721-39.305 0-104.47-8.275-144.808-19.652zM55.407 923.669c-7.24-2.069-13.446-19.653-13.446-38.271 0-26.893 15.515-47.58 97.228-129.293l97.228-96.194-49.648-66.198C79.197 449.94 0.587 249.277 0.587 118.95c0-96.193 4.137-98.262 193.422-98.262 111.71 0 158.255 4.137 166.53 13.446 9.308 11.378 64.129 203.766 64.129 225.487 0 5.172-25.859 37.237-56.89 71.37s-56.888 71.37-56.888 82.747c0 20.687 48.614 103.435 59.992 103.435 4.137 0 83.782-76.542 177.907-170.667C661.532 234.796 728.765 175.838 742.21 175.838c41.374 0 54.82 11.378 54.82 45.511 0 28.962-36.202 69.302-339.264 371.33-343.402 342.367-353.746 351.677-402.36 330.99z",
37563
37922
  "p-id": "2634",
@@ -37580,9 +37939,9 @@ function _sfc_render$6(_ctx, _cache) {
37580
37939
  }, null, -1)
37581
37940
  ])]);
37582
37941
  }
37583
- const HandUpIcon = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["render", _sfc_render$6]]);
37584
- const _sfc_main$B = {};
37585
- const _hoisted_1$x = {
37942
+ const HandUpIcon = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["render", _sfc_render$6]]);
37943
+ const _sfc_main$C = {};
37944
+ const _hoisted_1$y = {
37586
37945
  t: "1758690906437",
37587
37946
  class: "icon",
37588
37947
  viewBox: "0 0 1024 1024",
@@ -37593,7 +37952,7 @@ const _hoisted_1$x = {
37593
37952
  height: "200"
37594
37953
  };
37595
37954
  function _sfc_render$5(_ctx, _cache) {
37596
- return openBlock(), createElementBlock("svg", _hoisted_1$x, [..._cache[0] || (_cache[0] = [
37955
+ return openBlock(), createElementBlock("svg", _hoisted_1$y, [..._cache[0] || (_cache[0] = [
37597
37956
  createElementVNode("path", {
37598
37957
  d: "M872.802928 755.99406 872.864326 755.99406 872.864326 755.624646Z",
37599
37958
  fill: "#272536",
@@ -37621,9 +37980,9 @@ function _sfc_render$5(_ctx, _cache) {
37621
37980
  }, null, -1)
37622
37981
  ])]);
37623
37982
  }
37624
- const ExpressionIcon = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["render", _sfc_render$5]]);
37625
- const _sfc_main$A = {};
37626
- const _hoisted_1$w = {
37983
+ const ExpressionIcon = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["render", _sfc_render$5]]);
37984
+ const _sfc_main$B = {};
37985
+ const _hoisted_1$x = {
37627
37986
  t: "1758864147306",
37628
37987
  class: "icon",
37629
37988
  viewBox: "0 0 1024 1024",
@@ -37634,7 +37993,7 @@ const _hoisted_1$w = {
37634
37993
  height: "200"
37635
37994
  };
37636
37995
  function _sfc_render$4(_ctx, _cache) {
37637
- return openBlock(), createElementBlock("svg", _hoisted_1$w, [..._cache[0] || (_cache[0] = [
37996
+ return openBlock(), createElementBlock("svg", _hoisted_1$x, [..._cache[0] || (_cache[0] = [
37638
37997
  createElementVNode("path", {
37639
37998
  d: "M533.1 898.6H408.9c-126.3 0-228.5-102.3-228.5-228.5V446.6h581.3v223.6c0 126.2-102.4 228.4-228.6 228.4z m0 0",
37640
37999
  fill: "#FFFFFF",
@@ -37667,9 +38026,9 @@ function _sfc_render$4(_ctx, _cache) {
37667
38026
  }, null, -1)
37668
38027
  ])]);
37669
38028
  }
37670
- const NoMeetingIcon = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["render", _sfc_render$4]]);
37671
- const _sfc_main$z = {};
37672
- const _hoisted_1$v = {
38029
+ const NoMeetingIcon = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["render", _sfc_render$4]]);
38030
+ const _sfc_main$A = {};
38031
+ const _hoisted_1$w = {
37673
38032
  t: "1761377897107",
37674
38033
  class: "icon",
37675
38034
  viewBox: "0 0 1024 1024",
@@ -37678,7 +38037,7 @@ const _hoisted_1$v = {
37678
38037
  "p-id": "4229"
37679
38038
  };
37680
38039
  function _sfc_render$3(_ctx, _cache) {
37681
- return openBlock(), createElementBlock("svg", _hoisted_1$v, [..._cache[0] || (_cache[0] = [
38040
+ return openBlock(), createElementBlock("svg", _hoisted_1$w, [..._cache[0] || (_cache[0] = [
37682
38041
  createElementVNode("path", {
37683
38042
  d: "M499.712 512m-491.52 0a491.52 491.52 0 1 0 983.04 0 491.52 491.52 0 1 0-983.04 0Z",
37684
38043
  fill: "#3965D0",
@@ -37691,9 +38050,9 @@ function _sfc_render$3(_ctx, _cache) {
37691
38050
  }, null, -1)
37692
38051
  ])]);
37693
38052
  }
37694
- const DailIcon = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["render", _sfc_render$3]]);
37695
- const _sfc_main$y = {};
37696
- const _hoisted_1$u = {
38053
+ const DailIcon = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["render", _sfc_render$3]]);
38054
+ const _sfc_main$z = {};
38055
+ const _hoisted_1$v = {
37697
38056
  t: "1754983552519",
37698
38057
  class: "icon",
37699
38058
  viewBox: "0 0 1024 1024",
@@ -37704,7 +38063,7 @@ const _hoisted_1$u = {
37704
38063
  height: "200"
37705
38064
  };
37706
38065
  function _sfc_render$2(_ctx, _cache) {
37707
- return openBlock(), createElementBlock("svg", _hoisted_1$u, [..._cache[0] || (_cache[0] = [
38066
+ return openBlock(), createElementBlock("svg", _hoisted_1$v, [..._cache[0] || (_cache[0] = [
37708
38067
  createElementVNode("path", {
37709
38068
  d: "M830.450526 853.759999q-11.722105 8.791579-27.351579 8.791579-19.536842 0-33.701053-14.164211t-14.164211-33.701053q0-21.490526 16.606316-36.143158 0.976842-0.976842 1.953684-1.465263t1.953684-1.465263l0.976842-0.976842q27.351579-18.56 50.795789-43.957895t41.027368-55.191579 27.351579-63.494737 9.768421-69.84421q0-73.263158-37.12-133.827368t-92.8-99.637895q-20.513684-14.652632-20.513684-39.073684 0-19.536842 14.164211-33.701053t33.701053-14.164211q16.606316 0 29.305263 10.745263 36.143158 25.397895 67.402105 59.098947t53.726316 73.263158 35.166316 84.496842 12.698947 92.8q0 48.842105-12.698947 93.776842t-35.654737 84.985263-54.214737 73.751579-68.378947 59.098947zM775.747368 415.157894q20.513684 28.328421 32.72421 57.145263t12.210526 69.84421q0 39.073684-12.698947 70.332632t-32.235789 56.656842q-7.814737 10.745263-16.606316 19.048421t-22.467368 8.303158q-17.583158 0-29.793684-12.698947t-12.210526-30.282105q0-7.814737 2.930526-15.629474l-0.976842 0q4.884211-10.745263 11.722105-20.513684t13.187368-20.025263 10.745263-23.444211 4.395789-31.747368q0-17.583158-4.395789-30.770526t-10.745263-23.932632-13.187368-20.513684-10.745263-20.513684q-2.930526-6.837895-2.930526-15.629474 0-17.583158 12.210526-30.282105t29.793684-12.698947q13.675789 0 22.467368 8.303158t16.606316 19.048421zM460.227368 995.402104q-49.818947-44.934737-105.498947-93.776842t-103.545263-89.869474q-55.68-46.888421-111.36-92.8-10.745263 0.976842-21.490526 0.976842-8.791579 0.976842-18.56 0.976842l-16.606316 0q-26.374737 0-42.981053-16.117895t-16.606316-38.585263l0-246.16421 0.976842 0-0.976842-0.976842q0-27.351579 17.094737-44.934737t42.492632-17.583158l55.68 0q89.869474-76.193684 163.132631-136.757895 31.258947-26.374737 61.541053-51.28421t54.703158-45.423158 41.027368-34.189474 20.513684-16.606316q29.305263-21.490526 47.376842-19.536842t28.328421 17.583158 14.164211 38.096842 3.907368 41.027368l0 788.311578 0 2.930526q0 18.56-6.837895 39.562105t-21.002105 33.212632-35.654737 10.256842-49.818947-28.328421z",
37710
38069
  "p-id": "2402",
@@ -37712,9 +38071,9 @@ function _sfc_render$2(_ctx, _cache) {
37712
38071
  }, null, -1)
37713
38072
  ])]);
37714
38073
  }
37715
- const WhiteboardIcon = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["render", _sfc_render$2]]);
37716
- const _sfc_main$x = {};
37717
- const _hoisted_1$t = {
38074
+ const WhiteboardIcon = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["render", _sfc_render$2]]);
38075
+ const _sfc_main$y = {};
38076
+ const _hoisted_1$u = {
37718
38077
  t: "1763618023360",
37719
38078
  class: "icon",
37720
38079
  viewBox: "0 0 1024 1024",
@@ -37725,7 +38084,7 @@ const _hoisted_1$t = {
37725
38084
  height: "200"
37726
38085
  };
37727
38086
  function _sfc_render$1(_ctx, _cache) {
37728
- return openBlock(), createElementBlock("svg", _hoisted_1$t, [..._cache[0] || (_cache[0] = [
38087
+ return openBlock(), createElementBlock("svg", _hoisted_1$u, [..._cache[0] || (_cache[0] = [
37729
38088
  createElementVNode("path", {
37730
38089
  d: "M400.696 268.795c-17.249 0-31.233 13.986-31.233 31.233v30.471c0 17.249 13.986 31.233 31.233 31.233s31.233-13.986 31.233-31.233v-30.471c0-17.249-13.985-31.233-31.233-31.233z",
37731
38090
  fill: "currentColor",
@@ -37748,9 +38107,9 @@ function _sfc_render$1(_ctx, _cache) {
37748
38107
  }, null, -1)
37749
38108
  ])]);
37750
38109
  }
37751
- const ImageIcon = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["render", _sfc_render$1]]);
37752
- const _sfc_main$w = {};
37753
- const _hoisted_1$s = {
38110
+ const ImageIcon = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["render", _sfc_render$1]]);
38111
+ const _sfc_main$x = {};
38112
+ const _hoisted_1$t = {
37754
38113
  t: "1773989017010",
37755
38114
  class: "icon",
37756
38115
  viewBox: "0 0 1199 1024",
@@ -37761,7 +38120,7 @@ const _hoisted_1$s = {
37761
38120
  height: "200"
37762
38121
  };
37763
38122
  function _sfc_render(_ctx, _cache) {
37764
- return openBlock(), createElementBlock("svg", _hoisted_1$s, [..._cache[0] || (_cache[0] = [
38123
+ return openBlock(), createElementBlock("svg", _hoisted_1$t, [..._cache[0] || (_cache[0] = [
37765
38124
  createElementVNode("path", {
37766
38125
  d: "M503.121809 1018.970054c-139.582043 0-305.592663-1.664022-368.433947-6.656086-57.751336-4.60053-92.793672-18.500004-113.545-44.928582S-4.992065 901.411826 4.796297 840.919749c25.351858-156.613793 139.875694-248.232861 322.428646-258.608525a1789.214697 1789.214697 0 0 1 244.709051 2.153439c194.201103 15.857147 323.505365 143.203737 321.74346 316.947163 0 52.661388-23.78572 83.494728-73.216948 97.100552a487.068895 487.068895 0 0 1-114.230185 18.793655c-32.888896 0.685185-112.370396 1.664022-203.108512 1.664021zM137.037069 983.046766c102.777801 8.12434 485.502757 7.341272 567.724998 4.894181a454.473649 454.473649 0 0 0 107.671982-17.716936c36.804241-9.788362 51.291017-29.365086 51.682552-69.105836C865.682739 743.917081 747.243558 628.218642 569.38902 613.731866a1746.635322 1746.635322 0 0 0-240.500055-2.055556c-118.439181 6.656086-265.754029 52.759271-295.119116 233.941853-8.320108 51.780435-5.089948 83.690495 10.571431 103.854521s44.439164 29.365086 92.695789 33.769849zM437.148249 550.792698a277.108529 277.108529 0 0 1-277.010646-275.24874A276.227577 276.227577 0 0 1 435.777878 0.001566h0.685185A277.793715 277.793715 0 0 1 634.28586 81.832273 271.72493 271.72493 0 0 1 714.550429 275.935492a277.108529 277.108529 0 0 1-277.40218 274.857206zM189.209038 275.446074a247.743443 247.743443 0 0 0 247.64556 245.981538C571.346692 521.427612 685.185343 409.057216 685.185343 275.935492a242.653495 242.653495 0 0 0-71.846578-173.351892A248.232861 248.232861 0 0 0 436.463063 29.366652h-0.587301a246.666723 246.666723 0 0 0-246.666724 246.079422z",
37767
38126
  fill: "currentColor",
@@ -37792,9 +38151,9 @@ function _sfc_render(_ctx, _cache) {
37792
38151
  }, null, -1)
37793
38152
  ])]);
37794
38153
  }
37795
- const NoUserIcon = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["render", _sfc_render]]);
37796
- const _hoisted_1$r = ["innerHTML"];
37797
- const _sfc_main$v = /* @__PURE__ */ defineComponent({
38154
+ const NoUserIcon = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["render", _sfc_render]]);
38155
+ const _hoisted_1$s = ["innerHTML"];
38156
+ const _sfc_main$w = /* @__PURE__ */ defineComponent({
37798
38157
  __name: "SvgIcon",
37799
38158
  props: {
37800
38159
  name: {},
@@ -37876,12 +38235,12 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
37876
38235
  })) : (openBlock(), createElementBlock("div", {
37877
38236
  key: 1,
37878
38237
  innerHTML: fallbackSvg.value
37879
- }, null, 8, _hoisted_1$r))
38238
+ }, null, 8, _hoisted_1$s))
37880
38239
  ], 6);
37881
38240
  };
37882
38241
  }
37883
38242
  });
37884
- const SvgIcon = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__scopeId", "data-v-97925336"]]);
38243
+ const SvgIcon = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-a17448c1"]]);
37885
38244
  const jsCreateMeeting = async (data) => {
37886
38245
  try {
37887
38246
  if (!data) {
@@ -38002,7 +38361,7 @@ const jsDial = async (data) => {
38002
38361
  throw error;
38003
38362
  }
38004
38363
  };
38005
- const _sfc_main$u = {
38364
+ const _sfc_main$v = {
38006
38365
  __name: "Skeleton",
38007
38366
  props: {
38008
38367
  width: { type: String, default: "100%" },
@@ -38024,8 +38383,8 @@ const _sfc_main$u = {
38024
38383
  };
38025
38384
  }
38026
38385
  };
38027
- const Skeleton = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-3508dd0b"]]);
38028
- const _sfc_main$t = /* @__PURE__ */ defineComponent({
38386
+ const Skeleton = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__scopeId", "data-v-3508dd0b"]]);
38387
+ const _sfc_main$u = /* @__PURE__ */ defineComponent({
38029
38388
  __name: "SmartPopup",
38030
38389
  props: {
38031
38390
  visible: { type: Boolean },
@@ -38101,34 +38460,32 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
38101
38460
  window.removeEventListener("resize", handleResize);
38102
38461
  });
38103
38462
  return (_ctx, _cache) => {
38104
- return openBlock(), createBlock(Teleport, { to: "body" }, [
38105
- withDirectives(createElementVNode("div", {
38106
- ref_key: "popupRef",
38107
- ref: popupRef,
38108
- class: "smart-popup",
38109
- onClick: _cache[0] || (_cache[0] = withModifiers(() => {
38110
- }, ["stop"]))
38111
- }, [
38112
- renderSlot(_ctx.$slots, "default", {}, void 0, true)
38113
- ], 512), [
38114
- [vShow, _ctx.visible]
38115
- ])
38463
+ return withDirectives((openBlock(), createElementBlock("div", {
38464
+ ref_key: "popupRef",
38465
+ ref: popupRef,
38466
+ class: "smart-popup",
38467
+ onClick: _cache[0] || (_cache[0] = withModifiers(() => {
38468
+ }, ["stop"]))
38469
+ }, [
38470
+ renderSlot(_ctx.$slots, "default", {}, void 0, true)
38471
+ ], 512)), [
38472
+ [vShow, _ctx.visible]
38116
38473
  ]);
38117
38474
  };
38118
38475
  }
38119
38476
  });
38120
- const SmartPopup = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-de3830bd"]]);
38121
- const _hoisted_1$q = { class: "dial-display" };
38122
- const _hoisted_2$p = { class: "dial-pad" };
38123
- const _hoisted_3$o = ["onClick"];
38124
- const _hoisted_4$m = { class: "key-number" };
38125
- const _hoisted_5$j = {
38477
+ const SmartPopup = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-5fef3e9e"]]);
38478
+ const _hoisted_1$r = { class: "dial-display" };
38479
+ const _hoisted_2$q = { class: "dial-pad" };
38480
+ const _hoisted_3$p = ["onClick"];
38481
+ const _hoisted_4$n = { class: "key-number" };
38482
+ const _hoisted_5$k = {
38126
38483
  key: 0,
38127
38484
  class: "key-letters"
38128
38485
  };
38129
- const _hoisted_6$i = { class: "dial-actions" };
38130
- const _hoisted_7$h = ["disabled"];
38131
- const _sfc_main$s = /* @__PURE__ */ defineComponent({
38486
+ const _hoisted_6$j = { class: "dial-actions" };
38487
+ const _hoisted_7$i = ["disabled"];
38488
+ const _sfc_main$t = /* @__PURE__ */ defineComponent({
38132
38489
  __name: "Dial",
38133
38490
  props: {
38134
38491
  theme: {}
@@ -38197,7 +38554,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
38197
38554
  return openBlock(), createElementBlock("div", {
38198
38555
  class: normalizeClass(["dial-container", themeClass.value])
38199
38556
  }, [
38200
- createElementVNode("div", _hoisted_1$q, [
38557
+ createElementVNode("div", _hoisted_1$r, [
38201
38558
  withDirectives(createElementVNode("input", {
38202
38559
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => phoneNumber.value = $event),
38203
38560
  type: "text",
@@ -38218,19 +38575,19 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
38218
38575
  })
38219
38576
  ])) : createCommentVNode("", true)
38220
38577
  ]),
38221
- createElementVNode("div", _hoisted_2$p, [
38578
+ createElementVNode("div", _hoisted_2$q, [
38222
38579
  (openBlock(), createElementBlock(Fragment, null, renderList(dialKeys, (key) => {
38223
38580
  return createElementVNode("button", {
38224
38581
  key: key.value,
38225
38582
  class: "dial-key",
38226
38583
  onClick: ($event) => addDigit(key.value)
38227
38584
  }, [
38228
- createElementVNode("span", _hoisted_4$m, toDisplayString(key.display), 1),
38229
- key.letters ? (openBlock(), createElementBlock("span", _hoisted_5$j, toDisplayString(key.letters), 1)) : createCommentVNode("", true)
38230
- ], 8, _hoisted_3$o);
38585
+ createElementVNode("span", _hoisted_4$n, toDisplayString(key.display), 1),
38586
+ key.letters ? (openBlock(), createElementBlock("span", _hoisted_5$k, toDisplayString(key.letters), 1)) : createCommentVNode("", true)
38587
+ ], 8, _hoisted_3$p);
38231
38588
  }), 64))
38232
38589
  ]),
38233
- createElementVNode("div", _hoisted_6$i, [
38590
+ createElementVNode("div", _hoisted_6$j, [
38234
38591
  createElementVNode("button", {
38235
38592
  disabled: !phoneNumber.value,
38236
38593
  class: "call-btn",
@@ -38241,22 +38598,22 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
38241
38598
  size: 22
38242
38599
  }),
38243
38600
  _cache[1] || (_cache[1] = createElementVNode("span", null, "拨打", -1))
38244
- ], 8, _hoisted_7$h)
38601
+ ], 8, _hoisted_7$i)
38245
38602
  ])
38246
38603
  ], 2);
38247
38604
  };
38248
38605
  }
38249
38606
  });
38250
- const DialDialog = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-a4d6dbdc"]]);
38251
- const _hoisted_1$p = { class: "dialog" };
38252
- const _hoisted_2$o = { class: "header" };
38253
- const _hoisted_3$n = { class: "title" };
38254
- const _hoisted_4$l = { class: "online-count" };
38255
- const _hoisted_5$i = { class: "toolbar" };
38256
- const _hoisted_6$h = { class: "search" };
38257
- const _hoisted_7$g = ["disabled"];
38258
- const _hoisted_8$e = { class: "content" };
38259
- const _hoisted_9$c = {
38607
+ const DialDialog = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-adff8ac3"]]);
38608
+ const _hoisted_1$q = { class: "dialog" };
38609
+ const _hoisted_2$p = { class: "header" };
38610
+ const _hoisted_3$o = { class: "title" };
38611
+ const _hoisted_4$m = { class: "online-count" };
38612
+ const _hoisted_5$j = { class: "toolbar" };
38613
+ const _hoisted_6$i = { class: "search" };
38614
+ const _hoisted_7$h = ["disabled"];
38615
+ const _hoisted_8$g = { class: "content" };
38616
+ const _hoisted_9$e = {
38260
38617
  key: 0,
38261
38618
  class: "grid"
38262
38619
  };
@@ -38281,7 +38638,7 @@ const _hoisted_21$3 = {
38281
38638
  const _hoisted_22$3 = { class: "footer" };
38282
38639
  const _hoisted_23$3 = { class: "selected" };
38283
38640
  const _hoisted_24$3 = { style: { "display": "flex", "gap": "20px", "align-items": "center" } };
38284
- const _sfc_main$r = /* @__PURE__ */ defineComponent({
38641
+ const _sfc_main$s = /* @__PURE__ */ defineComponent({
38285
38642
  __name: "user",
38286
38643
  props: {
38287
38644
  modelValue: { type: Boolean, default: false },
@@ -38444,14 +38801,14 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
38444
38801
  key: 0,
38445
38802
  class: normalizeClass(["modal", themeClass.value])
38446
38803
  }, [
38447
- withDirectives((openBlock(), createElementBlock("div", _hoisted_1$p, [
38448
- createElementVNode("div", _hoisted_2$o, [
38449
- createElementVNode("div", _hoisted_3$n, [
38804
+ withDirectives((openBlock(), createElementBlock("div", _hoisted_1$q, [
38805
+ createElementVNode("div", _hoisted_2$p, [
38806
+ createElementVNode("div", _hoisted_3$o, [
38450
38807
  _cache[5] || (_cache[5] = createTextVNode(" 用户列表 ", -1)),
38451
- createElementVNode("span", _hoisted_4$l, "(在线 " + toDisplayString(onlineCount.value) + "/" + toDisplayString(userList.value.length) + ")", 1)
38808
+ createElementVNode("span", _hoisted_4$m, "(在线 " + toDisplayString(onlineCount.value) + "/" + toDisplayString(userList.value.length) + ")", 1)
38452
38809
  ]),
38453
- createElementVNode("div", _hoisted_5$i, [
38454
- createElementVNode("div", _hoisted_6$h, [
38810
+ createElementVNode("div", _hoisted_5$j, [
38811
+ createElementVNode("div", _hoisted_6$i, [
38455
38812
  withDirectives(createElementVNode("input", {
38456
38813
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => searchKeyword.value = $event),
38457
38814
  type: "text",
@@ -38474,7 +38831,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
38474
38831
  class: "select-all-btn",
38475
38832
  disabled: !hasOnlineUsers.value,
38476
38833
  onClick: selectAllOnline
38477
- }, toDisplayString(selectedUsers.value.length > 0 ? "取消选择" : "一键全选"), 9, _hoisted_7$g),
38834
+ }, toDisplayString(selectedUsers.value.length > 0 ? "取消选择" : "一键全选"), 9, _hoisted_7$h),
38478
38835
  createElementVNode("button", {
38479
38836
  class: "icon-btn",
38480
38837
  onClick: closeModal
@@ -38487,8 +38844,8 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
38487
38844
  ])
38488
38845
  ])
38489
38846
  ]),
38490
- createElementVNode("div", _hoisted_8$e, [
38491
- loading.value ? (openBlock(), createElementBlock("div", _hoisted_9$c, [
38847
+ createElementVNode("div", _hoisted_8$g, [
38848
+ loading.value ? (openBlock(), createElementBlock("div", _hoisted_9$e, [
38492
38849
  (openBlock(), createElementBlock(Fragment, null, renderList(12, (n2) => {
38493
38850
  return createElementVNode("div", {
38494
38851
  key: n2,
@@ -38584,6 +38941,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
38584
38941
  gap: 10
38585
38942
  }, {
38586
38943
  default: withCtx(() => [
38944
+ _cache[11] || (_cache[11] = createTextVNode(" 123231 ", -1)),
38587
38945
  createVNode(DialDialog, {
38588
38946
  theme: _ctx.theme,
38589
38947
  onSuccess: handleDialSuccess
@@ -38598,7 +38956,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
38598
38956
  };
38599
38957
  }
38600
38958
  });
38601
- const JSUser = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-33e87a35"]]);
38959
+ const JSUser = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-c542c983"]]);
38602
38960
  var RoomModalSelectType = /* @__PURE__ */ ((RoomModalSelectType2) => {
38603
38961
  RoomModalSelectType2["microphoneClick"] = "microphoneClick";
38604
38962
  RoomModalSelectType2["cameraClick"] = "cameraClick";
@@ -38615,20 +38973,21 @@ var RoomModalSelectType = /* @__PURE__ */ ((RoomModalSelectType2) => {
38615
38973
  RoomModalSelectType2["minimizeClick"] = "minimizeClick";
38616
38974
  RoomModalSelectType2["maximizeClick"] = "maximizeClick";
38617
38975
  RoomModalSelectType2["acceptClick"] = "acceptClick";
38976
+ RoomModalSelectType2["openNewTabClick"] = "openNewTabClick";
38618
38977
  return RoomModalSelectType2;
38619
38978
  })(RoomModalSelectType || {});
38620
- const _hoisted_1$o = { class: "section" };
38621
- const _hoisted_2$n = { class: "section-title" };
38622
- const _hoisted_3$m = ["onClick"];
38623
- const _hoisted_4$k = { class: "label" };
38624
- const _hoisted_5$h = {
38979
+ const _hoisted_1$p = { class: "section" };
38980
+ const _hoisted_2$o = { class: "section-title" };
38981
+ const _hoisted_3$n = ["onClick"];
38982
+ const _hoisted_4$l = { class: "label" };
38983
+ const _hoisted_5$i = {
38625
38984
  key: 0,
38626
38985
  class: "empty-device"
38627
38986
  };
38628
- const _hoisted_6$g = { class: "section" };
38629
- const _hoisted_7$f = { class: "section-title" };
38630
- const _hoisted_8$d = ["onClick"];
38631
- const _hoisted_9$b = { class: "label" };
38987
+ const _hoisted_6$h = { class: "section" };
38988
+ const _hoisted_7$g = { class: "section-title" };
38989
+ const _hoisted_8$f = ["onClick"];
38990
+ const _hoisted_9$d = { class: "label" };
38632
38991
  const _hoisted_10$b = {
38633
38992
  key: 0,
38634
38993
  class: "empty-device"
@@ -38644,7 +39003,7 @@ const _hoisted_15$6 = {
38644
39003
  key: 0,
38645
39004
  class: "empty-device"
38646
39005
  };
38647
- const _sfc_main$q = /* @__PURE__ */ defineComponent({
39006
+ const _sfc_main$r = /* @__PURE__ */ defineComponent({
38648
39007
  __name: "DeviceSelector",
38649
39008
  props: {
38650
39009
  deviceType: {},
@@ -38708,8 +39067,8 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
38708
39067
  class: normalizeClass(["device-selector", themeClass.value])
38709
39068
  }, [
38710
39069
  _ctx.deviceType === "microphone" ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
38711
- createElementVNode("div", _hoisted_1$o, [
38712
- createElementVNode("div", _hoisted_2$n, [
39070
+ createElementVNode("div", _hoisted_1$p, [
39071
+ createElementVNode("div", _hoisted_2$o, [
38713
39072
  createVNode(SvgIcon, {
38714
39073
  name: "SpeakerIcon",
38715
39074
  size: 14
@@ -38725,14 +39084,14 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
38725
39084
  createElementVNode("span", {
38726
39085
  class: normalizeClass(["check", { show: sp.deviceId === speakerId.value }])
38727
39086
  }, "✓", 2),
38728
- createElementVNode("span", _hoisted_4$k, toDisplayString(formatDeviceLabel(sp.label)), 1)
38729
- ], 8, _hoisted_3$m);
39087
+ createElementVNode("span", _hoisted_4$l, toDisplayString(formatDeviceLabel(sp.label)), 1)
39088
+ ], 8, _hoisted_3$n);
38730
39089
  }), 128)),
38731
- !speakers.value.length ? (openBlock(), createElementBlock("div", _hoisted_5$h, " 暂无扬声器,请检查电脑设备 ")) : createCommentVNode("", true)
39090
+ !speakers.value.length ? (openBlock(), createElementBlock("div", _hoisted_5$i, " 暂无扬声器,请检查电脑设备 ")) : createCommentVNode("", true)
38732
39091
  ]),
38733
39092
  _cache[2] || (_cache[2] = createElementVNode("div", { class: "divider" }, null, -1)),
38734
- createElementVNode("div", _hoisted_6$g, [
38735
- createElementVNode("div", _hoisted_7$f, [
39093
+ createElementVNode("div", _hoisted_6$h, [
39094
+ createElementVNode("div", _hoisted_7$g, [
38736
39095
  createVNode(SvgIcon, {
38737
39096
  name: "MicrophoneIcon",
38738
39097
  size: 17
@@ -38748,8 +39107,8 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
38748
39107
  createElementVNode("span", {
38749
39108
  class: normalizeClass(["check", { show: mic.deviceId === microPhoneId.value }])
38750
39109
  }, "✓", 2),
38751
- createElementVNode("span", _hoisted_9$b, toDisplayString(formatDeviceLabel(mic.label)), 1)
38752
- ], 8, _hoisted_8$d);
39110
+ createElementVNode("span", _hoisted_9$d, toDisplayString(formatDeviceLabel(mic.label)), 1)
39111
+ ], 8, _hoisted_8$f);
38753
39112
  }), 128)),
38754
39113
  !microPhones.value.length ? (openBlock(), createElementBlock("div", _hoisted_10$b, " 暂无麦克风,请检查电脑设备 ")) : createCommentVNode("", true)
38755
39114
  ])
@@ -38779,7 +39138,289 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
38779
39138
  };
38780
39139
  }
38781
39140
  });
38782
- const DeviceSelector = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-bb453dd3"]]);
39141
+ const DeviceSelector = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-714814f0"]]);
39142
+ const _hoisted_1$o = ["title"];
39143
+ const _hoisted_2$n = {
39144
+ class: "signal-bars",
39145
+ "aria-hidden": "true"
39146
+ };
39147
+ const _hoisted_3$m = {
39148
+ key: 0,
39149
+ class: "signal-text"
39150
+ };
39151
+ const _hoisted_4$k = { class: "popup-header" };
39152
+ const _hoisted_5$h = { class: "popup-summary" };
39153
+ const _hoisted_6$g = { class: "popup-section" };
39154
+ const _hoisted_7$f = { class: "popup-grid" };
39155
+ const _hoisted_8$e = { class: "popup-item-label" };
39156
+ const _hoisted_9$c = { class: "popup-item-value" };
39157
+ const _sfc_main$q = /* @__PURE__ */ defineComponent({
39158
+ __name: "NetworkQualitySignal",
39159
+ props: {
39160
+ theme: { default: "dark" },
39161
+ size: { default: "default" },
39162
+ showText: { type: Boolean, default: true }
39163
+ },
39164
+ setup(__props) {
39165
+ const props = __props;
39166
+ const triggerRef = ref(null);
39167
+ const showPopup = ref(false);
39168
+ const themeClass = computed(() => `theme-${props.theme}`);
39169
+ const activeBars = computed(() => {
39170
+ if (networkQualityState.isOffline || networkQualityState.isStale) {
39171
+ return 0;
39172
+ }
39173
+ return getNetworkSignalBars(networkQualityState.level);
39174
+ });
39175
+ const overviewItems = computed(() => {
39176
+ const stats = networkQualityState.stats;
39177
+ return [
39178
+ // {
39179
+ // label: "当前质量",
39180
+ // value: networkQualityState.label,
39181
+ // },
39182
+ // {
39183
+ // label: "最近更新",
39184
+ // value: formatNetworkUpdatedAt(networkQualityState.updatedAt),
39185
+ // },
39186
+ {
39187
+ label: "延迟",
39188
+ value: formatNetworkNumber(stats == null ? void 0 : stats.delay, " ms")
39189
+ },
39190
+ {
39191
+ label: "上行码率",
39192
+ value: formatNetworkNumber(stats == null ? void 0 : stats.bitrate_up, " kb/s")
39193
+ },
39194
+ {
39195
+ label: "下行码率",
39196
+ value: formatNetworkNumber(stats == null ? void 0 : stats.bitrate_down, " kb/s")
39197
+ },
39198
+ {
39199
+ label: "上行丢包率",
39200
+ value: formatNetworkLossRate(stats == null ? void 0 : stats.lossrate_up)
39201
+ },
39202
+ {
39203
+ label: "下行丢包率",
39204
+ value: formatNetworkLossRate(stats == null ? void 0 : stats.lossrate_down)
39205
+ },
39206
+ {
39207
+ label: "上行等级",
39208
+ value: formatNetworkNumber(stats == null ? void 0 : stats.up_level)
39209
+ },
39210
+ {
39211
+ label: "上行包数",
39212
+ value: formatNetworkNumber(stats == null ? void 0 : stats.pkt_up)
39213
+ },
39214
+ {
39215
+ label: "下行包数",
39216
+ value: formatNetworkNumber(stats == null ? void 0 : stats.pkt_down)
39217
+ },
39218
+ {
39219
+ label: "上行丢包数",
39220
+ value: formatNetworkNumber(stats == null ? void 0 : stats.pkt_loss_up)
39221
+ },
39222
+ {
39223
+ label: "下行丢包数",
39224
+ value: formatNetworkNumber(stats == null ? void 0 : stats.pkt_loss_down)
39225
+ }
39226
+ ];
39227
+ });
39228
+ computed(() => {
39229
+ return networkQualityState.details.localAudios.map((item, index) => ({
39230
+ title: `音频发送 ${index + 1}`,
39231
+ subtitle: item.desc || item.streamId || "未识别流",
39232
+ items: [
39233
+ { label: "已发包数", value: formatNetworkNumber(item.packetsSent) },
39234
+ { label: "已发字节", value: formatMetricBytes(item.bytesSent) },
39235
+ { label: "远端抖动", value: formatNetworkNumber(item.jitter) },
39236
+ { label: "远端丢包", value: formatNetworkNumber(item.packetsLost) },
39237
+ {
39238
+ label: "往返时延",
39239
+ value: formatNetworkNumber(item.roundTripTime, " ms")
39240
+ },
39241
+ { label: "音频电平", value: formatNetworkNumber(item.audioLevel) },
39242
+ { label: "采样时间", value: formatMetricTimestamp(item.timestamp) }
39243
+ ]
39244
+ }));
39245
+ });
39246
+ computed(() => {
39247
+ return networkQualityState.details.localVideos.map((item, index) => ({
39248
+ title: `视频发送 ${index + 1}`,
39249
+ subtitle: item.desc || item.streamId || item.rid || "未识别流",
39250
+ items: [
39251
+ {
39252
+ label: "分辨率",
39253
+ value: formatMetricDimension(item.frameWidth, item.frameHeight)
39254
+ },
39255
+ {
39256
+ label: "帧率",
39257
+ value: formatNetworkNumber(item.framesPerSecond, " fps")
39258
+ },
39259
+ { label: "已发帧数", value: formatNetworkNumber(item.framesSent) },
39260
+ {
39261
+ label: "目标码率",
39262
+ value: formatNetworkNumber(item.targetBitrate, " bps")
39263
+ },
39264
+ { label: "FIR", value: formatNetworkNumber(item.firCount) },
39265
+ { label: "PLI", value: formatNetworkNumber(item.pliCount) },
39266
+ { label: "NACK", value: formatNetworkNumber(item.nackCount) },
39267
+ {
39268
+ label: "重传包数",
39269
+ value: formatNetworkNumber(item.retransmittedPacketsSent)
39270
+ },
39271
+ {
39272
+ label: "受限原因",
39273
+ value: formatMetricReason(item.qualityLimitationReason)
39274
+ },
39275
+ {
39276
+ label: "分辨率变化",
39277
+ value: formatNetworkNumber(item.qualityLimitationResolutionChanges)
39278
+ },
39279
+ {
39280
+ label: "往返时延",
39281
+ value: formatNetworkNumber(item.roundTripTime, " ms")
39282
+ },
39283
+ { label: "采样时间", value: formatMetricTimestamp(item.timestamp) }
39284
+ ]
39285
+ }));
39286
+ });
39287
+ computed(() => {
39288
+ return networkQualityState.details.remoteAudios.map((item, index) => ({
39289
+ title: `音频接收 ${index + 1}`,
39290
+ subtitle: item.desc || item.streamId || "未识别流",
39291
+ items: [
39292
+ { label: "已收包数", value: formatNetworkNumber(item.packetsReceived) },
39293
+ { label: "已收字节", value: formatMetricBytes(item.bytesReceived) },
39294
+ { label: "丢包数", value: formatNetworkNumber(item.packetsLost) },
39295
+ { label: "抖动", value: formatNetworkNumber(item.jitter) },
39296
+ {
39297
+ label: "抖动缓冲累计值",
39298
+ value: formatMetricRawValue(item.jitterBufferDelay)
39299
+ },
39300
+ { label: "音频电平", value: formatNetworkNumber(item.audioLevel) },
39301
+ {
39302
+ label: "隐藏事件",
39303
+ value: formatNetworkNumber(item.concealmentEvents)
39304
+ },
39305
+ {
39306
+ label: "静音隐藏事件",
39307
+ value: formatNetworkNumber(item.silentConcealmentEvents)
39308
+ },
39309
+ {
39310
+ label: "总音频能量",
39311
+ value: formatNetworkNumber(item.totalAudioEnergy)
39312
+ },
39313
+ {
39314
+ label: "总样本时长",
39315
+ value: formatNetworkNumber(item.totalSamplesDuration)
39316
+ },
39317
+ { label: "采样时间", value: formatMetricTimestamp(item.timestamp) }
39318
+ ]
39319
+ }));
39320
+ });
39321
+ computed(() => {
39322
+ return networkQualityState.details.remoteVideos.map((item, index) => ({
39323
+ title: `视频接收 ${index + 1}`,
39324
+ subtitle: item.uid || item.desc || item.streamId || item.mimeType || "未识别流",
39325
+ items: [
39326
+ { label: "已收包数", value: formatNetworkNumber(item.packetsReceived) },
39327
+ { label: "已收字节", value: formatMetricBytes(item.bytesReceived) },
39328
+ { label: "丢包数", value: formatNetworkNumber(item.packetsLost) },
39329
+ { label: "抖动", value: formatNetworkNumber(item.jitter) },
39330
+ {
39331
+ label: "抖动缓冲累计值",
39332
+ value: formatMetricRawValue(item.jitterBufferDelay)
39333
+ },
39334
+ { label: "接收帧数", value: formatNetworkNumber(item.framesReceived) },
39335
+ { label: "解码帧数", value: formatNetworkNumber(item.framesDecoded) },
39336
+ { label: "丢帧数", value: formatNetworkNumber(item.framesDropped) },
39337
+ {
39338
+ label: "帧率",
39339
+ value: formatNetworkNumber(item.framesPerSecond, " fps")
39340
+ },
39341
+ {
39342
+ label: "分辨率",
39343
+ value: formatMetricDimension(item.frameWidth, item.frameHeight)
39344
+ },
39345
+ { label: "FIR", value: formatNetworkNumber(item.firCount) },
39346
+ { label: "PLI", value: formatNetworkNumber(item.pliCount) },
39347
+ { label: "NACK", value: formatNetworkNumber(item.nackCount) },
39348
+ {
39349
+ label: "解码器",
39350
+ value: formatMetricReason(item.decoderImplementation)
39351
+ },
39352
+ { label: "MIME", value: formatMetricReason(item.mimeType) },
39353
+ { label: "采样时间", value: formatMetricTimestamp(item.timestamp) }
39354
+ ]
39355
+ }));
39356
+ });
39357
+ return (_ctx, _cache) => {
39358
+ return openBlock(), createElementBlock("div", {
39359
+ class: normalizeClass(["network-quality-signal", [`size-${_ctx.size}`]])
39360
+ }, [
39361
+ createElementVNode("button", {
39362
+ ref_key: "triggerRef",
39363
+ ref: triggerRef,
39364
+ type: "button",
39365
+ class: normalizeClass(["network-quality-trigger", [
39366
+ `is-${unref(networkQualityState).level}`,
39367
+ {
39368
+ "is-alert": unref(networkQualityState).isOffline || unref(networkQualityState).isStale
39369
+ }
39370
+ ]]),
39371
+ title: unref(networkQualityState).summary,
39372
+ onClick: _cache[0] || (_cache[0] = ($event) => showPopup.value = !showPopup.value)
39373
+ }, [
39374
+ createElementVNode("span", _hoisted_2$n, [
39375
+ (openBlock(), createElementBlock(Fragment, null, renderList(4, (index) => {
39376
+ return createElementVNode("span", {
39377
+ key: index,
39378
+ class: normalizeClass(["signal-bar", { active: index <= activeBars.value }])
39379
+ }, null, 2);
39380
+ }), 64))
39381
+ ]),
39382
+ _ctx.showText ? (openBlock(), createElementBlock("span", _hoisted_3$m, toDisplayString(unref(networkQualityState).label), 1)) : createCommentVNode("", true)
39383
+ ], 10, _hoisted_1$o),
39384
+ createVNode(SmartPopup, {
39385
+ visible: showPopup.value,
39386
+ "onUpdate:visible": _cache[1] || (_cache[1] = ($event) => showPopup.value = $event),
39387
+ trigger: triggerRef.value,
39388
+ gap: 12
39389
+ }, {
39390
+ default: withCtx(() => [
39391
+ createElementVNode("div", {
39392
+ class: normalizeClass(["network-quality-popup", themeClass.value])
39393
+ }, [
39394
+ createElementVNode("div", _hoisted_4$k, [
39395
+ _cache[2] || (_cache[2] = createElementVNode("div", { class: "popup-title" }, "网络详情", -1)),
39396
+ createElementVNode("div", {
39397
+ class: normalizeClass(["popup-status", `is-${unref(networkQualityState).level}`])
39398
+ }, toDisplayString(unref(networkQualityState).label), 3)
39399
+ ]),
39400
+ createElementVNode("div", _hoisted_5$h, toDisplayString(unref(networkQualityState).summary), 1),
39401
+ createElementVNode("div", _hoisted_6$g, [
39402
+ _cache[3] || (_cache[3] = createElementVNode("div", { class: "popup-section-title" }, "总体网络", -1)),
39403
+ createElementVNode("div", _hoisted_7$f, [
39404
+ (openBlock(true), createElementBlock(Fragment, null, renderList(overviewItems.value, (item) => {
39405
+ return openBlock(), createElementBlock("div", {
39406
+ key: item.label,
39407
+ class: "popup-item"
39408
+ }, [
39409
+ createElementVNode("div", _hoisted_8$e, toDisplayString(item.label), 1),
39410
+ createElementVNode("div", _hoisted_9$c, toDisplayString(item.value), 1)
39411
+ ]);
39412
+ }), 128))
39413
+ ])
39414
+ ])
39415
+ ], 2)
39416
+ ]),
39417
+ _: 1
39418
+ }, 8, ["visible", "trigger"])
39419
+ ], 2);
39420
+ };
39421
+ }
39422
+ });
39423
+ const NetworkQualitySignal = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-5280513c"]]);
38783
39424
  const _hoisted_1$n = {
38784
39425
  key: 0,
38785
39426
  class: "sos-flash-overlay"
@@ -38797,8 +39438,8 @@ const _hoisted_6$f = {
38797
39438
  style: { "width": "35px", "height": "35px", "font-size": "16px" }
38798
39439
  };
38799
39440
  const _hoisted_7$e = { class: "caller-text" };
38800
- const _hoisted_8$c = { class: "caller-name" };
38801
- const _hoisted_9$a = {
39441
+ const _hoisted_8$d = { class: "caller-name" };
39442
+ const _hoisted_9$b = {
38802
39443
  key: 0,
38803
39444
  class: "caller-number"
38804
39445
  };
@@ -38819,14 +39460,13 @@ const _hoisted_19$4 = {
38819
39460
  class: "video-empty"
38820
39461
  };
38821
39462
  const _hoisted_20$4 = { class: "control-bar" };
38822
- const _hoisted_21$2 = { class: "control-bar-inner" };
38823
- const _hoisted_22$2 = {
39463
+ const _hoisted_21$2 = {
38824
39464
  key: 0,
38825
39465
  class: "call-duration"
38826
39466
  };
38827
- const _hoisted_23$2 = { id: "duration" };
38828
- const _hoisted_24$2 = { class: "control-buttons" };
38829
- const _hoisted_25$2 = {
39467
+ const _hoisted_22$2 = { id: "duration" };
39468
+ const _hoisted_23$2 = { class: "control-buttons" };
39469
+ const _hoisted_24$2 = {
38830
39470
  key: 1,
38831
39471
  class: "recording-button"
38832
39472
  };
@@ -39151,11 +39791,15 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
39151
39791
  createElementVNode("div", _hoisted_2$m, [
39152
39792
  createElementVNode("div", _hoisted_3$l, [
39153
39793
  createElementVNode("div", _hoisted_4$j, [
39794
+ createVNode(NetworkQualitySignal, {
39795
+ theme: _ctx.theme,
39796
+ size: "compact"
39797
+ }, null, 8, ["theme"]),
39154
39798
  isReceiving.value && callerInfo.value ? (openBlock(), createElementBlock("div", _hoisted_5$g, [
39155
39799
  createElementVNode("div", _hoisted_6$f, toDisplayString(unref(getUserAvatar)(callerInfo.value)), 1),
39156
39800
  createElementVNode("div", _hoisted_7$e, [
39157
- createElementVNode("div", _hoisted_8$c, toDisplayString(callerInfo.value.memberName || "未知来电"), 1),
39158
- callerInfo.value.shortNumber ? (openBlock(), createElementBlock("div", _hoisted_9$a, " 分机:" + toDisplayString(callerInfo.value.shortNumber), 1)) : createCommentVNode("", true)
39801
+ createElementVNode("div", _hoisted_8$d, toDisplayString(callerInfo.value.memberName || "未知来电"), 1),
39802
+ callerInfo.value.shortNumber ? (openBlock(), createElementBlock("div", _hoisted_9$b, " 分机:" + toDisplayString(callerInfo.value.shortNumber), 1)) : createCommentVNode("", true)
39159
39803
  ])
39160
39804
  ])) : createCommentVNode("", true)
39161
39805
  ]),
@@ -39200,116 +39844,114 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
39200
39844
  ])]))
39201
39845
  ], 2),
39202
39846
  createElementVNode("div", _hoisted_20$4, [
39203
- createElementVNode("div", _hoisted_21$2, [
39204
- isConnected.value ? (openBlock(), createElementBlock("div", _hoisted_22$2, [
39205
- createElementVNode("span", _hoisted_23$2, toDisplayString(joinTimeObj.value), 1)
39206
- ])) : createCommentVNode("", true),
39207
- createElementVNode("div", _hoisted_24$2, [
39208
- isConnected.value || isForcibleInsertion.value ? (openBlock(), createElementBlock("div", {
39209
- key: 0,
39210
- ref_key: "micRef",
39211
- ref: micRef
39212
- }, [
39213
- createElementVNode("button", {
39214
- class: normalizeClass(["control-btn", { "is-disabled": unref(micOperationBusy) }]),
39215
- onClick: _cache[0] || (_cache[0] = ($event) => onChange(unref(RoomModalSelectType).microphoneClick))
39216
- }, [
39217
- createVNode(SvgIcon, {
39218
- name: unref(meState2).microPhoneState == "1" ? "MicrophoneIcon" : "MicrophoneSlashIcon",
39219
- size: 20
39220
- }, null, 8, ["name"]),
39221
- _cache[7] || (_cache[7] = createElementVNode("span", null, "麦克风", -1))
39222
- ], 2),
39223
- createElementVNode("div", {
39224
- class: normalizeClass(["device-dropdown-trigger", { "is-disabled": unref(micOperationBusy) }]),
39225
- onClick: _cache[1] || (_cache[1] = ($event) => toggleDeviceSelector("microphone"))
39226
- }, [
39227
- createVNode(SvgIcon, {
39228
- name: "TriangleIcon",
39229
- size: 9
39230
- })
39231
- ], 2)
39232
- ], 512)) : createCommentVNode("", true),
39233
- isReceiving.value ? (openBlock(), createElementBlock("button", {
39234
- key: 1,
39235
- class: "accept-call-btn",
39236
- onClick: acceptCall
39237
- }, [
39238
- createVNode(SvgIcon, {
39239
- name: "PhoneIcon",
39240
- size: 21
39241
- }),
39242
- _cache[8] || (_cache[8] = createElementVNode("span", null, "接听", -1))
39243
- ])) : createCommentVNode("", true),
39244
- isCalling.value || isReceiving.value || isConnected.value ? (openBlock(), createElementBlock("button", {
39245
- key: 2,
39246
- class: "end-call-btn",
39247
- onClick: endCall
39847
+ isConnected.value ? (openBlock(), createElementBlock("div", _hoisted_21$2, [
39848
+ createElementVNode("span", _hoisted_22$2, toDisplayString(joinTimeObj.value), 1)
39849
+ ])) : createCommentVNode("", true),
39850
+ createElementVNode("div", _hoisted_23$2, [
39851
+ isConnected.value || isForcibleInsertion.value ? (openBlock(), createElementBlock("div", {
39852
+ key: 0,
39853
+ ref_key: "micRef",
39854
+ ref: micRef
39855
+ }, [
39856
+ createElementVNode("button", {
39857
+ class: normalizeClass(["control-btn", { "is-disabled": unref(micOperationBusy) }]),
39858
+ onClick: _cache[0] || (_cache[0] = ($event) => onChange(unref(RoomModalSelectType).microphoneClick))
39248
39859
  }, [
39249
39860
  createVNode(SvgIcon, {
39250
- name: "HandUpIcon",
39251
- size: 21,
39252
- "color-class": "handUp"
39253
- }),
39254
- createElementVNode("span", null, toDisplayString(isReceiving.value ? "拒绝" : "挂断"), 1)
39255
- ])) : createCommentVNode("", true),
39256
- isListening.value ? (openBlock(), createElementBlock("button", {
39257
- key: 3,
39258
- class: "end-call-btn",
39259
- onClick: stopMonitoring
39861
+ name: unref(meState2).microPhoneState == "1" ? "MicrophoneIcon" : "MicrophoneSlashIcon",
39862
+ size: 20
39863
+ }, null, 8, ["name"]),
39864
+ _cache[7] || (_cache[7] = createElementVNode("span", null, "麦克风", -1))
39865
+ ], 2),
39866
+ createElementVNode("div", {
39867
+ class: normalizeClass(["device-dropdown-trigger", { "is-disabled": unref(micOperationBusy) }]),
39868
+ onClick: _cache[1] || (_cache[1] = ($event) => toggleDeviceSelector("microphone"))
39260
39869
  }, [
39261
39870
  createVNode(SvgIcon, {
39262
- name: "HandUpIcon",
39263
- size: 21,
39264
- "color-class": "handUp"
39265
- }),
39266
- _cache[9] || (_cache[9] = createElementVNode("span", null, "结束监听", -1))
39267
- ])) : createCommentVNode("", true),
39268
- isForcibleInsertion.value ? (openBlock(), createElementBlock("button", {
39269
- key: 4,
39270
- class: "end-call-btn",
39271
- onClick: stopMonitoring
39871
+ name: "TriangleIcon",
39872
+ size: 9
39873
+ })
39874
+ ], 2)
39875
+ ], 512)) : createCommentVNode("", true),
39876
+ isReceiving.value ? (openBlock(), createElementBlock("button", {
39877
+ key: 1,
39878
+ class: "accept-call-btn",
39879
+ onClick: acceptCall
39880
+ }, [
39881
+ createVNode(SvgIcon, {
39882
+ name: "PhoneIcon",
39883
+ size: 21
39884
+ }),
39885
+ _cache[8] || (_cache[8] = createElementVNode("span", null, "接听", -1))
39886
+ ])) : createCommentVNode("", true),
39887
+ isCalling.value || isReceiving.value || isConnected.value ? (openBlock(), createElementBlock("button", {
39888
+ key: 2,
39889
+ class: "end-call-btn",
39890
+ onClick: endCall
39891
+ }, [
39892
+ createVNode(SvgIcon, {
39893
+ name: "HandUpIcon",
39894
+ size: 21,
39895
+ "color-class": "handUp"
39896
+ }),
39897
+ createElementVNode("span", null, toDisplayString(isReceiving.value ? "拒绝" : "挂断"), 1)
39898
+ ])) : createCommentVNode("", true),
39899
+ isListening.value ? (openBlock(), createElementBlock("button", {
39900
+ key: 3,
39901
+ class: "end-call-btn",
39902
+ onClick: stopMonitoring
39903
+ }, [
39904
+ createVNode(SvgIcon, {
39905
+ name: "HandUpIcon",
39906
+ size: 21,
39907
+ "color-class": "handUp"
39908
+ }),
39909
+ _cache[9] || (_cache[9] = createElementVNode("span", null, "结束监听", -1))
39910
+ ])) : createCommentVNode("", true),
39911
+ isForcibleInsertion.value ? (openBlock(), createElementBlock("button", {
39912
+ key: 4,
39913
+ class: "end-call-btn",
39914
+ onClick: stopMonitoring
39915
+ }, [
39916
+ createVNode(SvgIcon, {
39917
+ name: "HandUpIcon",
39918
+ size: 20
39919
+ }),
39920
+ _cache[10] || (_cache[10] = createElementVNode("span", null, "退出通话", -1))
39921
+ ])) : createCommentVNode("", true),
39922
+ isConnected.value || isForcibleInsertion.value ? (openBlock(), createElementBlock("div", {
39923
+ key: 5,
39924
+ ref_key: "cameraRef",
39925
+ ref: cameraRef
39926
+ }, [
39927
+ createElementVNode("button", {
39928
+ class: normalizeClass(["control-btn", { "is-disabled": unref(cameraOperationBusy) }]),
39929
+ onClick: _cache[2] || (_cache[2] = ($event) => onChange(unref(RoomModalSelectType).cameraClick))
39272
39930
  }, [
39273
39931
  createVNode(SvgIcon, {
39274
- name: "HandUpIcon",
39932
+ name: unref(meState2).cameraState == "1" ? "CameraIcon" : "CameraSlashIcon",
39275
39933
  size: 20
39276
- }),
39277
- _cache[10] || (_cache[10] = createElementVNode("span", null, "退出通话", -1))
39278
- ])) : createCommentVNode("", true),
39279
- isConnected.value || isForcibleInsertion.value ? (openBlock(), createElementBlock("div", {
39280
- key: 5,
39281
- ref_key: "cameraRef",
39282
- ref: cameraRef
39934
+ }, null, 8, ["name"]),
39935
+ _cache[11] || (_cache[11] = createElementVNode("span", null, "摄像头", -1))
39936
+ ], 2),
39937
+ createElementVNode("div", {
39938
+ class: normalizeClass(["device-dropdown-trigger", { "is-disabled": unref(cameraOperationBusy) }]),
39939
+ onClick: _cache[3] || (_cache[3] = ($event) => toggleDeviceSelector("camera"))
39283
39940
  }, [
39284
- createElementVNode("button", {
39285
- class: normalizeClass(["control-btn", { "is-disabled": unref(cameraOperationBusy) }]),
39286
- onClick: _cache[2] || (_cache[2] = ($event) => onChange(unref(RoomModalSelectType).cameraClick))
39287
- }, [
39288
- createVNode(SvgIcon, {
39289
- name: unref(meState2).cameraState == "1" ? "CameraIcon" : "CameraSlashIcon",
39290
- size: 20
39291
- }, null, 8, ["name"]),
39292
- _cache[11] || (_cache[11] = createElementVNode("span", null, "摄像头", -1))
39293
- ], 2),
39294
- createElementVNode("div", {
39295
- class: normalizeClass(["device-dropdown-trigger", { "is-disabled": unref(cameraOperationBusy) }]),
39296
- onClick: _cache[3] || (_cache[3] = ($event) => toggleDeviceSelector("camera"))
39297
- }, [
39298
- createVNode(SvgIcon, {
39299
- name: "TriangleIcon",
39300
- size: 9
39301
- })
39302
- ], 2)
39303
- ], 512)) : createCommentVNode("", true)
39304
- ]),
39305
- isConnected.value ? (openBlock(), createElementBlock("div", _hoisted_25$2, [
39306
- createVNode(SvgIcon, {
39307
- name: "TranscribeIcon",
39308
- size: 22
39309
- }),
39310
- _cache[12] || (_cache[12] = createElementVNode("span", null, "录制中", -1))
39311
- ])) : createCommentVNode("", true)
39312
- ])
39941
+ createVNode(SvgIcon, {
39942
+ name: "TriangleIcon",
39943
+ size: 9
39944
+ })
39945
+ ], 2)
39946
+ ], 512)) : createCommentVNode("", true)
39947
+ ]),
39948
+ isConnected.value ? (openBlock(), createElementBlock("div", _hoisted_24$2, [
39949
+ createVNode(SvgIcon, {
39950
+ name: "TranscribeIcon",
39951
+ size: 22
39952
+ }),
39953
+ _cache[12] || (_cache[12] = createElementVNode("span", null, "录制中", -1))
39954
+ ])) : createCommentVNode("", true)
39313
39955
  ])
39314
39956
  ]),
39315
39957
  createVNode(SmartPopup, {
@@ -39332,7 +39974,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
39332
39974
  };
39333
39975
  }
39334
39976
  });
39335
- const JSCall = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-f434b44a"]]);
39977
+ const JSCall = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-4da11643"]]);
39336
39978
  const _hoisted_1$m = { class: "js-dialog-header-title" };
39337
39979
  const _hoisted_2$l = { class: "js-dialog-header-actions" };
39338
39980
  const _sfc_main$o = /* @__PURE__ */ defineComponent({
@@ -39430,18 +40072,19 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
39430
40072
  };
39431
40073
  }
39432
40074
  });
39433
- const MeetingHeader = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-b7bfbbf3"]]);
40075
+ const MeetingHeader = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-87753f9c"]]);
39434
40076
  const _hoisted_1$l = { class: "js-dialog-content-inner" };
39435
- const _hoisted_2$k = { class: "js-dialog-content-inner-right" };
39436
- const _hoisted_3$k = { class: "grid-layout" };
39437
- const _hoisted_4$i = ["onClick"];
39438
- const _hoisted_5$f = {
40077
+ const _hoisted_2$k = { class: "js-dialog-content-inner-left" };
40078
+ const _hoisted_3$k = { class: "js-dialog-content-inner-right" };
40079
+ const _hoisted_4$i = { class: "grid-layout" };
40080
+ const _hoisted_5$f = ["onClick"];
40081
+ const _hoisted_6$e = {
39439
40082
  key: 0,
39440
40083
  class: "host-tag"
39441
40084
  };
39442
- const _hoisted_6$e = ["id"];
39443
- const _hoisted_7$d = { class: "avatar-container" };
39444
- const _hoisted_8$b = { class: "video-loading-overlay" };
40085
+ const _hoisted_7$d = ["id"];
40086
+ const _hoisted_8$c = { class: "avatar-container" };
40087
+ const _hoisted_9$a = { class: "video-loading-overlay" };
39445
40088
  const _sfc_main$n = /* @__PURE__ */ defineComponent({
39446
40089
  __name: "meeting-content",
39447
40090
  props: {
@@ -39538,15 +40181,14 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
39538
40181
  return (_ctx, _cache) => {
39539
40182
  return openBlock(), createElementBlock(Fragment, null, [
39540
40183
  createElementVNode("div", _hoisted_1$l, [
39541
- createElementVNode("div", null, [
39542
- _cache[0] || (_cache[0] = createElementVNode("div", null, null, -1)),
40184
+ createElementVNode("div", _hoisted_2$k, [
40185
+ createVNode(NetworkQualitySignal),
39543
40186
  createElementVNode("span", null, "正在讲话:" + toDisplayString(speakingUserName.value), 1)
39544
40187
  ]),
39545
- createElementVNode("div", _hoisted_2$k, [
40188
+ createElementVNode("div", _hoisted_3$k, [
39546
40189
  createElementVNode("span", null, toDisplayString(joinTimeObj.value), 1),
39547
40190
  createVNode(SvgIcon, {
39548
40191
  name: _ctx.isFullscreen ? "NoFullscreenIcon" : "FullscreenIcon",
39549
- size: 18,
39550
40192
  class: "icon-inactive",
39551
40193
  onClick: handleFullscreenClick
39552
40194
  }, null, 8, ["name"])
@@ -39555,7 +40197,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
39555
40197
  createElementVNode("div", {
39556
40198
  class: normalizeClass(["js-dialog-content", layoutClass.value])
39557
40199
  }, [
39558
- createElementVNode("div", _hoisted_3$k, [
40200
+ createElementVNode("div", _hoisted_4$i, [
39559
40201
  !unref(members).length ? (openBlock(), createElementBlock(Fragment, { key: 0 }, renderList(12, (n2) => {
39560
40202
  return createElementVNode("div", {
39561
40203
  key: n2,
@@ -39581,18 +40223,18 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
39581
40223
  small: _ctx.layout === "speaker" && ((_g2 = user == null ? void 0 : user.member) == null ? void 0 : _g2.memberId) !== ((_i2 = (_h = speakerUser.value) == null ? void 0 : _h.member) == null ? void 0 : _i2.memberId)
39582
40224
  }])
39583
40225
  }, [
39584
- user.roleType === "1" ? (openBlock(), createElementBlock("div", _hoisted_5$f, "主持人")) : createCommentVNode("", true),
40226
+ user.roleType === "1" ? (openBlock(), createElementBlock("div", _hoisted_6$e, "主持人")) : createCommentVNode("", true),
39585
40227
  withDirectives((openBlock(), createElementBlock("div", {
39586
40228
  id: unref(userId) === (user == null ? void 0 : user.member.memberId) ? "my-video" : `other-${user == null ? void 0 : user.member.memberId}`,
39587
40229
  key: unref(userId) === (user == null ? void 0 : user.member.memberId) ? "my-video" : `other-${user == null ? void 0 : user.member.memberId}`,
39588
40230
  class: "video-element"
39589
- }, null, 8, _hoisted_6$e)), [
40231
+ }, null, 8, _hoisted_7$d)), [
39590
40232
  [
39591
40233
  vShow,
39592
40234
  ((user == null ? void 0 : user.cameraStatus) ?? "0") == "1" || ((user == null ? void 0 : user.shareScreenStatus) ?? "0") == "1"
39593
40235
  ]
39594
40236
  ]),
39595
- withDirectives(createElementVNode("div", _hoisted_7$d, [
40237
+ withDirectives(createElementVNode("div", _hoisted_8$c, [
39596
40238
  createElementVNode("div", {
39597
40239
  class: normalizeClass(["avatar", {
39598
40240
  large: _ctx.layout === "speaker" && ((_j = user == null ? void 0 : user.member) == null ? void 0 : _j.memberId) === ((_l2 = (_k = speakerUser.value) == null ? void 0 : _k.member) == null ? void 0 : _l2.memberId),
@@ -39605,7 +40247,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
39605
40247
  ((user == null ? void 0 : user.cameraStatus) ?? "0") == "0" && ((user == null ? void 0 : user.shareScreenStatus) ?? "0") == "0"
39606
40248
  ]
39607
40249
  ]),
39608
- withDirectives(createElementVNode("div", _hoisted_8$b, [..._cache[1] || (_cache[1] = [
40250
+ withDirectives(createElementVNode("div", _hoisted_9$a, [..._cache[0] || (_cache[0] = [
39609
40251
  createElementVNode("div", { class: "video-loading-spinner" }, null, -1),
39610
40252
  createElementVNode("div", { class: "video-loading-text" }, "加载中...", -1)
39611
40253
  ])], 512), [
@@ -39644,7 +40286,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
39644
40286
  }])
39645
40287
  }, toDisplayString(getUserName2(user)), 3)
39646
40288
  ], 2)
39647
- ], 10, _hoisted_4$i);
40289
+ ], 10, _hoisted_5$f);
39648
40290
  }), 128))
39649
40291
  ])
39650
40292
  ], 2)
@@ -39652,7 +40294,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
39652
40294
  };
39653
40295
  }
39654
40296
  });
39655
- const MeetingContent = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-b0c37e90"]]);
40297
+ const MeetingContent = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-4a57322e"]]);
39656
40298
  const _hoisted_1$k = { class: "js-dialog-footer" };
39657
40299
  const _hoisted_2$j = { class: "js-dialog-footer-group js-dialog-footer-left" };
39658
40300
  const _hoisted_3$j = { class: "js-dialog-footer-group js-dialog-footer-center" };
@@ -39959,7 +40601,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
39959
40601
  };
39960
40602
  }
39961
40603
  });
39962
- const MeetingFooter = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-013d5bbe"]]);
40604
+ const MeetingFooter = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-8c1cfbaa"]]);
39963
40605
  const _hoisted_1$j = { class: "search" };
39964
40606
  const _hoisted_2$i = { class: "custom-tabs" };
39965
40607
  const _hoisted_3$i = { class: "member-list" };
@@ -39967,7 +40609,7 @@ const _hoisted_4$g = ["onMouseenter"];
39967
40609
  const _hoisted_5$e = { class: "default-avatar" };
39968
40610
  const _hoisted_6$d = { class: "info" };
39969
40611
  const _hoisted_7$c = { class: "name-line" };
39970
- const _hoisted_8$a = { class: "name" };
40612
+ const _hoisted_8$b = { class: "name" };
39971
40613
  const _hoisted_9$9 = { key: 0 };
39972
40614
  const _hoisted_10$9 = { key: 1 };
39973
40615
  const _hoisted_11$7 = { class: "member-actions" };
@@ -40225,7 +40867,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
40225
40867
  createElementVNode("div", _hoisted_5$e, toDisplayString(unref(getUserAvatar)(member)), 1),
40226
40868
  createElementVNode("div", _hoisted_6$d, [
40227
40869
  createElementVNode("div", _hoisted_7$c, [
40228
- createElementVNode("span", _hoisted_8$a, toDisplayString(member.member.name), 1),
40870
+ createElementVNode("span", _hoisted_8$b, toDisplayString(member.member.name), 1),
40229
40871
  createElementVNode("div", null, [
40230
40872
  member.roleType == "1" ? (openBlock(), createElementBlock("span", _hoisted_9$9, "(主持人)")) : member.roleType == "0" ? (openBlock(), createElementBlock("span", _hoisted_10$9, " ")) : createCommentVNode("", true)
40231
40873
  ])
@@ -40307,7 +40949,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
40307
40949
  };
40308
40950
  }
40309
40951
  });
40310
- const ManageMembers = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-b38fa1a8"]]);
40952
+ const ManageMembers = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-feabfd52"]]);
40311
40953
  const _hoisted_1$i = { class: "chat-container" };
40312
40954
  const _hoisted_2$h = { class: "chat-content" };
40313
40955
  const _hoisted_3$h = { class: "chat-meta" };
@@ -40318,7 +40960,7 @@ const _hoisted_6$c = {
40318
40960
  class: "chat-image-wrapper"
40319
40961
  };
40320
40962
  const _hoisted_7$b = ["src", "onClick", "onError", "onLoad"];
40321
- const _hoisted_8$9 = {
40963
+ const _hoisted_8$a = {
40322
40964
  key: 0,
40323
40965
  class: "image-error"
40324
40966
  };
@@ -40804,7 +41446,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
40804
41446
  onError: ($event) => handleImageError($event, msg.imageUrl),
40805
41447
  onLoad: ($event) => handleImageLoad($event, msg.imageUrl)
40806
41448
  }, null, 40, _hoisted_7$b),
40807
- msg.imageError ? (openBlock(), createElementBlock("div", _hoisted_8$9, "图片加载失败")) : createCommentVNode("", true)
41449
+ msg.imageError ? (openBlock(), createElementBlock("div", _hoisted_8$a, "图片加载失败")) : createCommentVNode("", true)
40808
41450
  ])) : createCommentVNode("", true),
40809
41451
  msg.text ? (openBlock(), createElementBlock("div", _hoisted_9$8, toDisplayString(msg.text), 1)) : createCommentVNode("", true)
40810
41452
  ])
@@ -40884,14 +41526,18 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
40884
41526
  };
40885
41527
  }
40886
41528
  });
40887
- const Chat = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-943d45ce"]]);
41529
+ const Chat = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-9e4031ce"]]);
40888
41530
  const _hoisted_1$h = { class: "monitor-container" };
40889
41531
  const _hoisted_2$g = { class: "monitor-grid" };
40890
41532
  const _hoisted_3$g = { class: "camera-header" };
40891
41533
  const _hoisted_4$e = { class: "camera-name" };
40892
41534
  const _hoisted_5$c = { class: "camera-video" };
40893
41535
  const _hoisted_6$b = ["src"];
40894
- const _hoisted_7$a = { class: "camera-actions" };
41536
+ const _hoisted_7$a = {
41537
+ key: 1,
41538
+ class: "no-stream"
41539
+ };
41540
+ const _hoisted_8$9 = { class: "camera-actions" };
40895
41541
  const _sfc_main$j = /* @__PURE__ */ defineComponent({
40896
41542
  __name: "Monitor",
40897
41543
  setup(__props) {
@@ -40916,7 +41562,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
40916
41562
  };
40917
41563
  const isJoining = (item) => joiningIds.value.has(String((item == null ? void 0 : item.id) ?? ""));
40918
41564
  const monitorJoin = (item) => {
40919
- if (isInMeeting(item) || isJoining(item)) return;
41565
+ if (!item.webStream || isInMeeting(item) || isJoining(item)) return;
40920
41566
  const itemId = String((item == null ? void 0 : item.id) ?? "");
40921
41567
  joiningIds.value.add(itemId);
40922
41568
  const meetingInfo = JSON.parse(
@@ -40962,20 +41608,23 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
40962
41608
  ])
40963
41609
  ]),
40964
41610
  createElementVNode("div", _hoisted_5$c, [
40965
- createElementVNode("iframe", {
41611
+ item.webStream ? (openBlock(), createElementBlock("iframe", {
41612
+ key: 0,
40966
41613
  src: item.webStream,
40967
41614
  width: "100%",
40968
41615
  height: "150",
40969
41616
  frameborder: "0",
40970
41617
  allowfullscreen: ""
40971
- }, null, 8, _hoisted_6$b)
41618
+ }, null, 8, _hoisted_6$b)) : (openBlock(), createElementBlock("div", _hoisted_7$a, " 暂无视频流 "))
40972
41619
  ]),
40973
- createElementVNode("div", _hoisted_7$a, [
41620
+ createElementVNode("div", _hoisted_8$9, [
40974
41621
  item.type !== "uav" ? (openBlock(), createBlock(_component_el_button, {
40975
41622
  key: 0,
40976
- disabled: isInMeeting(item) || isJoining(item),
41623
+ disabled: !item.webStream || isInMeeting(item) || isJoining(item),
40977
41624
  type: "primary",
40978
- class: normalizeClass(["monitor-btn", { "btn-disabled": isInMeeting(item) || isJoining(item) }]),
41625
+ class: normalizeClass(["monitor-btn", {
41626
+ "btn-disabled": !item.webStream || isInMeeting(item) || isJoining(item)
41627
+ }]),
40979
41628
  onClick: ($event) => monitorJoin(item)
40980
41629
  }, {
40981
41630
  default: withCtx(() => [
@@ -40992,7 +41641,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
40992
41641
  };
40993
41642
  }
40994
41643
  });
40995
- const Monitor = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-9e767594"]]);
41644
+ const Monitor = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-4f0c711a"]]);
40996
41645
  const _hoisted_1$g = { class: "js-dialog-sidebar-tabs" };
40997
41646
  const _hoisted_2$f = ["onClick"];
40998
41647
  const _hoisted_3$f = { class: "tab-content-wrapper" };
@@ -41062,7 +41711,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
41062
41711
  };
41063
41712
  }
41064
41713
  });
41065
- const MeetingSidebar = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-41d8b0b5"]]);
41714
+ const MeetingSidebar = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-6a05834a"]]);
41066
41715
  const _sfc_main$h = /* @__PURE__ */ defineComponent({
41067
41716
  __name: "ScreenSharingIndicator",
41068
41717
  props: {
@@ -41231,7 +41880,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
41231
41880
  };
41232
41881
  }
41233
41882
  });
41234
- const MinimizedMeeting = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-a0cf90a4"]]);
41883
+ const MinimizedMeeting = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-0005f5eb"]]);
41235
41884
  const _hoisted_1$e = {
41236
41885
  key: 0,
41237
41886
  class: "toggle"
@@ -41458,7 +42107,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
41458
42107
  };
41459
42108
  }
41460
42109
  });
41461
- const TreeNodeItem = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-e112f530"]]);
42110
+ const TreeNodeItem = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-4d4b1b8b"]]);
41462
42111
  const _hoisted_1$d = { class: "tree" };
41463
42112
  const _sfc_main$e = /* @__PURE__ */ defineComponent({
41464
42113
  __name: "Tree",
@@ -41588,7 +42237,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
41588
42237
  });
41589
42238
  const Tree = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-b9399b47"]]);
41590
42239
  const _hoisted_1$c = { class: "js-invite-modal-content-left" };
41591
- const _hoisted_2$c = { class: "js-search-container" };
42240
+ const _hoisted_2$c = { class: "search" };
41592
42241
  const _hoisted_3$c = { class: "js-tree-container" };
41593
42242
  const _hoisted_4$a = {
41594
42243
  key: 0,
@@ -41750,12 +42399,17 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
41750
42399
  withDirectives(createElementVNode("input", {
41751
42400
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => searchKeyword.value = $event),
41752
42401
  type: "text",
41753
- placeholder: "搜索",
41754
- class: "js-search-input",
42402
+ placeholder: "搜索用户",
42403
+ class: "search-input",
41755
42404
  onInput: handleSearch
41756
42405
  }, null, 544), [
41757
42406
  [vModelText, searchKeyword.value]
41758
- ])
42407
+ ]),
42408
+ createVNode(SvgIcon, {
42409
+ name: "SearchIcon",
42410
+ class: "search-icon",
42411
+ size: 15
42412
+ })
41759
42413
  ]),
41760
42414
  createElementVNode("div", _hoisted_3$c, [
41761
42415
  treeData.value.length === 0 ? (openBlock(), createElementBlock("div", _hoisted_4$a, [
@@ -41822,7 +42476,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
41822
42476
  };
41823
42477
  }
41824
42478
  });
41825
- const Invite = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-6dc97838"]]);
42479
+ const Invite = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-0a171efb"]]);
41826
42480
  const _hoisted_1$b = { class: "meeting-invite-modal" };
41827
42481
  const _hoisted_2$b = { class: "meeting-invite-modal-header" };
41828
42482
  const _hoisted_3$b = { class: "meeting-invite-modal-title" };
@@ -41949,7 +42603,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
41949
42603
  };
41950
42604
  }
41951
42605
  });
41952
- const MeetingInviteModal = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-ea858fb4"]]);
42606
+ const MeetingInviteModal = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-5fbee83a"]]);
41953
42607
  const _hoisted_1$a = {
41954
42608
  key: 0,
41955
42609
  class: "js-dialog-overlay"
@@ -42321,7 +42975,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
42321
42975
  };
42322
42976
  }
42323
42977
  });
42324
- const JSMeeting = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-c4b1d707"]]);
42978
+ const JSMeeting = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-ea49c425"]]);
42325
42979
  const _hoisted_1$9 = { class: "modal" };
42326
42980
  const _hoisted_2$9 = { class: "modal-header" };
42327
42981
  const _hoisted_3$9 = { class: "meeting-list" };
@@ -42466,7 +43120,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
42466
43120
  };
42467
43121
  }
42468
43122
  });
42469
- const JSMeetingList = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-bce7adaa"]]);
43123
+ const JSMeetingList = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-25ce05dd"]]);
42470
43124
  const _hoisted_1$8 = { class: "modal" };
42471
43125
  const _hoisted_2$8 = { class: "modal-header" };
42472
43126
  const _hoisted_3$8 = { class: "tab-header" };
@@ -42887,7 +43541,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
42887
43541
  };
42888
43542
  }
42889
43543
  });
42890
- const JSCallList = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-e08f525f"]]);
43544
+ const JSCallList = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-e8aa2442"]]);
42891
43545
  const _hoisted_1$7 = { class: "dialog" };
42892
43546
  const _hoisted_2$7 = { class: "modal-header" };
42893
43547
  const _hoisted_3$7 = { class: "content" };
@@ -43064,7 +43718,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
43064
43718
  };
43065
43719
  }
43066
43720
  });
43067
- const JSSOSSetting = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-cb957fba"]]);
43721
+ const JSSOSSetting = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-241d94f7"]]);
43068
43722
  const _hoisted_1$6 = { class: "dialog" };
43069
43723
  const _hoisted_2$6 = { class: "modal-header" };
43070
43724
  const _hoisted_3$6 = { class: "content" };
@@ -43291,7 +43945,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
43291
43945
  };
43292
43946
  }
43293
43947
  });
43294
- const JSUnattendedSetting = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-9c3eeb27"]]);
43948
+ const JSUnattendedSetting = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-449cc1c7"]]);
43295
43949
  const _hoisted_1$5 = { class: "notification-container" };
43296
43950
  const _hoisted_2$5 = ["onClick"];
43297
43951
  const _hoisted_3$5 = { class: "notification-content" };
@@ -43367,7 +44021,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
43367
44021
  };
43368
44022
  }
43369
44023
  });
43370
- const Notification = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-724cb8da"]]);
44024
+ const Notification = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-50efd5d8"]]);
43371
44025
  const _hoisted_1$4 = { class: "incoming-call-card-content" };
43372
44026
  const _hoisted_2$4 = { class: "caller-info" };
43373
44027
  const _hoisted_3$4 = { class: "caller-avatar" };
@@ -43437,7 +44091,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
43437
44091
  };
43438
44092
  }
43439
44093
  });
43440
- const IncomingCallModal = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-055bf8e4"]]);
44094
+ const IncomingCallModal = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-084565a0"]]);
43441
44095
  const _hoisted_1$3 = {
43442
44096
  key: 0,
43443
44097
  class: "incoming-call-panel"
@@ -43544,7 +44198,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
43544
44198
  };
43545
44199
  }
43546
44200
  });
43547
- const GlobalIncomingCallModal = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-b9a920d0"]]);
44201
+ const GlobalIncomingCallModal = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-b7f23c10"]]);
43548
44202
  const _hoisted_1$2 = {
43549
44203
  key: 0,
43550
44204
  class: "unattended-display"
@@ -44063,194 +44717,192 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
44063
44717
  });
44064
44718
  return (_ctx, _cache) => {
44065
44719
  const _directive_draggable = resolveDirective("draggable");
44066
- return openBlock(), createBlock(Teleport, { to: "body" }, [
44067
- visible.value ? (openBlock(), createElementBlock("div", {
44068
- key: 0,
44069
- class: normalizeClass(["modal", themeClass.value])
44070
- }, [
44071
- withDirectives((openBlock(), createElementBlock("div", _hoisted_1, [
44072
- createElementVNode("div", _hoisted_2, [
44073
- _cache[5] || (_cache[5] = createElementVNode("div", { class: "title" }, "设备检测", -1)),
44074
- createElementVNode("div", {
44075
- class: "close-btn",
44076
- onClick: closeModal
44077
- }, [
44078
- createVNode(SvgIcon, {
44079
- name: "CloseIcon",
44080
- size: 20,
44081
- style: { "color": "var(--js-text-color)" }
44082
- })
44083
- ])
44720
+ return visible.value ? (openBlock(), createElementBlock("div", {
44721
+ key: 0,
44722
+ class: normalizeClass(["modal", themeClass.value])
44723
+ }, [
44724
+ withDirectives((openBlock(), createElementBlock("div", _hoisted_1, [
44725
+ createElementVNode("div", _hoisted_2, [
44726
+ _cache[5] || (_cache[5] = createElementVNode("div", { class: "title" }, "设备检测", -1)),
44727
+ createElementVNode("div", {
44728
+ class: "close-btn",
44729
+ onClick: closeModal
44730
+ }, [
44731
+ createVNode(SvgIcon, {
44732
+ name: "CloseIcon",
44733
+ size: 20,
44734
+ style: { "color": "var(--js-text-color)" }
44735
+ })
44736
+ ])
44737
+ ]),
44738
+ createElementVNode("div", _hoisted_3, [
44739
+ createElementVNode("div", _hoisted_4, [
44740
+ (openBlock(), createElementBlock(Fragment, null, renderList(tabs, (tab) => {
44741
+ return createElementVNode("button", {
44742
+ key: tab.key,
44743
+ class: normalizeClass(["tab-item", { active: activeTab.value === tab.key }]),
44744
+ onClick: ($event) => activeTab.value = tab.key
44745
+ }, [
44746
+ createVNode(SvgIcon, {
44747
+ name: tab.icon,
44748
+ size: 18
44749
+ }, null, 8, ["name"]),
44750
+ createElementVNode("span", null, toDisplayString(tab.label), 1)
44751
+ ], 10, _hoisted_5);
44752
+ }), 64))
44084
44753
  ]),
44085
- createElementVNode("div", _hoisted_3, [
44086
- createElementVNode("div", _hoisted_4, [
44087
- (openBlock(), createElementBlock(Fragment, null, renderList(tabs, (tab) => {
44088
- return createElementVNode("button", {
44089
- key: tab.key,
44090
- class: normalizeClass(["tab-item", { active: activeTab.value === tab.key }]),
44091
- onClick: ($event) => activeTab.value = tab.key
44092
- }, [
44093
- createVNode(SvgIcon, {
44094
- name: tab.icon,
44095
- size: 18
44096
- }, null, 8, ["name"]),
44097
- createElementVNode("span", null, toDisplayString(tab.label), 1)
44098
- ], 10, _hoisted_5);
44099
- }), 64))
44100
- ]),
44101
- createElementVNode("div", _hoisted_6, [
44102
- activeTab.value === "camera" ? (openBlock(), createElementBlock("div", _hoisted_7, [
44103
- createElementVNode("div", _hoisted_8, [
44104
- createElementVNode("video", {
44105
- ref_key: "cameraVideoRef",
44106
- ref: cameraVideoRef,
44107
- class: "camera-preview-large",
44108
- autoplay: "",
44109
- muted: "",
44110
- playsinline: ""
44111
- }, null, 512),
44112
- cameraError.value ? (openBlock(), createElementBlock("div", _hoisted_9, toDisplayString(cameraError.value), 1)) : !cameras.value.length ? (openBlock(), createElementBlock("div", _hoisted_10, " 未检测到摄像头设备 ")) : createCommentVNode("", true)
44113
- ]),
44114
- createElementVNode("div", _hoisted_11, [
44115
- _cache[6] || (_cache[6] = createElementVNode("div", { class: "device-label" }, "摄像头", -1)),
44754
+ createElementVNode("div", _hoisted_6, [
44755
+ activeTab.value === "camera" ? (openBlock(), createElementBlock("div", _hoisted_7, [
44756
+ createElementVNode("div", _hoisted_8, [
44757
+ createElementVNode("video", {
44758
+ ref_key: "cameraVideoRef",
44759
+ ref: cameraVideoRef,
44760
+ class: "camera-preview-large",
44761
+ autoplay: "",
44762
+ muted: "",
44763
+ playsinline: ""
44764
+ }, null, 512),
44765
+ cameraError.value ? (openBlock(), createElementBlock("div", _hoisted_9, toDisplayString(cameraError.value), 1)) : !cameras.value.length ? (openBlock(), createElementBlock("div", _hoisted_10, " 未检测到摄像头设备 ")) : createCommentVNode("", true)
44766
+ ]),
44767
+ createElementVNode("div", _hoisted_11, [
44768
+ _cache[6] || (_cache[6] = createElementVNode("div", { class: "device-label" }, "摄像头", -1)),
44769
+ createVNode(JsSelect, {
44770
+ modelValue: selectedCameraId.value,
44771
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => selectedCameraId.value = $event),
44772
+ options: cameras.value,
44773
+ "label-key": "label",
44774
+ "value-key": "deviceId",
44775
+ class: "device-select"
44776
+ }, null, 8, ["modelValue", "options"])
44777
+ ])
44778
+ ])) : (openBlock(), createElementBlock("div", _hoisted_12, [
44779
+ createElementVNode("div", _hoisted_13, [
44780
+ _cache[9] || (_cache[9] = createElementVNode("div", { class: "audio-section-title" }, "扬声器", -1)),
44781
+ createElementVNode("div", _hoisted_14, [
44116
44782
  createVNode(JsSelect, {
44117
- modelValue: selectedCameraId.value,
44118
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => selectedCameraId.value = $event),
44119
- options: cameras.value,
44783
+ modelValue: selectedSpeakerId.value,
44784
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => selectedSpeakerId.value = $event),
44785
+ options: speakers.value,
44120
44786
  "label-key": "label",
44121
44787
  "value-key": "deviceId",
44122
- class: "device-select"
44123
- }, null, 8, ["modelValue", "options"])
44124
- ])
44125
- ])) : (openBlock(), createElementBlock("div", _hoisted_12, [
44126
- createElementVNode("div", _hoisted_13, [
44127
- _cache[9] || (_cache[9] = createElementVNode("div", { class: "audio-section-title" }, "扬声器", -1)),
44128
- createElementVNode("div", _hoisted_14, [
44129
- createVNode(JsSelect, {
44130
- modelValue: selectedSpeakerId.value,
44131
- "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => selectedSpeakerId.value = $event),
44132
- options: speakers.value,
44133
- "label-key": "label",
44134
- "value-key": "deviceId",
44135
- class: "device-select flex-1"
44136
- }, null, 8, ["modelValue", "options"]),
44137
- createElementVNode("button", {
44138
- class: "action-btn-outline",
44139
- disabled: !speakers.value.length,
44140
- onClick: toggleSpeakerTest
44141
- }, toDisplayString(speakerTesting.value ? "停止检测" : "检测扬声器"), 9, _hoisted_15)
44788
+ class: "device-select flex-1"
44789
+ }, null, 8, ["modelValue", "options"]),
44790
+ createElementVNode("button", {
44791
+ class: "action-btn-outline",
44792
+ disabled: !speakers.value.length,
44793
+ onClick: toggleSpeakerTest
44794
+ }, toDisplayString(speakerTesting.value ? "停止检测" : "检测扬声器"), 9, _hoisted_15)
44795
+ ]),
44796
+ createElementVNode("div", _hoisted_16, [
44797
+ createElementVNode("div", _hoisted_17, [
44798
+ _cache[7] || (_cache[7] = createElementVNode("span", null, "输出等级", -1)),
44799
+ createVNode(SvgIcon, {
44800
+ name: "SpeakerIcon",
44801
+ size: 16,
44802
+ style: { "color": "#2f86ff" }
44803
+ })
44142
44804
  ]),
44143
- createElementVNode("div", _hoisted_16, [
44144
- createElementVNode("div", _hoisted_17, [
44145
- _cache[7] || (_cache[7] = createElementVNode("span", null, "输出等级", -1)),
44146
- createVNode(SvgIcon, {
44147
- name: "SpeakerIcon",
44148
- size: 16,
44149
- style: { "color": "#2f86ff" }
44150
- })
44151
- ]),
44152
- createElementVNode("div", _hoisted_18, [
44153
- (openBlock(), createElementBlock(Fragment, null, renderList(14, (i2) => {
44154
- return createElementVNode("div", {
44155
- key: i2,
44156
- class: normalizeClass(["level-bar", { active: speakerProgress.value > (i2 - 1) * (100 / 14) }])
44157
- }, null, 2);
44158
- }), 64))
44159
- ])
44805
+ createElementVNode("div", _hoisted_18, [
44806
+ (openBlock(), createElementBlock(Fragment, null, renderList(14, (i2) => {
44807
+ return createElementVNode("div", {
44808
+ key: i2,
44809
+ class: normalizeClass(["level-bar", { active: speakerProgress.value > (i2 - 1) * (100 / 14) }])
44810
+ }, null, 2);
44811
+ }), 64))
44812
+ ])
44813
+ ]),
44814
+ createElementVNode("div", _hoisted_19, [
44815
+ createElementVNode("div", _hoisted_20, [
44816
+ _cache[8] || (_cache[8] = createElementVNode("span", null, "音量", -1)),
44817
+ createVNode(SvgIcon, {
44818
+ name: "SpeakerIcon",
44819
+ size: 16,
44820
+ style: { "color": "#2f86ff" }
44821
+ })
44160
44822
  ]),
44161
- createElementVNode("div", _hoisted_19, [
44162
- createElementVNode("div", _hoisted_20, [
44163
- _cache[8] || (_cache[8] = createElementVNode("span", null, "音量", -1)),
44164
- createVNode(SvgIcon, {
44165
- name: "SpeakerIcon",
44166
- size: 16,
44167
- style: { "color": "#2f86ff" }
44168
- })
44169
- ]),
44170
- createElementVNode("div", _hoisted_21, [
44171
- withDirectives(createElementVNode("input", {
44172
- type: "range",
44173
- min: "0",
44174
- max: "100",
44175
- "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => speakerVolume.value = $event),
44176
- class: "volume-slider",
44177
- style: normalizeStyle(`background: linear-gradient(to right, #2f86ff ${speakerVolume.value}%, rgba(255, 255, 255, 0.08) ${speakerVolume.value}%)`)
44178
- }, null, 4), [
44179
- [vModelText, speakerVolume.value]
44180
- ])
44823
+ createElementVNode("div", _hoisted_21, [
44824
+ withDirectives(createElementVNode("input", {
44825
+ type: "range",
44826
+ min: "0",
44827
+ max: "100",
44828
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => speakerVolume.value = $event),
44829
+ class: "volume-slider",
44830
+ style: normalizeStyle(`background: linear-gradient(to right, #2f86ff ${speakerVolume.value}%, rgba(255, 255, 255, 0.08) ${speakerVolume.value}%)`)
44831
+ }, null, 4), [
44832
+ [vModelText, speakerVolume.value]
44181
44833
  ])
44182
44834
  ])
44835
+ ])
44836
+ ]),
44837
+ createElementVNode("div", _hoisted_22, [
44838
+ _cache[12] || (_cache[12] = createElementVNode("div", { class: "audio-section-title" }, "麦克风", -1)),
44839
+ createElementVNode("div", _hoisted_23, [
44840
+ createVNode(JsSelect, {
44841
+ modelValue: selectedMicrophoneId.value,
44842
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => selectedMicrophoneId.value = $event),
44843
+ options: microPhones.value,
44844
+ "label-key": "label",
44845
+ "value-key": "deviceId",
44846
+ class: "device-select flex-1"
44847
+ }, null, 8, ["modelValue", "options"]),
44848
+ createElementVNode("button", {
44849
+ class: "action-btn-outline",
44850
+ disabled: !microPhones.value.length,
44851
+ onClick: toggleMicrophoneTest
44852
+ }, toDisplayString(microphoneTesting.value ? "停止检测" : "检测麦克风"), 9, _hoisted_24)
44183
44853
  ]),
44184
- createElementVNode("div", _hoisted_22, [
44185
- _cache[12] || (_cache[12] = createElementVNode("div", { class: "audio-section-title" }, "麦克风", -1)),
44186
- createElementVNode("div", _hoisted_23, [
44187
- createVNode(JsSelect, {
44188
- modelValue: selectedMicrophoneId.value,
44189
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => selectedMicrophoneId.value = $event),
44190
- options: microPhones.value,
44191
- "label-key": "label",
44192
- "value-key": "deviceId",
44193
- class: "device-select flex-1"
44194
- }, null, 8, ["modelValue", "options"]),
44195
- createElementVNode("button", {
44196
- class: "action-btn-outline",
44197
- disabled: !microPhones.value.length,
44198
- onClick: toggleMicrophoneTest
44199
- }, toDisplayString(microphoneTesting.value ? "停止检测" : "检测麦克风"), 9, _hoisted_24)
44854
+ createElementVNode("div", _hoisted_25, [
44855
+ createElementVNode("div", _hoisted_26, [
44856
+ _cache[10] || (_cache[10] = createElementVNode("span", null, "输入等级", -1)),
44857
+ createVNode(SvgIcon, {
44858
+ name: "MicrophoneIcon",
44859
+ size: 16,
44860
+ style: { "color": "#2f86ff" }
44861
+ })
44200
44862
  ]),
44201
- createElementVNode("div", _hoisted_25, [
44202
- createElementVNode("div", _hoisted_26, [
44203
- _cache[10] || (_cache[10] = createElementVNode("span", null, "输入等级", -1)),
44204
- createVNode(SvgIcon, {
44205
- name: "MicrophoneIcon",
44206
- size: 16,
44207
- style: { "color": "#2f86ff" }
44208
- })
44209
- ]),
44210
- createElementVNode("div", _hoisted_27, [
44211
- (openBlock(), createElementBlock(Fragment, null, renderList(14, (i2) => {
44212
- return createElementVNode("div", {
44213
- key: i2,
44214
- class: normalizeClass(["level-bar", { active: microphoneLevel.value > (i2 - 1) * (100 / 14) }])
44215
- }, null, 2);
44216
- }), 64))
44217
- ])
44863
+ createElementVNode("div", _hoisted_27, [
44864
+ (openBlock(), createElementBlock(Fragment, null, renderList(14, (i2) => {
44865
+ return createElementVNode("div", {
44866
+ key: i2,
44867
+ class: normalizeClass(["level-bar", { active: microphoneLevel.value > (i2 - 1) * (100 / 14) }])
44868
+ }, null, 2);
44869
+ }), 64))
44870
+ ])
44871
+ ]),
44872
+ createElementVNode("div", _hoisted_28, [
44873
+ createElementVNode("div", _hoisted_29, [
44874
+ _cache[11] || (_cache[11] = createElementVNode("span", null, "音量", -1)),
44875
+ createVNode(SvgIcon, {
44876
+ name: "SpeakerIcon",
44877
+ size: 16,
44878
+ style: { "color": "#2f86ff" }
44879
+ })
44218
44880
  ]),
44219
- createElementVNode("div", _hoisted_28, [
44220
- createElementVNode("div", _hoisted_29, [
44221
- _cache[11] || (_cache[11] = createElementVNode("span", null, "音量", -1)),
44222
- createVNode(SvgIcon, {
44223
- name: "SpeakerIcon",
44224
- size: 16,
44225
- style: { "color": "#2f86ff" }
44226
- })
44227
- ]),
44228
- createElementVNode("div", _hoisted_30, [
44229
- withDirectives(createElementVNode("input", {
44230
- type: "range",
44231
- min: "0",
44232
- max: "100",
44233
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => microphoneVolume.value = $event),
44234
- class: "volume-slider",
44235
- style: normalizeStyle(`background: linear-gradient(to right, #2f86ff ${microphoneVolume.value}%, rgba(255, 255, 255, 0.08) ${microphoneVolume.value}%)`)
44236
- }, null, 4), [
44237
- [vModelText, microphoneVolume.value]
44238
- ])
44881
+ createElementVNode("div", _hoisted_30, [
44882
+ withDirectives(createElementVNode("input", {
44883
+ type: "range",
44884
+ min: "0",
44885
+ max: "100",
44886
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => microphoneVolume.value = $event),
44887
+ class: "volume-slider",
44888
+ style: normalizeStyle(`background: linear-gradient(to right, #2f86ff ${microphoneVolume.value}%, rgba(255, 255, 255, 0.08) ${microphoneVolume.value}%)`)
44889
+ }, null, 4), [
44890
+ [vModelText, microphoneVolume.value]
44239
44891
  ])
44240
44892
  ])
44241
44893
  ])
44242
- ]))
44243
- ])
44894
+ ])
44895
+ ]))
44244
44896
  ])
44245
- ])), [
44246
- [_directive_draggable, { handle: ".header" }]
44247
44897
  ])
44248
- ], 2)) : createCommentVNode("", true)
44249
- ]);
44898
+ ])), [
44899
+ [_directive_draggable, { handle: ".header" }]
44900
+ ])
44901
+ ], 2)) : createCommentVNode("", true);
44250
44902
  };
44251
44903
  }
44252
44904
  });
44253
- const JSSettings = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-44d3edad"]]);
44905
+ const JSSettings = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-e538b058"]]);
44254
44906
  function scheduleJoinRoom() {
44255
44907
  setTimeout(() => {
44256
44908
  try {