diff --git a/src/App.vue b/src/App.vue index 6919c05..b752e81 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,10 +5,86 @@ diff --git a/src/pages/layout/index.vue b/src/pages/layout/index.vue index cd904ef..f3a8127 100644 --- a/src/pages/layout/index.vue +++ b/src/pages/layout/index.vue @@ -4,8 +4,8 @@
- - + +
@@ -22,14 +22,14 @@ export default { contentHeight(){ let oh = document.documentElement.clientHeight; return oh-85 - + } , currentPath() { return this.$route.path; // 获取当前路由的路径 }, currentName() { return this.$route.name; // 获取当前路由的名称 - } + } }, } diff --git a/src/services/fetchApi.js b/src/services/fetchApi.js index 2b34f71..fb2460a 100644 --- a/src/services/fetchApi.js +++ b/src/services/fetchApi.js @@ -47,5 +47,9 @@ const fetchApi = { viewFullFile: data => { return service.service.post(`${apiAdmin}upload/full`, data,{hideLoading:true}) }, + // ========================start:: 语音通话SDK====================================== + webCalling: data => { + return service.service.get(`${apiAdmin}/api/trace/calling/init-web`, data) + }, } export default fetchApi;