xiangpei
2024-10-24 3a39a3db50da4cc43f735d3a7903323467e08c8f
测试环境
4个文件已修改
10 ■■■■ 已修改文件
index.html 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/exam/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/folder/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/meet/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
index.html
@@ -6,7 +6,7 @@
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>语音视频培训系统</title>
    <!-- 生产版本换源 -->
    <script src='https://www.kgmeet.com:18443/external_api.js'></script>
    <script src='https://ycl.easyblog.vip:82/external_api.js'></script>
  </head>
  <body>
    <div id="app"></div>
src/views/exam/index.vue
@@ -200,7 +200,7 @@
const timeDialog = ref(false);
const { status, message, error, connect, disconnect, sendMessage } = useWebScoket({
  url: 'wss://www.kgmeet.com:18443/websocket/' + userInfo.value.id,
  url: 'wss://ycl.easyblog.vip:82/websocket/' + userInfo.value.id,
  heartBeatData: 'ping'
});
src/views/folder/index.vue
@@ -201,7 +201,7 @@
const { userInfo } = storeToRefs(userStore);
const { status, message, error, connect, disconnect, sendMessage } =
  useWebScoket({
    url: "wss://www.kgmeet.com:18443/websocket/" + userInfo.value.id,
    url: "wss://ycl.easyblog.vip:82/websocket/" + userInfo.value.id,
    heartBeatData: "ping",
  });
src/views/meet/index.vue
@@ -21,7 +21,7 @@
onMounted(() => {
  const width = window.innerWidth;
  const height = window.innerHeight;
  const domain = 'www.kgmeet.com:18443/' + id;
  const domain = 'ycl.easyblog.vip:82/' + id;
  const options = {
    roomName: meetName,
    width: width,
@@ -140,7 +140,7 @@
}
const {status, message, error, connect, disconnect, sendMessage} = useWebScoket({
  url: 'wss://www.kgmeet.com:18443/websocket/' + userInfo._rawValue.id,
  url: 'wss://ycl.easyblog.vip:82/websocket/' + userInfo._rawValue.id,
  heartBeatData: 'ping'
});