diff --git a/client/src/api/certapp.js b/client/src/api/certapp.js index e942f60..06bca08 100644 --- a/client/src/api/certapp.js +++ b/client/src/api/certapp.js @@ -54,3 +54,11 @@ export function getCertapp(id) { method: 'get', }) } + +export function accessCertapp(id, data) { + return request({ + url: `/project/certapp/${id}/access/`, + method: 'put', + data + }) +} \ No newline at end of file diff --git a/client/src/api/certappunit.js b/client/src/api/certappunit.js new file mode 100644 index 0000000..27d943d --- /dev/null +++ b/client/src/api/certappunit.js @@ -0,0 +1,32 @@ +import request from '@/utils/request' + +export function getCertappunitList(query) { + return request({ + url: '/project/certappunit/', + method: 'get', + params: query + }) +} + +// export function createAccess(data) { +// return request({ +// url: '/accessment/certass/', +// method: 'post', +// data +// }) +// } + +// export function updateAccess(id, data) { +// return request({ +// url: `/accessment/certass/${id}/`, +// method: 'put', +// data +// }) +// } + +// export function deleteAccess(id) { +// return request({ +// url: `/accessment/certass/${id}/`, +// method: 'delete' +// }) +// } \ No newline at end of file diff --git a/client/src/styles/index.scss b/client/src/styles/index.scss index 797311f..b47aaea 100644 --- a/client/src/styles/index.scss +++ b/client/src/styles/index.scss @@ -98,6 +98,6 @@ div:focus { .el-button+.el-button { margin-left: 1px; } -.el-button { - border-radius: 0px; -} \ No newline at end of file +// .el-button { +// border-radius: 0px; +// } \ No newline at end of file diff --git a/client/src/views/accessment/access.vue b/client/src/views/accessment/access.vue index 65a662c..e243248 100644 --- a/client/src/views/accessment/access.vue +++ b/client/src/views/accessment/access.vue @@ -4,63 +4,196 @@
评定结论
- - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + +
+ 保存 +
+
+ + +
+ 业务涉及的认证单元 +
+ + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/client/src/views/accessment/index.vue b/client/src/views/accessment/index.vue index c220e67..3798699 100644 --- a/client/src/views/accessment/index.vue +++ b/client/src/views/accessment/index.vue @@ -1,6 +1,7 @@