diff --git a/public/css/largeScreenStyle.css b/public/css/largeScreenStyle.css index 8c47a7f..3f3edd6 100644 --- a/public/css/largeScreenStyle.css +++ b/public/css/largeScreenStyle.css @@ -4770,6 +4770,13 @@ table{ .toSafety-fixed-left-max{ position: absolute; } +.toSafety-fixed-bottom-max{ + position: absolute; + width: calc(100% - 1000px); + left: 500px; + bottom: 10px; + text-align: center; +} .toSafety-fixed-left{ padding: 10px 0 10px 15px; width: 473px; @@ -4786,10 +4793,16 @@ table{ align-items: center; right: 0; } +.toSafety-fixed-bottom-img{ + position: absolute; + margin-left:-50px; + top:-20px; +} .toSafety-fixed-right{ padding: 10px 15px 10px 0; width: 473px; } + .toSafety-fixed-right-img{ position: absolute; right: 490px; diff --git a/public/index.html b/public/index.html index 9a67e84..72bfe50 100644 --- a/public/index.html +++ b/public/index.html @@ -82,6 +82,10 @@ document.getElementById("divTest").style.display="block"; } },400); + + setTimeout(()=>{ + document.getElementById("divTest").remove(); + },60*1000); diff --git a/src/api/index.js b/src/api/index.js index 61c1ebe..cc2ac5b 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -25,7 +25,11 @@ import gzDict from './gzaiBox/dict' import plan from './plan/index' import periodical from './periodical/index' import engin from './engin' +<<<<<<< .mine import tower from './device/tower/index' +======= +import quality from './quality' +>>>>>>> .theirs import {axios,download} from '@/utils/request' export default { project, @@ -56,6 +60,11 @@ export default { downFile:download, engin, gzAiBoxVideo, +<<<<<<< .mine gzDict, tower +======= + gzDict, + quality +>>>>>>> .theirs } \ No newline at end of file diff --git a/src/api/quality/index.js b/src/api/quality/index.js new file mode 100644 index 0000000..e6bef60 --- /dev/null +++ b/src/api/quality/index.js @@ -0,0 +1,20 @@ +import request from '@/utils/request' + +const projectFunVerifyGroupByCheckType=(deptId,projectId)=>{ + return request({ + url: `/project/projectFunVerify/groupByCheckType?deptId=${deptId||0}&projectId=${projectId||0}`, + method: 'get' + }) +} + +const listFunVerify=data=>{ + return request({ + url: `/project/projectFunVerify/list`, + method: 'get', + params:data + }) +} +export default{ + projectFunVerifyGroupByCheckType, + listFunVerify +} \ No newline at end of file diff --git a/src/components/header.vue b/src/components/header.vue index af80073..32c37af 100644 --- a/src/components/header.vue +++ b/src/components/header.vue @@ -561,6 +561,14 @@ export default { \ No newline at end of file diff --git a/src/pages/quality/funVerifyGroupDlg.vue b/src/pages/quality/funVerifyGroupDlg.vue new file mode 100644 index 0000000..41bf63a --- /dev/null +++ b/src/pages/quality/funVerifyGroupDlg.vue @@ -0,0 +1,320 @@ + + + + + \ No newline at end of file diff --git a/src/pages/quality/projectChecking.vue b/src/pages/quality/projectChecking.vue index ccf2dce..5454e6d 100644 --- a/src/pages/quality/projectChecking.vue +++ b/src/pages/quality/projectChecking.vue @@ -1,6 +1,8 @@