diff --git a/client/src/api/certificate.js b/client/src/api/certificate.js new file mode 100644 index 0000000..4f77876 --- /dev/null +++ b/client/src/api/certificate.js @@ -0,0 +1,19 @@ +import request from '@/utils/request' + +export function getCertificateList(query) { + return request({ + url: '/certificate/certificate/', + method: 'get', + params: query + }) +} + +export function createCertificate(data) { + return request({ + url: '/certificate/certificate/', + method: 'post', + data + }) +} + + diff --git a/client/src/views/accessment/index.vue b/client/src/views/accessment/index.vue index 3798699..59e6444 100644 --- a/client/src/views/accessment/index.vue +++ b/client/src/views/accessment/index.vue @@ -64,7 +64,7 @@ diff --git a/client/src/views/audit/fee.vue b/client/src/views/audit/fee.vue index 16d3e25..a2ac442 100644 --- a/client/src/views/audit/fee.vue +++ b/client/src/views/audit/fee.vue @@ -35,7 +35,7 @@ - + @@ -105,7 +105,7 @@ - + - + - + --> - + - + @@ -139,7 +139,7 @@ export default { tableData: [], listLoading: true, listQuery: { - status: "已受理", + state: "已受理", }, deptOptions: [], field_list: [], @@ -166,7 +166,7 @@ export default { }, resetFilter() { this.listQuery = { - status: "已受理", + state: "已受理", }; this.getList(); }, diff --git a/client/src/views/project/project.vue b/client/src/views/project/project.vue index 761c364..292441d 100644 --- a/client/src/views/project/project.vue +++ b/client/src/views/project/project.vue @@ -30,7 +30,7 @@ - + @@ -44,7 +44,7 @@