wangqiong 2 anni fa
parent
commit
96fa2020e5
4 ha cambiato i file con 4 aggiunte e 4 eliminazioni
  1. 1
    1
      src/api/home.js
  2. 1
    1
      src/api/room.js
  3. 1
    1
      src/components/homepc.vue
  4. 1
    1
      src/views/components/roomFooter.vue

+ 1
- 1
src/api/home.js Vedi File

@@ -1,6 +1,6 @@
1 1
 import axios from "@/utils/request";
2 2
 let baseUrlZc = 'https://api.xayunmei.com/zhongcaiapi';
3
-let baseUrl = 'https://api.xayunmei.com/tiaojieapitest';
3
+let baseUrl = 'https://api.xayunmei.com/tiaojieapi';
4 4
 // let baseUrl = 'http://121.40.189.20:6001';
5 5
 // 获取usersig
6 6
 export function getUsersig(userId) {

+ 1
- 1
src/api/room.js Vedi File

@@ -1,6 +1,6 @@
1 1
 import axios from "@/utils/request";
2 2
 let baseUrlZC = 'https://api.xayunmei.com/zhongcaiapi';
3
-let baseUrl = 'https://api.xayunmei.com/tiaojieapitest';
3
+let baseUrl = 'https://api.xayunmei.com/tiaojieapi';
4 4
 // let baseUrl = 'http://121.40.189.20:6001';
5 5
 // 开始云端录制
6 6
 export function startVideo(data) {

+ 1
- 1
src/components/homepc.vue Vedi File

@@ -61,7 +61,7 @@ export default {
61 61
     // 根据案件id查询主持人信息
62 62
     async reserveConferenceListFn(data) {
63 63
       await reserveConferenceList(data).then(res => {
64
-        if (res.data.length > 1) {
64
+        if (res.data.length >= 1) {
65 65
           if (this.userCode == res.data[0].userId) {
66 66
             this.roleFlag = true;
67 67
           } else {

+ 1
- 1
src/views/components/roomFooter.vue Vedi File

@@ -21,7 +21,7 @@ export default {
21 21
         return {
22 22
             roomId: null,
23 23
             taskId: null,
24
-            roleFlag: false,
24
+            roleFlag: true,
25 25
             caseId:""
26 26
         };
27 27
     },