diff --git a/src/api/modules/agjtLiveApi.ts b/src/api/modules/agjtLiveApi.ts index 42c77c8..43d015b 100644 --- a/src/api/modules/agjtLiveApi.ts +++ b/src/api/modules/agjtLiveApi.ts @@ -21,6 +21,10 @@ export const countTaskProgressApi = (params: {}, noLoading: boolean) => { export const countProjectEnterpriseApi = (params: {}, noLoading: boolean) => { return http.post(BASEURL + `/xmgl/projectEnterprise/list`, params, { headers: { noLoading: noLoading } }); }; +//获取承包商进度列表API +export const countProcessApi = (params: {}, noLoading: boolean) => { + return http.get(BASEURL + `/xmgl/xzTaskProgress/list?projectSn=`+params.projectSn+`&orderBy=`+params.orderBy, ); +}; //获取企业信息API export const getEnterpriseInfoByIdApi = (params: {}, noLoading: boolean) => { diff --git a/src/views/agjtLiveScreen/liveScreen/centerBottomLeft.vue b/src/views/agjtLiveScreen/liveScreen/centerBottomLeft.vue index d5addf1..da28c1b 100644 --- a/src/views/agjtLiveScreen/liveScreen/centerBottomLeft.vue +++ b/src/views/agjtLiveScreen/liveScreen/centerBottomLeft.vue @@ -100,14 +100,12 @@ async function getLwInfo() { // if(res1.success){ // if(res1.result){ // lwInfo1.value = res1.result - // // console.log(lwInfo1.value) // } // } // }) selectWorkerTeamAndDepartmentStatisticsApi({ projectSn: store.sn, },true).then(res2 => { - console.log(res2) if(res2.success){ if(res2.result){ lwInfo2.value = res2.result diff --git a/src/views/agjtLiveScreen/liveScreen/centerTop.vue b/src/views/agjtLiveScreen/liveScreen/centerTop.vue index 32ce260..2027a68 100644 --- a/src/views/agjtLiveScreen/liveScreen/centerTop.vue +++ b/src/views/agjtLiveScreen/liveScreen/centerTop.vue @@ -126,7 +126,7 @@ function playVideo(){ //测试方法,对接口时改成相应的方法注释 const centerTopMethod = async () => { - console.log("centerTopMethod") + } //将方法暴露给父组件 defineExpose({ diff --git a/src/views/agjtLiveScreen/liveScreen/leftBottom.vue b/src/views/agjtLiveScreen/liveScreen/leftBottom.vue index 829fcd0..fbe5c9d 100644 --- a/src/views/agjtLiveScreen/liveScreen/leftBottom.vue +++ b/src/views/agjtLiveScreen/liveScreen/leftBottom.vue @@ -192,7 +192,6 @@ function drawPie() { //测试方法,对接口时改成相应的方法注释 const leftBottomMethod = async () => { - // console.log("leftBottomMethod"); getSpecialInfo() }; //将方法暴露给父组件 diff --git a/src/views/agjtLiveScreen/liveScreen/leftTop.vue b/src/views/agjtLiveScreen/liveScreen/leftTop.vue index 74aaabb..c8ba41b 100644 --- a/src/views/agjtLiveScreen/liveScreen/leftTop.vue +++ b/src/views/agjtLiveScreen/liveScreen/leftTop.vue @@ -1,10 +1,11 @@