diff --git a/src/api/modules/agjtCommandApi.ts b/src/api/modules/agjtCommandApi.ts index 3d278f0..0396e10 100644 --- a/src/api/modules/agjtCommandApi.ts +++ b/src/api/modules/agjtCommandApi.ts @@ -65,6 +65,11 @@ export const getQualityStatisticsNumDataApi = (params: {}) => { export const getProjectEnterpriseApi = (params: {}) => { return http.post(BASEURL + `/xmgl/projectEnterprise/list`, params, { headers: { noLoading: true } }); }; +// 获取检查人 +export const getSystemUserBySnApi = (params: {}) => { + return http.post(BASEURL + `/xmgl/systemUser/getSystemUserBySn`, params, { headers: { noLoading: true } }); +}; + // 获取整改人 export const getSystemUserApi = (params: {}) => { return http.post(BASEURL + `/xmgl/systemUser/getProjectChilderSystemUserList`, params, { headers: { noLoading: true } }); diff --git a/src/views/commandScreen/commandCenter/centerBottom.vue b/src/views/commandScreen/commandCenter/centerBottom.vue index 4ca03c6..7aff41c 100644 --- a/src/views/commandScreen/commandCenter/centerBottom.vue +++ b/src/views/commandScreen/commandCenter/centerBottom.vue @@ -217,6 +217,7 @@ onMounted(async () => { .cbContent { width: 100%; height: calc(100% - 40px); + overflow: hidden; // background: #fff; .item { @@ -304,6 +305,7 @@ onMounted(async () => { overflow: hidden; text-overflow: ellipsis; width: 100%; + line-height: 30px; } } @@ -314,7 +316,7 @@ onMounted(async () => { .timeInfo { display: flex; - justify-content: flex-end; + justify-content: flex-start; margin-right: 10px; } } diff --git a/src/views/commandScreen/commandCenter/centerTop.vue b/src/views/commandScreen/commandCenter/centerTop.vue index 59f54c6..429c0d8 100644 --- a/src/views/commandScreen/commandCenter/centerTop.vue +++ b/src/views/commandScreen/commandCenter/centerTop.vue @@ -3,13 +3,13 @@