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/pages/projectEngin.vue b/src/pages/projectEngin.vue index 9582412..7a5083e 100644 --- a/src/pages/projectEngin.vue +++ b/src/pages/projectEngin.vue @@ -321,7 +321,6 @@ export default { }, methods: { dtChange() { - debugger this.commChange(); this.getCommList({ value: this.selType }) }, diff --git a/src/pages/projectQuality.vue b/src/pages/projectQuality.vue index aaa4f34..0a6fcca 100644 --- a/src/pages/projectQuality.vue +++ b/src/pages/projectQuality.vue @@ -181,7 +181,7 @@ - + diff --git a/src/pages/quality/funVerifyGroupByCheckType.vue b/src/pages/quality/funVerifyGroupByCheckType.vue new file mode 100644 index 0000000..366ce7e --- /dev/null +++ b/src/pages/quality/funVerifyGroupByCheckType.vue @@ -0,0 +1,169 @@ + + + + \ 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..a6813c2 --- /dev/null +++ b/src/pages/quality/funVerifyGroupDlg.vue @@ -0,0 +1,307 @@ + + + + + \ No newline at end of file